
        :root {
            --primary-purple: #8B2D9F;
            --secondary-gold: #FFD700;
            --dark-bg: #0F0F0F;
            --card-bg: #1A1A2E;
            --text-light: #FFFFFF;
            --text-secondary: #B0B0B0;
            --accent-teal: #00CED1;
            --success-green: #00D084;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0033 100%);
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Header Navigation */
        header {
            background: rgba(15, 15, 15, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--secondary-gold);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--secondary-gold), var(--accent-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--secondary-gold);
        }

        /* Hero Section */
        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--secondary-gold), var(--accent-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .uk-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-purple), var(--secondary-gold));
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--secondary-gold), #FFA500);
            color: #000;
            padding: 16px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
                text-align: center;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
        }

        .btn-secondary {
            background: rgba(139, 45, 159, 0.3);
            border: 2px solid var(--secondary-gold);
            color: var(--text-light);
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
                text-align: center;
        }

        .btn-secondary:hover {
            background: var(--secondary-gold);
            color: #000;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
        }

        /* Features Section */
        .features {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary-gold);
        }
a {
  text-decoration: none;
}
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid rgba(255, 215, 0, 0.1);
            transition: all 0.3s;
            text-align: center;
        }

        .feature-card:hover {
            border-color: var(--secondary-gold);
            box-shadow: 0 10px 30px rgba(139, 45, 159, 0.2);
        }

        .feature-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--secondary-gold);
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* Content Section */
        .content-section {
            max-width: 1200px;
            margin: 60px auto;
            padding: 40px;
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }

        .content-section h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--secondary-gold);
        }

        .content-section p {
            margin-bottom: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .highlight {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid var(--secondary-gold);
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
        }

        /* Download Options */
        .download-section {
            max-width: 1200px;
            margin: 60px auto;
            padding: 40px 20px;
        }

        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .download-card {
            background: var(--card-bg);
            padding: 25px;
            border-radius: 12px;
            border: 2px solid var(--secondary-gold);
            text-align: center;
            transition: all 0.3s;
        }

        .download-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
        }

        .download-card .platform-icon {
            font-size: 50px;
            margin-bottom: 15px;
        }

        .download-card button {
            background: var(--secondary-gold);
            color: #000;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s;
            margin-top: 15px;
        }

        .download-card button:hover {
            background: #FFA500;
            transform: scale(1.05);
        }

        /* FAQ Section */
        .faq-section {
            max-width: 1200px;
            margin: 60px auto;
            padding: 40px 20px;
        }

        .faq-item {
            background: var(--card-bg);
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid rgba(255, 215, 0, 0.1);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 215, 0, 0.05);
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: rgba(255, 215, 0, 0.1);
        }

        .faq-question h4 {
            color: var(--secondary-gold);
            font-size: 16px;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
            color: var(--text-secondary);
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }

        /* Footer */
        footer {
            background: #050505;
            border-top: 2px solid var(--secondary-gold);
            padding: 40px 20px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h4 {
            color: var(--secondary-gold);
            margin-bottom: 15px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--secondary-gold);
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            padding-top: 20px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .nav-links {
                gap: 15px;
                font-size: 14px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
            }
            nav .btn-primary, nav  .btn-secondary {
                width: unset;
                text-align: center;
            }

            .section-title {
                font-size: 28px;
            }
        }