     /* Colorful Theme Variables */
     :root {
        --primary: #FF5722;
        --secondary: #9C27B0;
        --accent: #FFC107;
        --dark: #1A237E;
        --light: #E3F2FD;
        --success: #4CAF50;
        --warning: #FF9800;
        --danger: #F44336;
        --text: #333;
        --text-light: #fff;
    }

    /* Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Montserrat', 'Poppins', sans-serif;
    }

    body {
        background-color: #f9f9f9;
        color: var(--text);
        overflow-x: hidden;
        position: relative;
    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 30%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
        z-index: -1;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    section {
        padding: 80px 0;
        position: relative;
    }

    /* Animated Gradient Text */
    .gradient-text {
        background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
        background-size: 300% 300%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: gradient 8s ease infinite;
    }

    @keyframes gradient {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* Header - Colorful Navbar */
    header {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        position: fixed;
        width: 100%;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    header.scrolled {
        background: rgba(26, 35, 126, 0.95);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    header.scrolled .logo h1,
    header.scrolled nav ul li a {
        color: white;
    }

    header.scrolled .mobile-menu-btn {
        color: white;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .logo h1 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--dark);
        transition: all 0.3s ease;
    }

    .logo span {
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    nav ul li a {
        color: var(--text);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        position: relative;
        padding: 5px 0;
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        transition: width 0.3s ease;
    }

    nav ul li a:hover::after {
        width: 100%;
    }

    .nav-btns {
        display: flex;
        gap: 15px;
    }

    .btn {
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .btn-primary {
        background: linear-gradient(45deg, var(--primary), var(--warning));
        color: white;
        box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 87, 34, 0.6);
    }

    .btn-outline {
        border: 2px solid var(--primary);
        color: var(--primary);
    }

    .btn-outline:hover {
        background: var(--primary);
        color: white;
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark);
        cursor: pointer;
    }

    /* Hero Section - Vibrant Design */
    .hero {
        padding-top: 150px;
        padding-bottom: 100px;
        background: linear-gradient(135deg, rgba(227, 242, 253, 0.9), rgba(255, 241, 235, 0.9));
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
        z-index: -1;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -20%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(156, 39, 176, 0.15) 0%, transparent 70%);
        z-index: -1;
    }

    .hero-content {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .hero-text {
        flex: 1;
    }

    .hero-image {
        flex: 1;
        position: relative;
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
        0% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0); }
    }

    .hero-image img {
        width: 100%;
        max-width: 500px;
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        color: #555;
        max-width: 600px;
    }

    .hero-btns {
        display: flex;
        gap: 20px;
        margin-bottom: 40px;
    }

    .hero-features {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .feature-tag {
        background: white;
        padding: 10px 20px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        font-weight: 600;
    }

    .feature-tag i {
        color: var(--primary);
        font-size: 1.2rem;
    }

    /* Game Features Section */
    .features {
        background-color: white;
        position: relative;
        overflow: hidden;
    }

    .features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23E3F2FD" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>') bottom center/100% 20% no-repeat;
        z-index: 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 1;
    }

    .section-title h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 1.1rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        position: relative;
        z-index: 1;
    }

    .feature-card {
        background: white;
        border-radius: 15px;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 0;
        background: linear-gradient(to bottom, var(--primary), var(--secondary));
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .feature-card:hover::before {
        height: 100%;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        font-size: 1.8rem;
        color: white;
        background: linear-gradient(45deg, var(--primary), var(--secondary));
        box-shadow: 0 10px 20px rgba(156, 39, 176, 0.3);
    }

    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .feature-card p {
        color: #666;
        line-height: 1.7;
    }

    /* How to Play Section */
    .how-to-play {
        background: linear-gradient(135deg, var(--dark), #283593);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .how-to-play::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255, 255, 255, 0.03)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>') bottom center/100% 20% no-repeat;
    }

    .how-to-play .section-title h2,
    .how-to-play .section-title p {
        color: white;
    }

    .how-to-play .section-title p {
        opacity: 0.8;
    }

    .steps {
        display: flex;
        flex-direction: column;
        gap: 30px;
        position: relative;
        z-index: 1;
    }

    .step {
        display: flex;
        gap: 30px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 30px;
        align-items: center;
        transition: all 0.3s ease;
    }

    .step:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(10px);
    }

    .step-number {
        min-width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(45deg, var(--accent), var(--warning));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark);
        flex-shrink: 0;
        box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    }

    .step-content h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: white;
    }

    .step-content p {
        opacity: 0.9;
        line-height: 1.7;
    }

    /* Download Section */
    .download {
        background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
        text-align: center;
        position: relative;
    }

    .download::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%239C27B0" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>') bottom center/100% 20% no-repeat;
    }

    .download-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .download-devices {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 50px;
        flex-wrap: wrap;
    }

    .device-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        width: 220px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .device-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .device-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        color: var(--primary);
    }

    .device-card h3 {
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .device-card p {
        color: #666;
        margin-bottom: 20px;
    }

    /* Testimonials Section */
    .testimonials {
        background: white;
        position: relative;
    }

    .testimonials::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%231A237E" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>') bottom center/100% 20% no-repeat;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .testimonial-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        position: relative;
        transition: all 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 5rem;
        font-family: serif;
        color: rgba(156, 39, 176, 0.1);
        line-height: 1;
        z-index: 0;
    }

    .testimonial-content {
        position: relative;
        z-index: 1;
    }

    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        color: #555;
        line-height: 1.7;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
    }

    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author-info h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .author-info p {
        color: #777;
        font-size: 0.9rem;
    }

    .rating {
        color: var(--accent);
        margin-top: 5px;
    }

    /* FAQ Section */
    .faq {
        background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        border-radius: 10px;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .faq-question {
        padding: 20px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: rgba(156, 39, 176, 0.05);
    }

    .faq-question i {
        transition: all 0.3s ease;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        padding: 0 30px;
        color: #555;
        line-height: 1.7;
    }

    .faq-item.active .faq-question {
        background: rgba(156, 39, 176, 0.05);
        color: var(--secondary);
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
        padding: 0 30px 20px;
    }

    /* Footer */
    footer {
        background: var(--dark);
        color: white;
        position: relative;
        overflow: hidden;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23FF5722" fill-opacity="0.05" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>') bottom center/100% 20% no-repeat;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
        position: relative;
        z-index: 1;
    }

    .footer-col h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        position: relative;
        color: white;
    }

    .footer-col h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-links a:hover {
        color: white;
        transform: translateX(5px);
    }

    .footer-links a i {
        color: var(--accent);
    }

    .footer-contact p {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.8);
    }

    .footer-contact i {
        color: var(--accent);
        min-width: 20px;
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: var(--primary);
        transform: translateY(-5px);
    }

    .newsletter-form {
        margin-top: 20px;
    }

    .newsletter-form input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 50px;
        border: none;
        margin-bottom: 10px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .newsletter-form button {
        width: 100%;
        padding: 12px;
        border-radius: 50px;
        border: none;
        background: linear-gradient(90deg, var(--primary), var(--warning));
        color: white;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
    }

    .copyright {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        position: relative;
        z-index: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .hero-content {
            flex-direction: column;
            text-align: center;
        }

        .hero-text {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-btns {
            justify-content: center;
        }

        .hero-features {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        nav ul {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }

        .header-container.active nav ul {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container.active nav ul li {
            margin: 10px 0;
        }

        .nav-btns {
            display: none;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        section {
            padding: 60px 0;
        }

        .section-title h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 2rem;
        }

        .hero p {
            font-size: 1rem;
        }

        .hero-btns {
            flex-direction: column;
        }

        .btn {
            width: 100%;
            justify-content: center;
        }

        .feature-tag {
            width: 100%;
            justify-content: center;
        }
    }