:root {
            --primary: #7c2d12;
            --secondary: #059669;
            --accent: #fde047;
            --light: #f8fafc;
            --dark: #0f172a;
            --shadow: 0 6px 18px rgba(0,0,0,0.2);
            --border-radius: 10px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #f5f5f4;
            color: var(--dark);
            line-height: 1.8;
            font-size: 16px;
            letter-spacing: 0.4px;
        }
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #9a3412);
            color: white;
            padding: 22px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 9999;
            transition: var(--transition);
        }
        header:hover {
            box-shadow: 0 12px 28px rgba(0,0,0,0.28);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .logo span {
            color: var(--accent);
            font-style: italic;
        }
        .logo .edition {
            font-size: 1.1rem;
            font-weight: 500;
            text-transform: capitalize;
            background-color: rgba(255,255,255,0.25);
            padding: 6px 14px;
            border-radius: 30px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
            margin-right: 30px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            font-size: 1.15rem;
            padding: 10px 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: var(--transition);
        }
        nav a:hover {
            color: var(--accent);
        }
        nav a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 14px 32px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            font-size: 1.1rem;
            text-align: center;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: var(--secondary);
            color: white;
            margin-right: 15px;
            box-shadow: 0 6px 18px rgba(5,150,105,0.4);
        }
        .btn-download:hover {
            background-color: #047857;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(5,150,105,0.5);
        }
        .btn-login {
            background-color: white;
            color: var(--primary);
            box-shadow: 0 6px 18px rgba(255,255,255,0.3);
        }
        .btn-login:hover {
            background-color: #f1f5f9;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255,255,255,0.4);
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        .hero {
            background: url('https://via.placeholder.com/1920x750?text=Valiant+Vishwa+Mystic+Duelist+Mythological+Action') center/cover no-repeat;
            padding: 180px 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(124,45,18,0.9), rgba(154,52,18,0.9));
            z-index: 1;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(to top, #f5f5f4, transparent);
            z-index: 2;
        }
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 4.8rem;
            margin-bottom: 35px;
            text-shadow: 0 6px 18px rgba(0,0,0,0.6);
            line-height: 1.3;
        }
        .hero h1 span {
            color: var(--accent);
        }
        .hero p {
            font-size: 1.6rem;
            margin-bottom: 60px;
            text-shadow: 0 5px 12px rgba(0,0,0,0.4);
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero .btn-group {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .hero .btn {
            padding: 18px 45px;
            font-size: 1.3rem;
        }
        .hero .btn-download {
            display: flex;
            align-items: center;
            gap: 18px;
            justify-content: center;
        }
        .hero .btn-download svg {
            width: 32px;
            height: 32px;
        }
        main {
            padding: 120px 0;
        }
        .section {
            margin-bottom: 150px;
            position: relative;
        }
        .section::after {
            content: '';
            position: absolute;
            bottom: -70px;
            left: 10%;
            width: 80%;
            height: 3px;
            background-color: rgba(124,45,18,0.2);
        }
        .section:last-child::after {
            display: none;
        }
        .section-title {
            font-size: 3.2rem;
            color: var(--primary);
            margin-bottom: 60px;
            padding-bottom: 20px;
            border-bottom: 6px solid var(--secondary);
            display: inline-block;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 35%;
            height: 6px;
            background-color: var(--accent);
        }
        .content-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 65px;
            margin-bottom: 65px;
            transition: var(--transition);
            border-top: 10px solid var(--primary);
        }
        .content-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 45px rgba(0,0,0,0.28);
        }
        .content-card h3 {
            font-size: 2.4rem;
            color: var(--primary);
            margin-bottom: 35px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .content-card h3 svg {
            width: 40px;
            height: 40px;
            color: var(--secondary);
        }
        .content-card h4 {
            font-size: 1.85rem;
            color: var(--dark);
            margin: 45px 0 30px;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .content-card h4::before {
            content: '✨';
            font-size: 1.6rem;
        }
        .content-card p {
            margin-bottom: 35px;
            font-size: 1.22rem;
            color: #2d3748;
            text-align: justify;
            line-height: 1.85;
        }
        .content-card p strong {
            color: var(--primary);
            font-weight: 700;
        }
        .content-card ul {
            margin-left: 45px;
            margin-bottom: 45px;
        }
        .content-card li {
            margin-bottom: 25px;
            font-size: 1.18rem;
            color: #2d3748;
            position: relative;
            padding-left: 25px;
        }
        .content-card li::before {
            content: '🌀';
            position: absolute;
            left: -40px;
            color: var(--secondary);
            font-weight: bold;
        }
        .content-card ol {
            margin-left: 45px;
            margin-bottom: 45px;
        }
        .content-card ol li {
            margin-bottom: 25px;
            font-size: 1.18rem;
            color: #2d3748;
            padding-left: 18px;
        }
        .content-card ol li::before {
            content: none;
        }
        .image-container {
            margin: 65px 0;
            text-align: center;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        .image-container:hover img {
            transform: scale(1.05);
        }
        .image-container p {
            background-color: var(--light);
            padding: 25px;
            margin: 0;
            font-style: italic;
            color: #4a5568;
            font-size: 1.15rem;
            border-top: 1px solid rgba(0,0,0,0.15);
            text-align: center;
        }
        .highlight {
            background-color: rgba(5,150,105,0.12);
            border-left: 10px solid var(--secondary);
            padding: 32px 36px;
            margin: 45px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            position: relative;
        }
        .highlight::before {
            content: '🔮';
            position: absolute;
            top: 25px;
            right: 35px;
            font-size: 2rem;
        }
        .highlight strong {
            color: var(--primary);
            font-size: 1.4rem;
            display: block;
            margin-bottom: 15px;
        }
        .highlight p {
            margin-bottom: 0;
            color: #1a202c;
            text-align: left;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin: 65px 0;
        }
        .stat-card {
            background-color: rgba(124,45,18,0.1);
            padding: 45px;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(124,45,18,0.2);
        }
        .stat-card:hover {
            background-color: rgba(124,45,18,0.15);
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }
        .stat-value {
            font-size: 3.6rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .stat-label {
            font-size: 1.25rem;
            color: #4a5568;
            font-weight: 500;
        }
        .tabs {
            display: flex;
            border-bottom: 4px solid #dee2e6;
            margin-bottom: 50px;
            overflow-x: auto;
            scrollbar-width: none;
            padding-bottom: 12px;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab {
            padding: 20px 40px;
            cursor: pointer;
            background-color: transparent;
            border: none;
            font-weight: 600;
            color: #4a5568;
            transition: var(--transition);
            white-space: nowrap;
            font-size: 1.25rem;
            border-bottom: 5px solid transparent;
        }
        .tab:hover {
            color: var(--primary);
            background-color: rgba(124,45,18,0.07);
        }
        .tab.active {
            background-color: rgba(124,45,18,0.1);
            color: var(--primary);
            border-bottom: 5px solid var(--secondary);
            border-radius: 12px 12px 0 0;
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.7s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(25px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tab-content.active {
            display: block;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 45px;
            margin: 85px 0;
        }
        .feature-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 45px;
            text-align: center;
            transition: var(--transition);
            border-bottom: 8px solid var(--accent);
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.22);
        }
        .feature-icon {
            font-size: 4.3rem;
            color: var(--primary);
            margin-bottom: 35px;
            transition: var(--transition);
        }
        .feature-card:hover .feature-icon {
            color: var(--secondary);
            transform: scale(1.3);
        }
        .feature-card h3 {
            font-size: 1.95rem;
            color: var(--dark);
            margin-bottom: 25px;
            display: block;
        }
        .feature-card p {
            font-size: 1.15rem;
            color: #4a5568;
            margin-bottom: 0;
            text-align: center;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 50px;
            margin: 85px 0;
        }
        .testimonial-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 50px;
            transition: var(--transition);
            position: relative;
        }
        .testimonial-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 18px 35px rgba(0,0,0,0.2);
        }
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 30px;
            left: 40px;
            font-size: 6rem;
            color: rgba(124,45,18,0.15);
            font-family: Georgia, serif;
        }
        .testimonial-text {
            font-style: italic;
            color: #2d3748;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
            font-size: 1.2rem;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        .author-avatar {
            width: 85px;
            height: 85px;
            border-radius: 50%;
            background-color: rgba(124,45,18,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
        }
        .author-info h4 {
            font-size: 1.4rem;
            color: var(--dark);
            margin: 0 0 10px 0;
        }
        .author-info p {
            font-size: 1.1rem;
            color: #4a5568;
            margin: 0;
            text-align: left;
        }
        .download-container {
            background: linear-gradient(135deg, var(--primary), #9a3412);
            border-radius: var(--border-radius);
            padding: 95px;
            text-align: center;
            color: white;
            margin: 95px 0;
            box-shadow: 0 18px 45px rgba(124,45,18,0.35);
        }
        .download-container h3 {
            font-size: 3.1rem;
            margin-bottom: 40px;
            color: white;
        }
        .download-container p {
            font-size: 1.45rem;
            max-width: 850px;
            margin: 0 auto 60px;
            color: rgba(255,255,255,0.95);
            text-align: center;
        }
        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .download-btn {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px 48px;
            border-radius: 40px;
            background-color: white;
            color: var(--primary);
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.4rem;
            box-shadow: 0 8px 25px rgba(255,255,255,0.3);
        }
        .download-btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(255,255,255,0.4);
            background-color: #f8fafc;
        }
        .download-btn svg {
            width: 36px;
            height: 36px;
        }
        .download-note {
            margin-top: 45px;
            font-size: 1.15rem;
            color: rgba(255,255,255,0.88);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 120px 0 70px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 80px;
            margin-bottom: 90px;
        }
        .footer-col h3 {
            font-size: 2rem;
            margin-bottom: 40px;
            color: var(--accent);
            padding-bottom: 20px;
            border-bottom: 4px solid var(--secondary);
            display: inline-block;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 25px;
        }
        .footer-col a {
            color: #cbd5e0;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.15rem;
            display: inline-block;
            padding: 6px 0;
        }
        .footer-col a:hover {
            color: var(--accent);
            padding-left: 15px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }
        .tag {
            background-color: #1e293b;
            padding: 14px 28px;
            border-radius: 40px;
            font-size: 1.1rem;
            transition: var(--transition);
            color: #cbd5e0;
            text-decoration: none;
        }
        .tag:hover {
            background-color: var(--primary);
            color: white;
            padding-left: 28px;
            transform: translateY(-4px);
        }
        .recommendation {
            background-color: rgba(5,150,105,0.15);
            padding: 40px;
            border-radius: var(--border-radius);
            margin-top: 40px;
            border-left: 8px solid var(--secondary);
        }
        .recommendation h4 {
            color: var(--accent);
            margin-bottom: 30px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .recommendation h4::before {
            content: none;
        }
        .recommendation p {
            color: #e2e8f0;
            margin-bottom: 30px;
            font-size: 1.2rem;
            text-align: left;
        }
        .recommendation p:last-child {
            margin-bottom: 0;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 70px;
            border-top: 1px solid #2d3748;
            font-size: 1.15rem;
            color: #a0aec0;
            line-height: 2.5;
        }
        .copyright-links {
            margin: 30px 0;
        }
        .copyright-links a {
            color: #a0aec0;
            text-decoration: none;
            margin: 0 25px;
            transition: var(--transition);
        }
        .copyright-links a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 4.3rem;
            }
            .section-title {
                font-size: 2.9rem;
            }
            .content-card {
                padding: 55px;
            }
        }
        @media (max-width: 992px) {
            nav ul {
                gap: 35px;
            }
            .btn {
                padding: 12px 28px;
                font-size: 1.05rem;
            }
            .hero {
                padding: 150px 0;
            }
            .hero h1 {
                font-size: 3.8rem;
            }
            .hero p {
                font-size: 1.5rem;
            }
            main {
                padding: 105px 0;
            }
            .section {
                margin-bottom: 130px;
            }
            .features-grid {
                gap: 40px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                justify-content: space-between;
            }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 40px;
                box-shadow: 0 18px 30px rgba(0,0,0,0.28);
                z-index: 999;
                flex-direction: column;
            }
            nav.active {
                display: flex;
            }
            nav ul {
                flex-direction: column;
                gap: 35px;
                margin-right: 0;
                margin-bottom: 35px;
                width: 100%;
            }
            nav ul li {
                width: 100%;
            }
            nav a {
                display: block;
                width: 100%;
                padding: 18px 0;
                font-size: 1.2rem;
            }
            .btn-group {
                display: flex;
                width: 100%;
                gap: 25px;
            }
            .btn {
                width: 50%;
                margin-right: 0;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 130px 0;
            }
            .hero h1 {
                font-size: 3.3rem;
            }
            .hero p {
                font-size: 1.4rem;
            }
            .section-title {
                font-size: 2.6rem;
            }
            .content-card {
                padding: 45px 35px;
            }
            .content-card h3 {
                font-size: 2.15rem;
            }
            .download-container {
                padding: 75px 40px;
            }
            .download-container h3 {
                font-size: 2.7rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.9rem;
            }
            .logo .edition {
                font-size: 1rem;
                padding: 5px 12px;
            }
            .hero {
                padding: 110px 0;
            }
            .hero h1 {
                font-size: 2.9rem;
                line-height: 1.4;
            }
            .hero .btn-group {
                flex-direction: column;
                gap: 25px;
            }
            .hero .btn {
                width: 100%;
            }
            .section-title {
                font-size: 2.4rem;
            }
            .content-card h3 {
                font-size: 2rem;
            }
            .content-card h4 {
                font-size: 1.65rem;
            }
            .tabs {
                flex-direction: column;
                border-bottom: none;
            }
            .tab {
                border-bottom: 1px solid #dee2e6;
                border-radius: 0;
                text-align: left;
                padding: 18px 25px;
            }
            .tab.active {
                border-radius: 0;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .download-buttons {
                flex-direction: column;
                gap: 25px;
            }
            .download-btn {
                width: 100%;
                justify-content: center;
                padding: 22px 35px;
            }
            .footer-content {
                gap: 60px;
            }
            .copyright-links a {
                display: block;
                margin: 20px 0;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
                animation: none !important;
            }
        }
        .loader {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: white;
            z-index: 99999;
            align-items: center;
            justify-content: center;
        }
        .loader.active {
            display: flex;
        }
        .spinner {
            width: 80px;
            height: 80px;
            border: 10px solid rgba(124,45,18,0.18);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
