        :root {
            --bg-black: #000000;
            --bg-dark: #111111;
            --bg-light-black: #1a1a1a;
            --accent-green: #a4e045;
            --text-white: #ffffff;
            --text-gray: #cccccc;
            --btn-green: #008a00;
            --icon-bg: #222222;
            --timer-red: #ff3333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background-color: var(--bg-black);
            color: var(--text-white);
            line-height: 1.4;
            padding-top: 70px; /* Space for fixed header */
            font-size: 18px; /* Increased base font size */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header - Fixed at top */
        header {
            background-color: var(--bg-light-black);
            padding: 12px 0;
            border-bottom: 2px solid var(--accent-green);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .header-text {
            font-size: 18px; /* Increased from 16px */
            color: var(--text-gray);
            line-height: 1.3;
        }

        .header-text .date {
            font-weight: 700;
            color: var(--text-white);
            display: block;
            font-size: 19px; /* Increased from 17px */
            margin-top: 3px;
        }

        .countdown-timer {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .timer-box {
            background-color: #fff;
            color: var(--timer-red);
            font-weight: 800;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 22px; /* Increased from 20px */
            min-width: 55px; /* Slightly increased */
            text-align: center;
        }

        .register-btn-top {
            background-color: var(--btn-green);
            color: var(--text-white);
            padding: 10px 24px;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 18px; /* Increased from 16px */
                font-family: 'Manrope', sans-serif; /* ADD THIS LINE */

            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 0 #006600;
        }

        .register-btn-top:hover {
            background-color: #00a000;
            transform: translateY(-2px);
            box-shadow: 0 6px 0 #006600;
        }

        /* Timer Separator */
        .timer-separator {
            color: var(--timer-red);
            font-weight: 800;
            font-size: 22px; /* Increased from 20px */
            margin: 0 2px;
        }

        /* Timer Label */
        .timer-label {
            color: var(--text-gray);
            font-size: 11px; /* Increased from 10px */
            font-weight: 600;
            text-align: center;
            margin-top: 2px;
        }

        .timer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Hero Section */
        .hero-section {
            padding: 40px 0;
            text-align: center;
        }

        .headline-wrapper {
            display: inline-block;
            border: 2px solid var(--accent-green);
            border-radius: 40px;
            padding: 12px 30px;
            margin-bottom: 20px;
        }

        .headline-wrapper h2 {
            color: var(--accent-green);
            font-size: 22px; /* Increased from 20px */
            font-weight: 700;
            letter-spacing: 1px;
            line-height: 1.3;
            margin-bottom: 8px;
        }

        .hindi-subtitle {
            color: var(--text-white);
            font-size: 20px; /* Increased from 18px */
            font-weight: 600;
            line-height: 1.3;
        }

        .main-headline {
            font-size: 46px; /* Increased from 42px */
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--text-white);
        }

        .bilingual-headline {
            font-size: 30px; /* Increased from 28px */
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .bilingual-headline .english {
            color: var(--text-white);
            display: block;
            margin-bottom: 8px;
        }

        .bilingual-headline .hindi {
            color: var(--accent-green);
            display: block;
            font-size: 28px; /* Increased from 26px */
            font-weight: 600;
        }

        .sub-headline-wrapper {
            display: inline-block;
            border: 2px solid var(--accent-green);
            border-radius: 15px;
            padding: 15px 25px;
            margin-bottom: 30px;
            max-width: 900px;
        }

        .sub-headline {
            font-size: 22px; /* Increased from 20px */
            color: var(--text-gray);
            margin: 0;
            line-height: 1.5;
        }

        .sub-headline .highlight {
            color: var(--accent-green);
            font-weight: 700;
        }

        /* Content Area */
        .content-area {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .video-placeholder {
            flex: 1;
            background-color: #000;
            border: 2px solid #333;
            border-radius: 15px;
            aspect-ratio: 16/9;
            max-width: 650px;
        }

        .details-box {
            flex: 0 0 400px;
            background-color: transparent;
            border-radius: 15px;
            text-align: left;
        }

        .details-heading {
            border: 2px solid var(--accent-green);
            border-radius: 15px;
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .details-heading h3 {
            color: var(--text-white);
            font-size: 20px; /* Increased from 18px */
            font-weight: 700;
            text-align: center;
            line-height: 1.3;
        }

        .details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 25px;
        }

        .detail-item {
            background-color: var(--icon-bg);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            align-items: flex-start;
            font-weight: 600;
            font-size: 17px; /* Increased from 15px */
            transition: transform 0.2s ease;
            line-height: 1.4;
        }

        .detail-item:hover {
            transform: translateY(-3px);
            background-color: #2a2a2a;
        }

        .detail-icon {
            margin-right: 12px;
            color: var(--accent-green);
            font-size: 22px; /* Increased from 20px */
            width: 26px; /* Increased from 24px */
            height: 26px; /* Increased from 24px */
            text-align: center;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .detail-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .register-btn-main {
            background-color: var(--accent-green);
            color: #000;
            padding: 20px 0 15px 0;
            border: none;
            border-radius: 40px;
            font-weight: 800;
            font-size: 26px; /* Increased from 24px */
            font-family: 'Manrope', sans-serif; /* ADD THIS LINE */
            cursor: pointer;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 6px 0 #7db82a;
        }

        .register-btn-main:hover {
            background-color: #b5f04d;
            transform: translateY(-3px);
            box-shadow: 0 8px 0 #7db82a;
        }

        .register-btn-main .btn-line1 {
            font-size: 26px; /* Increased from 24px */
            font-weight: 800;
            line-height: 1;
            margin-bottom: 10px; /* Increased gap between lines */
        }

        .register-btn-main .btn-line2 {
            font-size: 18px; /* Increased from 16px */
            font-weight: 700;
            opacity: 0.9;
            white-space: nowrap;
            line-height: 1;
        }

        .register-btn-main .btn-line2 .strikethrough-price {
            text-decoration: line-through;
            color: #999;
            margin-right: 5px;
        }

        .final-benefit {
            margin-top: 15px;
            font-size: 17px; /* Increased from 15px */
            color: var(--text-gray);
            text-align: center;
            line-height: 1.4;
        }

        /* Custom SVG Icons */
        .icon-svg {
            width: 24px; /* Increased from 22px */
            height: 24px; /* Increased from 22px */
            fill: var(--accent-green);
        }

        /* Section Divider */
        .section-divider {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-green) 20%, var(--accent-green) 80%, transparent);
            margin: 40px 0;
        }

        /* Loading Overlay */
        .loading-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid var(--accent-green);
            border-top: 5px solid transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }

        .loading-text {
            color: var(--accent-green);
            font-size: 20px;
            font-weight: 600;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Mobile-specific responsive styles */
        @media (max-width: 768px) {
            body {
                padding-top: 110px; /* Increased from 90px to create more space on mobile */
                font-size: 16px; /* Adjusted for mobile */
            }
            
            header {
                padding: 8px 0;
            }
            
            .header-content {
                flex-wrap: wrap;
                gap: 8px;
                justify-content: space-between;
            }
            
            .header-text {
                order: 1;
                flex: 0 0 100%;
                text-align: center;
                font-size: 16px; /* Increased from 14px */
                margin-bottom: 5px;
            }
            
            .header-text .date {
                font-size: 17px; /* Increased from 15px */
                margin-top: 2px;
            }
            
            .countdown-timer {
                order: 2;
                flex: 1;
                justify-content: center;
                gap: 4px;
            }
            
            .register-btn-top {
                order: 3;
                flex: 1;
                padding: 8px 12px;
                font-size: 16px; /* Increased from 14px */
                text-align: center;
                max-width: 140px;
            }
            
            .timer-box {
                padding: 6px 8px;
                font-size: 18px; /* Increased from 16px */
                min-width: 44px; /* Adjusted */
            }
            
            .timer-separator {
                font-size: 18px; /* Increased from 16px */
            }
            
            .timer-label {
                font-size: 9px; /* Increased from 8px */
            }
            
            /* Hero section mobile adjustments */
            .hero-section {
                padding-top: 30px; /* Reduced from 40px to balance the increased body padding */
            }
            
            .headline-wrapper {
                border: 2px solid var(--accent-green);
                border-radius: 40px;
                padding: 10px 20px;
                margin-bottom: 25px; /* Increased from 15px for better spacing */
            }
            
            .sub-headline-wrapper {
                border: 2px solid var(--accent-green);
                border-radius: 15px;
                padding: 12px 20px;
                margin-bottom: 20px;
            }
            
            .main-headline {
                font-size: 30px; /* Increased from 28px */
                margin-bottom: 12px;
            }
            
            .bilingual-headline {
                font-size: 20px; /* Increased from 18px */
                margin-bottom: 15px;
            }
            
            .bilingual-headline .hindi {
                font-size: 18px; /* Increased from 16px */
            }
            
            .bilingual-headline .english {
                margin-bottom: 5px;
            }
            
            .headline-wrapper h2 {
                font-size: 18px; /* Increased from 16px */
            }
            
            .hindi-subtitle {
                font-size: 16px; /* Increased from 14px */
            }
            
            .sub-headline {
                font-size: 18px; /* Increased from 16px */
            }
            
            .content-area {
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }
            
            .video-placeholder {
                width: 100%;
                max-width: 100%;
            }
            
            .details-box {
                width: 100%;
                max-width: 100%;
            }
            
            .details-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .detail-item {
                padding: 12px;
                align-items: center;
                font-size: 16px; /* Increased from 14px */
            }
            
            .detail-icon {
                margin-right: 10px;
                width: 24px; /* Increased from 22px */
                height: 24px; /* Increased from 22px */
            }
            
            .icon-svg {
                width: 22px; /* Increased from 20px */
                height: 22px; /* Increased from 20px */
            }
            
            .register-btn-main {
                padding: 18px 0 13px 0;
                font-size: 22px; /* Increased from 20px */
            }

            .register-btn-main .btn-line1 {
                font-size: 22px; /* Adjusted for mobile */
                margin-bottom: 8px; /* Increased gap for mobile */
            }

            .register-btn-main .btn-line2 {
                font-size: 16px; /* Adjusted for mobile */
            }

            .section-divider {
                margin: 30px 0;
            }

            .final-benefit {
                font-size: 16px; /* Adjusted for mobile */
            }
        }

        @media (max-width: 480px) {
            body {
                padding-top: 110px; /* Increased from 90px */
            }
            
            header {
                padding: 6px 0;
            }
            
            .header-text {
                font-size: 15px; /* Increased from 13px */
            }
            
            .header-text .date {
                font-size: 16px; /* Increased from 14px */
            }
            
            .timer-box {
                padding: 5px 6px;
                font-size: 16px; /* Increased from 14px */
                min-width: 38px; /* Adjusted */
            }
            
            .timer-separator {
                font-size: 16px; /* Increased from 14px */
            }
            
            .register-btn-top {
                padding: 6px 10px;
                font-size: 15px; /* Increased from 13px */
                max-width: 120px;
            }
            
            .main-headline {
                font-size: 26px; /* Increased from 24px */
            }
            
            .headline-wrapper {
                padding: 8px 15px;
                margin-bottom: 20px; /* Increased for better spacing */
            }
            
            .sub-headline-wrapper {
                padding: 10px 15px;
            }
            
            .bilingual-headline {
                font-size: 18px; /* Increased from 16px */
            }
            
            .bilingual-headline .hindi {
                font-size: 16px; /* Increased from 14px */
            }
            
            .sub-headline {
                font-size: 17px; /* Increased from 15px */
            }
            
            .detail-item {
                font-size: 15px; /* Increased from 14px */
            }

            .register-btn-main .btn-line1 {
                margin-bottom: 6px; /* Increased gap for mobile */
            }

            .register-btn-main .btn-line2 {
                font-size: 15px; /* Adjusted for mobile */
            }

            .section-divider {
                margin: 25px 0;
            }
        }

        @media (max-width: 360px) {
            body {
                padding-top: 110px; /* Increased from 90px */
            }
            
            .header-content {
                gap: 6px;
            }
            
            .header-text {
                font-size: 14px; /* Increased from 12px */
            }
            
            .timer-box {
                padding: 4px 5px;
                font-size: 15px; /* Increased from 13px */
                min-width: 33px; /* Adjusted */
            }
            
            .register-btn-top {
                padding: 5px 8px;
                font-size: 14px; /* Increased from 12px */
                max-width: 110px;
            }
            
            .main-headline {
                font-size: 24px; /* Increased from 22px */
            }
            
            .bilingual-headline {
                font-size: 17px; /* Increased from 15px */
            }
            
            .detail-item {
                font-size: 14px; /* Increased from 13px */
            }

            .register-btn-main .btn-line2 {
                font-size: 14px; /* Adjusted for mobile */
            }
        }
    