* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #0F4C81;
            --secondary: #E63946;
            --accent: #2A9D8F;
            --dark: #1D3557;
            --light: #F8F9FA;
            --gray: #E9ECEF;
            --text: #212529;
            --success: #27AE60;
            --warning: #F7B32B;
            --info: #3498DB;
            --danger: #E74C3C;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.8;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 30px;
        }
        header {
            background-color: white;
            box-shadow: 0 4px 18px rgba(0,0,0,0.12);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        header.scrolled {
            box-shadow: 0 6px 24px rgba(0,0,0,0.18);
            padding: 12px 0;
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
        }
        .logo span {
            color: var(--secondary);
            margin: 0 6px;
        }
        .logo i {
            margin-right: 10px;
            font-size: 1.8rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding: 6px 0;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .btn {
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: var(--success);
            color: white;
            margin-right: 15px;
            box-shadow: 0 4px 12px rgba(39, 174, 96, 0.25);
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(39, 174, 96, 0.35);
        }
        .btn-login {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(15, 76, 129, 0.25);
        }
        .btn-login:hover {
            background-color: #0A3D62;
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(15, 76, 129, 0.35);
        }
        .hamburger {
            display: none;
            font-size: 2.1rem;
            cursor: pointer;
            color: var(--dark);
            transition: color 0.3s ease;
        }
        .hamburger:hover {
            color: var(--primary);
        }
        .hero {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 140px 0;
            text-align: center;
            border-radius: 0 0 40px 40px;
            margin-bottom: 90px;
            position: relative;
            overflow: hidden;
        }
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://host.com/images/valiant-vishwa-legendary-duel-hero-pattern.png');
            background-size: 90px;
            opacity: 0.12;
            animation: patternMove 35s linear infinite;
        }
        @keyframes patternMove {
            0% { background-position: 0 0; }
            100% { background-position: 180px 180px; }
        }
        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 45px;
            text-shadow: 0 4px 12px rgba(0,0,0,0.4);
            position: relative;
            line-height: 1.4;
            font-family: 'Georgia', serif;
        }
        .hero p {
            font-size: 1.5rem;
            max-width: 1150px;
            margin: 0 auto 65px;
            opacity: 0.97;
            position: relative;
            line-height: 1.9;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            position: relative;
        }
        .hero-tagline {
            font-style: italic;
            font-size: 1.3rem;
            margin-top: 45px;
            opacity: 0.92;
            font-weight: 400;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 50px;
            margin-bottom: 120px;
        }
        .content-section {
            background: white;
            padding: 65px;
            border-radius: 25px;
            box-shadow: 0 6px 25px rgba(0,0,0,0.08);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .sidebar-card {
            background: white;
            padding: 35px;
            border-radius: 25px;
            box-shadow: 0 6px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .sidebar-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.13);
        }
        .sidebar-card h3 {
            font-size: 1.6rem;
            margin-top: 0;
            margin-bottom: 25px;
            color: var(--primary);
            padding-bottom: 15px;
            border-bottom: 2px solid var(--gray);
        }
        .sidebar-stats {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .sidebar-stat {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid var(--gray);
        }
        .sidebar-stat span:first-child {
            font-weight: 600;
            color: var(--text);
        }
        .sidebar-stat span:last-child {
            color: var(--primary);
            font-weight: 800;
            font-size: 1.1rem;
        }
        .sidebar-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        .sidebar-download {
            background-color: var(--light);
            border-radius: 20px;
            padding: 30px;
            margin-top: 25px;
            text-align: center;
            border: 1px solid var(--gray);
        }
        .sidebar-download .btn {
            width: 100%;
            margin-right: 0;
            margin-bottom: 20px;
        }
        .sidebar-review {
            padding: 25px;
            background-color: #FAFAFA;
            border-radius: 16px;
            margin-bottom: 25px;
            border-left: 5px solid var(--secondary);
        }
        .reviewer {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }
        .reviewer img {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary);
        }
        .reviewer-info {
            flex: 1;
        }
        .reviewer-name {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--dark);
        }
        .reviewer-rating {
            color: var(--secondary);
            font-size: 1.02rem;
        }
        h2 {
            color: var(--dark);
            font-size: 2.7rem;
            margin-bottom: 45px;
            padding-bottom: 25px;
            border-bottom: 4px solid var(--gray);
            position: relative;
            line-height: 1.5;
            font-family: 'Georgia', serif;
        }
        h2:after {
            content: '';
            position: absolute;
            width: 140px;
            height: 4px;
            bottom: -4px;
            left: 0;
            background-color: var(--secondary);
        }
        h3 {
            color: var(--primary);
            font-size: 2rem;
            margin: 65px 0 35px;
            position: relative;
            padding-left: 35px;
            line-height: 1.6;
            font-family: 'Georgia', serif;
        }
        h3:before {
            content: '⚔️';
            position: absolute;
            left: 0;
            top: 5px;
            font-size: 1.7rem;
        }
        h4 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 40px 0 25px;
            font-weight: 700;
            line-height: 1.6;
            color: var(--primary);
        }
        p {
            margin-bottom: 35px;
            text-align: justify;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        strong {
            color: var(--primary);
            font-weight: 800;
        }
        em {
            color: var(--secondary);
            font-style: italic;
            font-weight: 600;
        }
        .image-container {
            margin: 65px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0,0,0,0.16);
            position: relative;
            transition: transform 0.4s ease;
        }
        .image-container:hover {
            transform: translateY(-8px);
        }
        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s ease;
        }
        .image-container:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0,0,0,0.82);
            color: white;
            padding: 20px 25px;
            font-size: 1.15rem;
            text-align: center;
            font-weight: 400;
        }
        .feature-list {
            list-style: none;
            margin: 45px 0 55px;
        }
        .feature-list li {
            margin-bottom: 30px;
            padding-left: 45px;
            position: relative;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        .feature-list li:before {
            content: "🛡️";
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--primary);
            font-size: 1.4rem;
        }
        .table-container {
            overflow-x: auto;
            margin: 55px 0;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.09);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        th, td {
            padding: 22px 30px;
            text-align: left;
            border-bottom: 1px solid var(--gray);
        }
        th {
            background-color: var(--light);
            font-weight: 800;
            color: var(--dark);
            font-size: 1.15rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        tr:hover {
            background-color: #F9FBFC;
            transform: scale(1.005);
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .quote {
            font-style: italic;
            border-left: 7px solid var(--secondary);
            padding: 35px 38px;
            margin: 55px 0;
            background-color: #FFF8E1;
            border-radius: 0 20px 20px 0;
            font-size: 1.3rem;
            position: relative;
            line-height: 2.1;
        }
        .quote:after {
            content: '"';
            position: absolute;
            bottom: -45px;
            right: 45px;
            font-size: 9rem;
            color: var(--secondary);
            opacity: 0.2;
            line-height: 0;
        }
        .quote-author {
            display: block;
            margin-top: 28px;
            font-weight: 800;
            color: var(--dark);
            font-style: normal;
            font-size: 1.2rem;
        }
        .highlight {
            background-color: #FFE4B5;
            padding: 9px 18px;
            border-radius: 8px;
            font-weight: 800;
            color: var(--primary);
            border: 1px solid #FFD700;
        }
        .stat-box {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 35px;
            margin: 55px 0;
        }
        .stat-item {
            flex: 1;
            min-width: 220px;
            background-color: var(--light);
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.09);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.14);
        }
        .stat-value {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        .stat-label {
            font-size: 1.15rem;
            color: var(--text);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .tabs {
            display: flex;
            border-bottom: 3px solid var(--gray);
            margin-bottom: 45px;
            overflow-x: auto;
            padding-bottom: 15px;
        }
        .tab {
            padding: 20px 38px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text);
        }
        .tab.active {
            border-bottom-color: var(--secondary);
            color: var(--primary);
            font-weight: 800;
        }
        .tab:hover:not(.active) {
            border-bottom-color: var(--gray);
            color: var(--primary);
            background-color: #FFF8E1;
            border-radius: 10px 10px 0 0;
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.6s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tab-content.active {
            display: block;
        }
        .progress-container {
            width: 100%;
            height: 9px;
            background: transparent;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1001;
        }
        .progress-bar {
            height: 9px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            width: 0%;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 110px 0 70px;
            position: relative;
        }
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 65px;
            margin-bottom: 90px;
        }
        .footer-column h3 {
            color: white;
            font-size: 1.6rem;
            margin: 0 0 38px;
            padding-left: 0;
            border-bottom: 2px solid rgba(255,255,255,0.18);
            padding-bottom: 20px;
        }
        .footer-column h3:before {
            display: none;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 22px;
        }
        .footer-links a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.15rem;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 10px;
        }
        .game-categories, .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 28px;
        }
        .category-tag {
            background-color: rgba(255,255,255,0.12);
            padding: 12px 25px;
            border-radius: 35px;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
        }
        .category-tag:hover {
            background-color: var(--primary);
            transform: translateY(-4px);
        }
        .recommendation {
            background-color: rgba(15, 76, 129, 0.1);
            border-left: 7px solid var(--secondary);
            padding: 38px;
            margin: 55px 0;
            border-radius: 0 20px 20px 0;
        }
        .recommendation h3 {
            color: var(--secondary);
            margin-top: 0;
            padding-left: 0;
            font-size: 1.7rem;
        }
        .recommendation h3:before {
            display: none;
        }
        .copyright {
            text-align: center;
            padding-top: 55px;
            border-top: 1px solid rgba(255,255,255,0.18);
            font-size: 1.15rem;
            color: rgba(255,255,255,0.62);
            line-height: 2.1;
        }
        .social-links {
            display: flex;
            gap: 28px;
            margin-top: 35px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.12);
            color: white;
            transition: all 0.3s ease;
            font-size: 1.5rem;
        }
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-6px);
        }
        .badge {
            display: inline-block;
            padding: 11px 20px;
            border-radius: 30px;
            font-size: 1.05rem;
            font-weight: 700;
            margin-right: 18px;
            margin-bottom: 18px;
        }
        .badge-primary {
            background-color: #FFE4B5;
            color: var(--primary);
            border: 1px solid #FFD700;
        }
        .badge-secondary {
            background-color: #F0FFF0;
            color: var(--accent);
            border: 1px solid #90EE90;
        }
        .badge-accent {
            background-color: #E6E6FA;
            color: var(--info);
            border: 1px solid #D8BFD8;
        }
        .desi-term {
            font-weight: 700;
            color: var(--accent);
            font-style: italic;
        }
        .myth-term {
            font-weight: 800;
            color: var(--primary);
            text-decoration: underline dotted;
        }
        .warrior-term {
            font-weight: 800;
            color: var(--secondary);
            text-decoration: underline wavy;
        }
        @media (max-width: 1399px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero h1 {
                font-size: 3.8rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background: white;
                padding: 45px;
                box-shadow: 0 15px 22px rgba(0,0,0,0.18);
                border-radius: 0 0 25px 25px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin-bottom: 28px;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 110px 0;
            }
            .hero h1 {
                font-size: 3rem;
            }
            .hero p {
                font-size: 1.3rem;
            }
            h2 {
                font-size: 2.3rem;
            }
            h3 {
                font-size: 1.75rem;
            }
            .content-section {
                padding: 45px;
            }
            .sidebar-card {
                padding: 35px;
            }
            .btn {
                padding: 13px 28px;
                font-size: 1.05rem;
            }
            .stat-box {
                gap: 25px;
            }
            .stat-item {
                min-width: 180px;
                padding: 28px;
            }
            .stat-value {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            .hero {
                padding: 90px 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 22px;
            }
            .btn-download {
                margin-right: 0;
            }
            .stat-box {
                gap: 22px;
            }
            .stat-item {
                min-width: 100%;
                padding: 28px;
            }
            .stat-value {
                font-size: 3rem;
            }
            .tabs {
                padding-bottom: 22px;
            }
            .tab {
                padding: 15px 25px;
                font-size: 1.05rem;
            }
            .copyright {
                font-size: 1.05rem;
            }
            .image-container {
                margin: 45px 0;
            }
            .quote {
                padding: 28px;
                font-size: 1.2rem;
            }
        }
        ::-webkit-scrollbar {
            width: 12px;
        }
        ::-webkit-scrollbar-track {
            background: #F5F5F5;
        }
        ::-webkit-scrollbar-thumb {
            background: #4A6FA5;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
        .skip-link {
            position: absolute;
            top: -60px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 12px;
            z-index: 100;
            font-size: 1.15rem;
        }
        .skip-link:focus {
            top: 0;
        }
        .section-divider {
            height: 4px;
            width: 100%;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            margin: 80px 0;
            opacity: 0.6;
        }
        .cta-box {
            background: linear-gradient(135deg, #FFE4B5 0%, #F0FFF0 100%);
            border-radius: 22px;
            padding: 45px;
            margin: 65px 0;
            text-align: center;
            border: 1px solid #FFD700;
        }
        .cta-box h3 {
            color: var(--dark);
            margin-top: 0;
            padding-left: 0;
        }
        .cta-box h3:before {
            display: none;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 28px;
            margin-top: 35px;
            flex-wrap: wrap;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 35px;
            margin: 65px 0;
        }
        .character-card {
            background: var(--light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .character-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }
        .character-image {
            height: 220px;
            overflow: hidden;
        }
        .character-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .character-card:hover .character-image img {
            transform: scale(1.08);
        }
        .character-info {
            padding: 30px;
        }
        .character-name {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 800;
        }
        .character-origin {
            color: var(--text);
            font-size: 1.05rem;
            margin-bottom: 20px;
            font-style: italic;
        }
        .character-abilities {
            margin-top: 20px;
        }
        .ability-tag {
            display: inline-block;
            background: var(--gray);
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.95rem;
            margin-right: 8px;
            margin-bottom: 8px;
            font-weight: 600;
        }
