:root {
            --primary: #1a365d;
            --secondary: #e53e3e;
            --accent: #ffc107;
            --light: #f7fafc;
            --dark: #121212;
            --shadow: 0 8px 24px rgba(0,0,0,0.18);
            --border-radius: 12px;
            --transition: all 0.35s 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: #f0f2f5;
            color: var(--dark);
            line-height: 1.9;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .container {
            width: 100%;
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #2d5283);
            color: white;
            padding: 25px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 9999;
            transition: var(--transition);
        }
        header:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.25);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        .logo {
            font-size: 2.3rem;
            font-weight: 800;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .logo span {
            color: var(--accent);
            font-style: italic;
        }
        .logo .edition {
            font-size: 1.15rem;
            font-weight: 500;
            text-transform: capitalize;
            background-color: rgba(255,255,255,0.22);
            padding: 7px 16px;
            border-radius: 35px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 45px;
            margin-right: 35px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            font-size: 1.2rem;
            padding: 12px 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: 15px 35px;
            border-radius: 35px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            font-size: 1.15rem;
            text-align: center;
            letter-spacing: 0.6px;
        }
        .btn-download {
            background-color: var(--secondary);
            color: white;
            margin-right: 18px;
            box-shadow: 0 8px 20px rgba(229,62,62,0.45);
        }
        .btn-download:hover {
            background-color: #c53030;
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(229,62,62,0.55);
        }
        .btn-login {
            background-color: white;
            color: var(--primary);
            box-shadow: 0 8px 20px rgba(255,255,255,0.35);
        }
        .btn-login:hover {
            background-color: #f8f9fa;
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(255,255,255,0.45);
        }
        .hamburger {
            display: none;
            font-size: 2.4rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        .hero {
            background: url('https://via.placeholder.com/1920x800?text=Valiant+Vishwa+Heroic+Stand+Mythological+Battle') center/cover no-repeat;
            padding: 200px 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(26,54,93,0.92), rgba(45,82,131,0.92));
            z-index: 1;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background: linear-gradient(to top, #f0f2f5, transparent);
            z-index: 2;
        }
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1250px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 5rem;
            margin-bottom: 40px;
            text-shadow: 0 8px 20px rgba(0,0,0,0.7);
            line-height: 1.35;
        }
        .hero h1 span {
            color: var(--accent);
        }
        .hero p {
            font-size: 1.7rem;
            margin-bottom: 70px;
            text-shadow: 0 6px 15px rgba(0,0,0,0.5);
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero .btn-group {
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }
        .hero .btn {
            padding: 20px 50px;
            font-size: 1.4rem;
        }
        .hero .btn-download {
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: center;
        }
        .hero .btn-download svg {
            width: 35px;
            height: 35px;
        }
        main {
            padding: 140px 0;
        }
        .section {
            margin-bottom: 170px;
            position: relative;
        }
        .section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: 12%;
            width: 76%;
            height: 4px;
            background-color: rgba(26,54,93,0.2);
        }
        .section:last-child::after {
            display: none;
        }
        .section-title {
            font-size: 3.4rem;
            color: var(--primary);
            margin-bottom: 70px;
            padding-bottom: 25px;
            border-bottom: 7px solid var(--secondary);
            display: inline-block;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -7px;
            left: 0;
            width: 38%;
            height: 7px;
            background-color: var(--accent);
        }
        .content-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 70px;
            margin-bottom: 70px;
            transition: var(--transition);
            border-top: 12px solid var(--primary);
        }
        .content-card:hover {
            transform: translateY(-18px);
            box-shadow: 0 30px 50px rgba(0,0,0,0.3);
        }
        .content-card h3 {
            font-size: 2.6rem;
            color: var(--primary);
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 25px;
        }
        .content-card h3 svg {
            width: 45px;
            height: 45px;
            color: var(--secondary);
        }
        .content-card h4 {
            font-size: 1.95rem;
            color: var(--dark);
            margin: 50px 0 35px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .content-card h4::before {
            content: '🔥';
            font-size: 1.8rem;
        }
        .content-card p {
            margin-bottom: 40px;
            font-size: 1.25rem;
            color: #2d3748;
            text-align: justify;
            line-height: 1.9;
        }
        .content-card p strong {
            color: var(--primary);
            font-weight: 700;
        }
        .content-card ul {
            margin-left: 50px;
            margin-bottom: 50px;
        }
        .content-card li {
            margin-bottom: 30px;
            font-size: 1.22rem;
            color: #2d3748;
            position: relative;
            padding-left: 30px;
        }
        .content-card li::before {
            content: '⚔️';
            position: absolute;
            left: -45px;
            color: var(--secondary);
            font-weight: bold;
        }
        .content-card ol {
            margin-left: 50px;
            margin-bottom: 50px;
        }
        .content-card ol li {
            margin-bottom: 30px;
            font-size: 1.22rem;
            color: #2d3748;
            padding-left: 20px;
        }
        .content-card ol li::before {
            content: none;
        }
        .image-container {
            margin: 70px 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.06);
        }
        .image-container p {
            background-color: var(--light);
            padding: 30px;
            margin: 0;
            font-style: italic;
            color: #4a5568;
            font-size: 1.2rem;
            border-top: 1px solid rgba(0,0,0,0.18);
            text-align: center;
        }
        .highlight {
            background-color: rgba(229,62,62,0.1);
            border-left: 12px solid var(--secondary);
            padding: 35px 40px;
            margin: 50px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            position: relative;
        }
        .highlight::before {
            content: '🏆';
            position: absolute;
            top: 30px;
            right: 40px;
            font-size: 2.2rem;
        }
        .highlight strong {
            color: var(--primary);
            font-size: 1.5rem;
            display: block;
            margin-bottom: 18px;
        }
        .highlight p {
            margin-bottom: 0;
            color: #1a202c;
            text-align: left;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 45px;
            margin: 70px 0;
        }
        .stat-card {
            background-color: rgba(26,54,93,0.08);
            padding: 50px;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(26,54,93,0.2);
        }
        .stat-card:hover {
            background-color: rgba(26,54,93,0.12);
            transform: translateY(-12px);
            box-shadow: var(--shadow);
        }
        .stat-value {
            font-size: 3.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 18px;
        }
        .stat-label {
            font-size: 1.3rem;
            color: #4a5568;
            font-weight: 500;
        }
        .tabs {
            display: flex;
            border-bottom: 5px solid #dee2e6;
            margin-bottom: 55px;
            overflow-x: auto;
            scrollbar-width: none;
            padding-bottom: 15px;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab {
            padding: 22px 45px;
            cursor: pointer;
            background-color: transparent;
            border: none;
            font-weight: 600;
            color: #4a5568;
            transition: var(--transition);
            white-space: nowrap;
            font-size: 1.3rem;
            border-bottom: 6px solid transparent;
        }
        .tab:hover {
            color: var(--primary);
            background-color: rgba(26,54,93,0.07);
        }
        .tab.active {
            background-color: rgba(26,54,93,0.1);
            color: var(--primary);
            border-bottom: 6px solid var(--secondary);
            border-radius: 15px 15px 0 0;
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.8s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tab-content.active {
            display: block;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 50px;
            margin: 90px 0;
        }
        .feature-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 50px;
            text-align: center;
            transition: var(--transition);
            border-bottom: 10px solid var(--accent);
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 12px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        .feature-card:hover {
            transform: translateY(-18px);
            box-shadow: 0 25px 45px rgba(0,0,0,0.25);
        }
        .feature-icon {
            font-size: 4.5rem;
            color: var(--primary);
            margin-bottom: 40px;
            transition: var(--transition);
        }
        .feature-card:hover .feature-icon {
            color: var(--secondary);
            transform: scale(1.4);
        }
        .feature-card h3 {
            font-size: 2.05rem;
            color: var(--dark);
            margin-bottom: 30px;
            display: block;
        }
        .feature-card p {
            font-size: 1.2rem;
            color: #4a5568;
            margin-bottom: 0;
            text-align: center;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 55px;
            margin: 90px 0;
        }
        .testimonial-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 55px;
            transition: var(--transition);
            position: relative;
        }
        .testimonial-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 22px 40px rgba(0,0,0,0.22);
        }
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 35px;
            left: 45px;
            font-size: 6.5rem;
            color: rgba(26,54,93,0.15);
            font-family: Georgia, serif;
        }
        .testimonial-text {
            font-style: italic;
            color: #2d3748;
            margin-bottom: 45px;
            position: relative;
            z-index: 1;
            font-size: 1.25rem;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .author-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background-color: rgba(26,54,93,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: var(--primary);
        }
        .author-info h4 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 0 0 12px 0;
        }
        .author-info p {
            font-size: 1.15rem;
            color: #4a5568;
            margin: 0;
            text-align: left;
        }
        .download-container {
            background: linear-gradient(135deg, var(--primary), #2d5283);
            border-radius: var(--border-radius);
            padding: 100px;
            text-align: center;
            color: white;
            margin: 100px 0;
            box-shadow: 0 20px 50px rgba(26,54,93,0.4);
        }
        .download-container h3 {
            font-size: 3.3rem;
            margin-bottom: 45px;
            color: white;
        }
        .download-container p {
            font-size: 1.55rem;
            max-width: 900px;
            margin: 0 auto 65px;
            color: rgba(255,255,255,0.95);
            text-align: center;
        }
        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 45px;
            flex-wrap: wrap;
        }
        .download-btn {
            display: flex;
            align-items: center;
            gap: 22px;
            padding: 28px 55px;
            border-radius: 45px;
            background-color: white;
            color: var(--primary);
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(255,255,255,0.35);
        }
        .download-btn:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255,255,255,0.45);
            background-color: #f8fafc;
        }
        .download-btn svg {
            width: 40px;
            height: 40px;
        }
        .download-note {
            margin-top: 50px;
            font-size: 1.2rem;
            color: rgba(255,255,255,0.88);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 130px 0 80px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 90px;
            margin-bottom: 100px;
        }
        .footer-col h3 {
            font-size: 2.1rem;
            margin-bottom: 45px;
            color: var(--accent);
            padding-bottom: 25px;
            border-bottom: 5px solid var(--secondary);
            display: inline-block;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 30px;
        }
        .footer-col a {
            color: #cbd5e0;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
            display: inline-block;
            padding: 8px 0;
        }
        .footer-col a:hover {
            color: var(--accent);
            padding-left: 18px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 45px;
        }
        .tag {
            background-color: #1e293b;
            padding: 16px 32px;
            border-radius: 45px;
            font-size: 1.15rem;
            transition: var(--transition);
            color: #cbd5e0;
            text-decoration: none;
        }
        .tag:hover {
            background-color: var(--primary);
            color: white;
            padding-left: 32px;
            transform: translateY(-5px);
        }
        .recommendation {
            background-color: rgba(229,62,62,0.15);
            padding: 45px;
            border-radius: var(--border-radius);
            margin-top: 45px;
            border-left: 10px solid var(--secondary);
        }
        .recommendation h4 {
            color: var(--accent);
            margin-bottom: 35px;
            font-size: 1.9rem;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .recommendation h4::before {
            content: none;
        }
        .recommendation p {
            color: #e2e8f0;
            margin-bottom: 35px;
            font-size: 1.25rem;
            text-align: left;
        }
        .recommendation p:last-child {
            margin-bottom: 0;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 80px;
            border-top: 1px solid #2d3748;
            font-size: 1.2rem;
            color: #a0aec0;
            line-height: 2.8;
        }
        .copyright-links {
            margin: 35px 0;
        }
        .copyright-links a {
            color: #a0aec0;
            text-decoration: none;
            margin: 0 30px;
            transition: var(--transition);
        }
        .copyright-links a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 4.5rem;
            }
            .section-title {
                font-size: 3.1rem;
            }
            .content-card {
                padding: 60px;
            }
        }
        @media (max-width: 992px) {
            nav ul {
                gap: 40px;
            }
            .btn {
                padding: 14px 32px;
                font-size: 1.1rem;
            }
            .hero {
                padding: 170px 0;
            }
            .hero h1 {
                font-size: 4rem;
            }
            .hero p {
                font-size: 1.6rem;
            }
            main {
                padding: 120px 0;
            }
            .section {
                margin-bottom: 150px;
            }
            .features-grid {
                gap: 45px;
            }
        }
        @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: 45px;
                box-shadow: 0 20px 35px rgba(0,0,0,0.3);
                z-index: 999;
                flex-direction: column;
            }
            nav.active {
                display: flex;
            }
            nav ul {
                flex-direction: column;
                gap: 40px;
                margin-right: 0;
                margin-bottom: 40px;
                width: 100%;
            }
            nav ul li {
                width: 100%;
            }
            nav a {
                display: block;
                width: 100%;
                padding: 20px 0;
                font-size: 1.25rem;
            }
            .btn-group {
                display: flex;
                width: 100%;
                gap: 30px;
            }
            .btn {
                width: 50%;
                margin-right: 0;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 150px 0;
            }
            .hero h1 {
                font-size: 3.5rem;
            }
            .hero p {
                font-size: 1.5rem;
            }
            .section-title {
                font-size: 2.8rem;
            }
            .content-card {
                padding: 50px 40px;
            }
            .content-card h3 {
                font-size: 2.3rem;
            }
            .download-container {
                padding: 85px 45px;
            }
            .download-container h3 {
                font-size: 2.9rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2rem;
            }
            .logo .edition {
                font-size: 1.05rem;
                padding: 6px 14px;
            }
            .hero {
                padding: 130px 0;
            }
            .hero h1 {
                font-size: 3rem;
                line-height: 1.45;
            }
            .hero .btn-group {
                flex-direction: column;
                gap: 30px;
            }
            .hero .btn {
                width: 100%;
            }
            .section-title {
                font-size: 2.5rem;
            }
            .content-card h3 {
                font-size: 2.1rem;
            }
            .content-card h4 {
                font-size: 1.75rem;
            }
            .tabs {
                flex-direction: column;
                border-bottom: none;
            }
            .tab {
                border-bottom: 1px solid #dee2e6;
                border-radius: 0;
                text-align: left;
                padding: 20px 30px;
            }
            .tab.active {
                border-radius: 0;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .download-buttons {
                flex-direction: column;
                gap: 30px;
            }
            .download-btn {
                width: 100%;
                justify-content: center;
                padding: 25px 40px;
            }
            .footer-content {
                gap: 70px;
            }
            .copyright-links a {
                display: block;
                margin: 25px 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: 90px;
            height: 90px;
            border: 12px solid rgba(26,54,93,0.18);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1.2s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
