        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            line-height: 1.8;
            color: #2D3748;
            background-color: #F5F7FA;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .navbar {
            background-color: #1A5F7A;
            padding: 16px 30px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 15px rgba(0,0,0,0.12);
            transition: background-color 0.3s ease, padding 0.3s ease;
        }
        .navbar.scrolled {
            background-color: #0F4C6E;
            padding: 12px 30px;
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #FFD166;
            text-decoration: none;
            letter-spacing: 0.3px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #FFFFFF;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: #E8F4F8;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            color: #FFD166;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FFD166;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 12px 26px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #06D6A0;
            color: white;
        }
        .btn-download:hover {
            background-color: #059669;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(6, 214, 160, 0.3);
            color: white;
        }
        .btn-login {
            background-color: #FF6B6B;
            color: white;
            margin-left: 15px;
        }
        .btn-login:hover {
            background-color: #E55353;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 107, 107, 0.3);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.9rem;
            color: white;
            cursor: pointer;
            z-index: 10000;
        }
        .hero {
            background: linear-gradient(rgba(26, 95, 122, 0.9), rgba(26, 95, 122, 0.95)), url('https://via.placeholder.com/1920x1080?text=Valiant+Vishwa+Celestial+Siege+Divine+Battle') center/cover no-repeat;
            padding: 120px 30px;
            text-align: center;
            color: white;
            margin-bottom: 70px;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 30px;
            color: #FFD166;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 1200px;
            margin: 0 auto 45px;
            color: #E0F2FE;
            line-height: 1.8;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 70px;
            flex-wrap: wrap;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #FFD166;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #E0F2FE;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }
        .section {
            margin-bottom: 90px;
            background-color: white;
            border-radius: 15px;
            padding: 60px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            border: 1px solid #E8F4F8;
        }
        .section-title {
            font-size: 2.5rem;
            color: #1A5F7A;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 4px solid #06D6A0;
            line-height: 1.2;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .section-title::before {
            content: '🌌';
            font-size: 2.8rem;
        }
        .section-subtitle {
            font-size: 1.8rem;
            color: #0F4C6E;
            margin: 50px 0 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .section-subtitle::before {
            content: '•';
            color: #06D6A0;
            font-size: 2.2rem;
            line-height: 1;
        }
        .para {
            margin-bottom: 35px;
            font-size: 1.15rem;
            color: #4A5568;
            line-height: 1.9;
            text-align: justify;
        }
        .para:last-child {
            margin-bottom: 0;
        }
        .highlight {
            font-weight: 700;
            color: #1A5F7A;
        }
        .highlight-alt {
            font-weight: 700;
            color: #FF6B6B;
        }
        .highlight-celestial {
            font-weight: 700;
            color: #06D6A0;
            text-decoration: underline dotted;
        }
        .list {
            margin-left: 40px;
            margin-bottom: 40px;
        }
        .list li {
            margin-bottom: 22px;
            font-size: 1.15rem;
            color: #4A5568;
            line-height: 1.8;
            position: relative;
            padding-left: 20px;
        }
        .list li::before {
            content: '→';
            position: absolute;
            left: -25px;
            color: #06D6A0;
            font-weight: 700;
            font-size: 1.3rem;
        }
        .list li:last-child {
            margin-bottom: 0;
        }
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
            gap: 40px;
            margin: 50px 0;
        }
        .card {
            background-color: #F8FBFF;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 16px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            border: 1px solid #E8F4F8;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: #06D6A0;
        }
        .card-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            border-bottom: 3px solid #06D6A0;
        }
        .card-content {
            padding: 35px;
        }
        .card-title {
            font-size: 1.6rem;
            color: #1A5F7A;
            margin-bottom: 22px;
            line-height: 1.3;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background-color: #E8F4F8;
            margin-left: 10px;
        }
        .card-desc {
            font-size: 1.1rem;
            color: #4A5568;
            line-height: 1.8;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .feature-card {
            background-color: #F0FFF4;
            padding: 32px;
            border-radius: 12px;
            border-left: 6px solid #06D6A0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-card:hover {
            transform: translateX(8px);
            box-shadow: 0 6px 16px rgba(6, 214, 160, 0.1);
        }
        .feature-title {
            font-size: 1.4rem;
            color: #1A5F7A;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .feature-icon {
            font-size: 1.7rem;
            color: #06D6A0;
        }
        .feature-desc {
            font-size: 1.05rem;
            color: #4A5568;
            line-height: 1.8;
        }
        .lore-timeline {
            position: relative;
            margin: 70px 0;
            padding-left: 50px;
        }
        .lore-timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 5px;
            background-color: #06D6A0;
            border-radius: 3px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            padding-left: 35px;
        }
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -41px;
            top: 10px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #1A5F7A;
            border: 5px solid #F0FFF4;
            box-shadow: 0 0 0 5px rgba(6, 214, 160, 0.2);
        }
        .timeline-title {
            font-size: 1.6rem;
            color: #1A5F7A;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .timeline-desc {
            font-size: 1.1rem;
            color: #4A5568;
            line-height: 1.8;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 45px;
            margin: 60px 0;
        }
        .character-card {
            background-color: #F8FBFF;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.07);
            transition: all 0.4s ease;
            border: 1px solid #E8F4F8;
        }
        .character-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 18px 36px rgba(0,0,0,0.12);
            border-color: #06D6A0;
        }
        .character-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-bottom: 4px solid #06D6A0;
        }
        .character-info {
            padding: 35px;
        }
        .character-name {
            font-size: 1.7rem;
            color: #1A5F7A;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .character-class {
            font-size: 1.2rem;
            color: #FF6B6B;
            margin-bottom: 25px;
            font-style: italic;
            font-weight: 500;
            display: inline-block;
            padding: 5px 12px;
            background-color: #FFF5F5;
            border-radius: 20px;
        }
        .character-desc {
            font-size: 1.1rem;
            color: #4A5568;
            line-height: 1.8;
        }
        .character-abilities {
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #E8F4F8;
        }
        .ability-title {
            font-size: 1.2rem;
            color: #0F4C6E;
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .ability-list {
            margin-left: 30px;
        }
        .ability-list li {
            margin-bottom: 12px;
            font-size: 1.05rem;
            color: #4A5568;
            line-height: 1.7;
        }
        .strategy-tip {
            background-color: #F5FFF8;
            border-radius: 12px;
            padding: 35px;
            margin-bottom: 35px;
            border-left: 7px solid #06D6A0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        .strategy-tip:hover {
            transform: translateX(7px);
            box-shadow: 0 6px 18px rgba(6, 214, 160, 0.1);
        }
        .strategy-tip::before {
            content: '💡';
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2rem;
            opacity: 0.3;
        }
        .tip-title {
            font-size: 1.4rem;
            color: #059669;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .tip-icon {
            font-size: 1.8rem;
        }
        .tip-desc {
            font-size: 1.1rem;
            color: #4A5568;
            line-height: 1.8;
        }
        .tip-example {
            margin-top: 20px;
            padding: 20px;
            background-color: #FFFFFF;
            border-radius: 8px;
            border: 1px solid #E8F4F8;
            font-size: 1.05rem;
            color: #4A5568;
            font-style: italic;
            line-height: 1.7;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 45px;
            margin: 60px 0;
        }
        .review-card {
            background-color: #F8FBFF;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.07);
            border: 1px solid #E8F4F8;
            position: relative;
        }
        .review-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 4.5rem;
            color: #E8F4F8;
            font-family: Georgia, serif;
            line-height: 1;
        }
        .reviewer-name {
            font-size: 1.3rem;
            color: #1A5F7A;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .reviewer-details {
            font-size: 1rem;
            color: #718096;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .reviewer-badge {
            background-color: #06D6A0;
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .review-content {
            font-size: 1.1rem;
            color: #4A5568;
            line-height: 1.8;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        .review-rating {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .star {
            color: #FFD166;
            font-size: 1.3rem;
        }
        .rating-value {
            font-size: 1.2rem;
            color: #1A5F7A;
            font-weight: 600;
            margin-left: 15px;
        }
        .culture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin: 55px 0;
        }
        .culture-card {
            background-color: #F0FFF4;
            border-radius: 12px;
            padding: 35px;
            border-top: 5px solid #06D6A0;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .culture-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(6, 214, 160, 0.1);
        }
        .culture-title {
            font-size: 1.5rem;
            color: #1A5F7A;
            margin-bottom: 22px;
        }
        .culture-icon {
            font-size: 3.5rem;
            color: #06D6A0;
            margin-bottom: 25px;
        }
        .culture-desc {
            font-size: 1.1rem;
            color: #4A5568;
            line-height: 1.8;
        }
        .recommendation {
            background: linear-gradient(135deg, #1A5F7A 0%, #0F4C6E 100%);
            border-radius: 15px;
            padding: 70px;
            margin-bottom: 70px;
            text-align: center;
            color: white;
            box-shadow: 0 12px 30px rgba(0,0,0,0.18);
        }
        .rec-title {
            font-size: 2.4rem;
            margin-bottom: 30px;
            color: #FFD166;
            line-height: 1.4;
        }
        .rec-desc {
            font-size: 1.3rem;
            max-width: 950px;
            margin: 0 auto 45px;
            line-height: 1.9;
            color: #E0F2FE;
        }
        .rec-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .footer {
            background-color: #1A5F7A;
            color: #E0F2FE;
            padding: 90px 30px 50px;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            margin-bottom: 70px;
        }
        .footer-col h3 {
            font-size: 1.6rem;
            color: #FFD166;
            margin-bottom: 30px;
            padding-bottom: 18px;
            border-bottom: 2px solid #06D6A0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #E0F2FE;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .footer-links a:hover {
            color: #FFD166;
            padding-left: 10px;
        }
        .footer-links a::before {
            content: '→';
            color: #06D6A0;
            font-size: 1.3rem;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        .tag {
            background-color: #0F4C6E;
            padding: 10px 22px;
            border-radius: 30px;
            font-size: 1rem;
            color: #E0F2FE;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #06D6A0;
            color: white;
            transform: translateY(-3px);
        }
        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }
        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #0F4C6E;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background-color: #FFD166;
            color: #1A5F7A;
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #0F4C6E;
            font-size: 1.05rem;
            color: #B2DDFF;
            line-height: 1.9;
        }
        .copyright-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .copyright-links a {
            color: #B2DDFF;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .copyright-links a:hover {
            color: #FFD166;
        }
        .game-categories {
            margin-top: 30px;
        }
        .category-title {
            font-size: 1.1rem;
            color: #FFD166;
            margin-bottom: 15px;
            font-weight: 500;
        }
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .category-link {
            color: #E0F2FE;
            text-decoration: none;
            background-color: #0F4C6E;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .category-link:hover {
            background-color: #06D6A0;
            color: white;
        }
        @media (max-width: 1199px) {
            .section {
                padding: 50px;
            }
            .hero h1 {
                font-size: 3.2rem;
            }
            .section-title {
                font-size: 2.3rem;
            }
            .section-subtitle {
                font-size: 1.7rem;
            }
            .hero-stats {
                gap: 50px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                width: 300px;
                background-color: #1A5F7A;
                padding: 90px 30px 30px;
                gap: 30px;
                box-shadow: -3px 0 20px rgba(0,0,0,0.2);
                z-index: 9999;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links a {
                font-size: 1.15rem;
                padding: 12px 0;
                border-bottom: 1px solid #0F4C6E;
                width: 100%;
            }
            .nav-links a::after {
                display: none;
            }
            .btn-login {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
            }
            .btn-download {
                width: 100%;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 100px 25px;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero p {
                font-size: 1.3rem;
            }
            .hero-stats {
                gap: 40px;
            }
            .section {
                padding: 45px;
                margin-bottom: 70px;
            }
            .section-title {
                font-size: 2.1rem;
                margin-bottom: 35px;
            }
            .section-subtitle {
                font-size: 1.6rem;
                margin: 45px 0 25px;
            }
            .card-container,
            .character-grid,
            .review-container {
                gap: 35px;
            }
        }
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }
            .logo {
                font-size: 1.6rem;
            }
            .hero {
                padding: 90px 20px;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
            .hero-buttons {
                gap: 20px;
            }
            .btn {
                padding: 12px 22px;
                font-size: 1rem;
                width: 100%;
                max-width: 320px;
            }
            .container {
                padding: 0 20px;
            }
            .section {
                padding: 35px 25px;
            }
            .section-title {
                font-size: 1.9rem;
                padding-bottom: 18px;
            }
            .section-subtitle {
                font-size: 1.5rem;
            }
            .para {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }
            .list {
                margin-left: 30px;
            }
            .card-img,
            .character-img {
                height: 200px;
            }
            .card-content,
            .character-info {
                padding: 30px;
            }
            .recommendation {
                padding: 50px 25px;
            }
            .rec-title {
                font-size: 2rem;
            }
            .rec-desc {
                font-size: 1.2rem;
            }
            .footer {
                padding: 70px 20px 40px;
            }
            .footer-container {
                gap: 40px;
                margin-bottom: 50px;
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.1rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .hero-stats {
                gap: 30px;
                flex-direction: column;
                align-items: center;
            }
            .stat-number {
                font-size: 2rem;
            }
            .section {
                padding: 30px 20px;
                margin-bottom: 50px;
            }
            .section-title {
                font-size: 1.7rem;
                margin-bottom: 30px;
            }
            .section-subtitle {
                font-size: 1.4rem;
                margin: 40px 0 20px;
            }
            .card-container,
            .feature-grid,
            .character-grid,
            .review-container,
            .culture-grid {
                grid-template-columns: 1fr;
            }
            .card-img,
            .character-img {
                height: 220px;
            }
            .review-card {
                padding: 35px 25px;
            }
            .copyright {
                font-size: 1rem;
            }
            .copyright-links {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            .lore-timeline {
                padding-left: 35px;
            }
            .timeline-item {
                padding-left: 25px;
            }
        }
        @media print {
            body {
                background-color: white;
                color: #000;
            }
            .navbar,
            .hero-buttons,
            .btn,
            .footer,
            .recommendation {
                display: none;
            }
            .section {
                box-shadow: none;
                border: none;
                padding: 0;
                margin-bottom: 50px;
            }
            .section-title,
            .section-subtitle {
                color: #000;
                border-bottom: 2px solid #ccc;
            }
            .card,
            .character-card,
            .review-card {
                box-shadow: none;
                border: 1px solid #ccc;
            }
            img {
                max-width: 100%;
                height: auto;
            }
            .highlight,
            .highlight-alt,
            .highlight-celestial {
                color: #000;
                font-weight: bold;
                text-decoration: none;
            }
        }
        img {
            loading: lazy;
        }
        .section {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .section:nth-child(1) { animation-delay: 0.1s; }
        .section:nth-child(2) { animation-delay: 0.2s; }
        .section:nth-child(3) { animation-delay: 0.3s; }
        .section:nth-child(4) { animation-delay: 0.4s; }
        .section:nth-child(5) { animation-delay: 0.5s; }
        .section:nth-child(6) { animation-delay: 0.6s; }
