        /* Pop-up overlay styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin: 0 auto; /* centers horizontally */
            max-width: 100%; /* keeps it responsive */
            height: auto;    
        }
        
        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Pop-up container styles */
        .popup-container {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            border: 2px solid #4a90e2;
            border-radius: 10px;
            padding: 25px;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transform: scale(0.7);
            transition: all 0.3s ease;
        }
        
        .popup-overlay.active .popup-container {
            transform: scale(1);
        }
        
        /* Close button styles */
        .popup-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            color: #fff;
            cursor: pointer;
            z-index: 1001;
        }
        
        .popup-close:hover {
            color: #ff6b35;
        }
        
        /* Content styles */
        .popup-header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .hostinger-logo {
            margin-bottom: 15px;
        }
        
        .hostinger-logo img {
            max-height: 50px;
        }
        
        .popup-title {
            color: #4a90e2;
            font-size: 28px;
            margin-bottom: 10px;
            font-family: Arial, sans-serif;
        }
        
        .popup-subtitle {
            color: #ffffff;
            font-size: 16px;
        }
        
        /* Countdown Timer Styles */
        .countdown-container {
            background: rgba(255, 107, 53, 0.15);
            border-radius: 8px;
            padding: 15px;
            margin: 0 auto 25px;
            max-width: 500px;
            border: 1px solid rgba(255, 107, 53, 0.3);
        }
        
        .countdown-title {
            color: #ffffff;
            font-size: 18px;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .countdown-block {
            text-align: center;
            min-width: 70px;
        }
        
        .countdown-value {
            background: #ff6b35;
            color: white;
            font-size: 24px;
            font-weight: bold;
            padding: 10px 5px;
            border-radius: 5px;
            margin-bottom: 5px;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .countdown-label {
            color: #cccccc;
            font-size: 14px;
        }
        
        .hosting-plans {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .hosting-plan {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 20px;
            width: 220px;
            border: 1px solid rgba(74, 144, 226, 0.3);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .hosting-plan:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border-color: #4a90e2;
        }
        
        .plan-name {
            color: #ffffff;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .plan-price {
            color: #4a90e2;
            font-size: 24px;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .plan-price small {
            font-size: 14px;
            color: #cccccc;
        }
        
        .plan-features {
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .plan-feature {
            color: #cccccc;
            font-size: 14px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .plan-feature:before {
            content: "✓";
            color: #4a90e2;
            margin-right: 8px;
            font-weight: bold;
        }
        
        .plan-original-price {
            text-decoration: line-through;
            color: #999999;
            font-size: 14px;
            text-align: center;
            margin-bottom: 5px;
        }
        
        .plan-discounted-price {
            color: #ffffff;
            font-size: 16px;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .plan-commission {
            background: rgba(255, 107, 53, 0.2);
            border: 1px solid #ff6b35;
            border-radius: 5px;
            padding: 10px;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .commission-label {
            color: #cccccc;
            font-size: 12px;
        }
        
        .commission-value {
            color: #ff6b35;
            font-size: 18px;
            font-weight: bold;
        }
        
        .plan-cta {
            background: #4a90e2;
            color: white;
            padding: 10px 15px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            display: block;
            text-align: center;
            transition: background 0.3s ease;
        }
        
        .plan-cta:hover {
            background: #3a7bc8;
        }
        
        .popup-footer {
            text-align: center;
            color: #888;
            font-size: 12px;
            margin-top: 20px;
        }
        
        .most-popular {
            position: relative;
        }
        
        .most-popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff6b35;
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: bold;
        }
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .hosting-plan {
                width: 100%;
                max-width: 300px;
            }
            
            .popup-title {
                font-size: 24px;
            }
            
            .countdown-block {
                min-width: 60px;
            }
            
            .countdown-value {
                font-size: 20px;
                min-height: 45px;
            }
        }
