
        :root {
            --primary: #FF6B00;
            --primary-light: #FF9A45;
            --primary-dark: #E05500;
            --secondary: #00B4D8;
            --accent: #FFD700;
            --bg: #FAFAFA;
            --card-bg: #FFFFFF;
            --text-dark: #1A1A2E;
            --text-medium: #555;
            --text-light: #888;
            --border: #E8E8E8;
            --success: #27AE60;
            --shadow: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Noto Sans Bengali', 'Poppins', sans-serif;
            background: var(--bg);
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        /* Add this CSS after your existing styles */

/* Mobile menu styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--card-bg);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 16px 16px;
        z-index: 1000;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-links a {
        padding: 12px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links .btn-nav {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
    
    .mobile-menu {
        display: block;
        cursor: pointer;
    }
}

/* Make sure mobile menu is visible on smaller screens */
@media (max-width: 768px) {
    .navbar .container {
        position: relative;
    }
}

        /* ===== NAVBAR ===== */
        .navbar {
            background: var(--card-bg);
            box-shadow: 0 2px 15px rgba(0,0,0,0.06);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .navbar .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .navbar-brand .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #fff;
        }
        .navbar-brand span {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-dark);
        }
        .navbar-brand span em {
            font-style: normal;
            color: var(--primary);
        }
        .nav-links { display: flex; gap: 25px; align-items: center; }
        .nav-links a {
            text-decoration: none;
            color: var(--text-medium);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
        }
        .nav-links a:hover { color: var(--primary); }
        .nav-links .btn-nav {
            background: var(--primary);
            color: #fff;
            padding: 8px 20px;
            border-radius: 8px;
            font-weight: 600;
        }
        .nav-links .btn-nav:hover { background: var(--primary-dark); color: #fff; }

        .mobile-menu { display: none; font-size: 24px; cursor: pointer; color: var(--text-dark); }

        /* ===== HERO SECTION ===== */
        .hero {
            background: linear-gradient(135deg, #FFF5EB 0%, #FFF0E0 50%, #E8F8FF 100%);
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0,180,216,0.06) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-dark);
            position: relative;
        }
        .hero h1 .highlight { color: var(--primary); }
        .hero p {
            font-size: 18px;
            color: var(--text-medium);
            max-width: 600px;
            margin: 0 auto 30px;
            position: relative;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            position: relative;
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat .stat-num {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
        }
        .hero-stat .stat-label {
            font-size: 14px;
            color: var(--text-light);
            margin-top: 4px;
        }

        /* ===== FEATURES ===== */
        .features {
            padding: 70px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }
        .section-title p {
            color: var(--text-light);
            font-size: 16px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        .feature-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--border);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .feature-icon {
            width: 65px;
            height: 65px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 28px;
        }
        .feature-icon.orange { background: #FFF0E0; color: var(--primary); }
        .feature-icon.blue { background: #E0F4FF; color: var(--secondary); }
        .feature-icon.green { background: #E0FFE9; color: var(--success); }
        .feature-icon.gold { background: #FFF8DC; color: #D4A800; }
        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-dark);
        }
        .feature-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ===== HOW IT WORKS ===== */
        .how-it-works {
            background: linear-gradient(135deg, #FFF9F5, #FFF5EB);
            padding: 70px 20px;
        }
        .steps {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            position: relative;
        }
        .steps::before {
            content: '';
            position: absolute;
            top: 35px;
            left: 15%;
            right: 15%;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        .step {
            text-align: center;
            position: relative;
            flex: 1;
        }
        .step-num {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            font-size: 28px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            box-shadow: 0 5px 20px rgba(255,107,0,0.3);
            position: relative;
            z-index: 2;
        }
        .step h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
        .step p { font-size: 13px; color: var(--text-light); }

        /* ===== WINNERS ===== */
        .winners {
            padding: 70px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .winners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        .winner-card {
            background: var(--card-bg);
            border-radius: 14px;
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: transform 0.3s;
        }
        .winner-card:hover { transform: translateY(-3px); }
        .winner-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
        }
        .winner-info h4 { font-size: 16px; font-weight: 600; }
        .winner-info .win-amount {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
        }
        .winner-info .win-date { font-size: 12px; color: var(--text-light); }

        /* ===== TICKET PURCHASE SECTION ===== */
        .ticket-section {
            padding: 70px 20px;
            background: linear-gradient(135deg, #FFF5EB, #FFF9F5);
        }
        .ticket-wrapper {
            max-width: 500px;
            margin: 0 auto;
        }
        .ticket-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
        }
        .ticket-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            padding: 30px;
            text-align: center;
            color: #fff;
        }
        .ticket-header h2 { font-size: 26px; font-weight: 800; margin-bottom: 5px; }
        .ticket-header p { opacity: 0.9; font-size: 14px; }
        .ticket-price-display {
            margin-top: 15px;
            background: rgba(255,255,255,0.2);
            display: inline-block;
            padding: 10px 25px;
            border-radius: 30px;
        }
        .ticket-price-display .label { font-size: 12px; display: block; opacity: 0.9; }
        .ticket-price-display .price { font-size: 30px; font-weight: 800; }
        .ticket-body { padding: 30px; }
        .form-group { margin-bottom: 20px; }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
        }
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border-radius: 12px;
            border: 2px solid var(--border);
            font-size: 15px;
            font-family: inherit;
            background: #FAFAFA;
            color: var(--text-dark);
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
            background: #fff;
        }
        .form-group input::placeholder { color: #bbb; }
        .form-group .input-icon-wrap {
            position: relative;
        }
        .form-group .input-icon-wrap i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
        }
        .form-group .input-icon-wrap input,
        .form-group .input-icon-wrap select {
            padding-left: 42px;
        }

        .total-display {
            background: linear-gradient(135deg, #FFF8F0, #FFF0E0);
            border: 2px solid var(--primary-light);
            border-radius: 14px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
        }
        .total-display .total-label { font-size: 14px; color: var(--text-medium); margin-bottom: 5px; }
        .total-display .total-amount {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
        }
        .btn-purchase {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            font-family: inherit;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn-purchase:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255,107,0,0.35);
        }
        .btn-purchase:active { transform: translateY(0); }

        .secure-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 15px;
            font-size: 13px;
            color: var(--text-light);
        }
        .secure-note i { color: var(--success); }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 70px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        .testimonial-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .testimonial-card .stars { color: var(--accent); font-size: 16px; margin-bottom: 12px; }
        .testimonial-card p {
            font-size: 15px;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 15px;
        }
        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-card .author-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary), #00D4FF);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 16px;
        }
        .testimonial-card .author-name { font-weight: 600; font-size: 14px; }
        .testimonial-card .author-loc { font-size: 12px; color: var(--text-light); }

        /* ===== FAQ ===== */
        .faq {
            padding: 70px 20px;
            background: #F5F5F5;
        }
        .faq-list {
            max-width: 750px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--card-bg);
            border-radius: 12px;
            margin-bottom: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid var(--border);
        }
        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 15px;
            transition: background 0.3s;
        }
        .faq-question:hover { background: #FAFAFA; }
        .faq-question i { color: var(--primary); transition: transform 0.3s; }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s;
        }
        .faq-answer.open {
            max-height: 200px;
            padding: 0 25px 20px;
        }
        .faq-answer p { font-size: 14px; color: var(--text-medium); line-height: 1.8; }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--text-dark);
            color: #ccc;
            padding: 50px 20px 25px;
        }
        .footer .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 15px; }
        .footer-col a { display: block; color: #aaa; text-decoration: none; font-size: 14px; margin-bottom: 8px; transition: color 0.3s; }
        .footer-col a:hover { color: var(--primary-light); }
        .footer-col p { font-size: 14px; line-height: 1.8; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #777;
        }
        .social-links { display: flex; gap: 12px; margin-top: 10px; }
        .social-links a {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            background: rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
            text-decoration: none;
            transition: background 0.3s, color 0.3s;
        }
        .social-links a:hover { background: var(--primary); color: #fff; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu { display: block; }
            .hero h1 { font-size: 30px; }
            .hero-stats { flex-wrap: wrap; gap: 25px; }
            .steps { flex-direction: column; gap: 30px; }
            .steps::before { display: none; }
            .hero { padding: 50px 20px; }
        }
    