* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #0f4c81;
            --secondary: #ff7a00;
            --dark: #121212;
            --light: #f9f9f9;
            --accent: #ffd700;
            --gray: #666666;
            --light-gray: #f0f0f0;
            --success: #2ecc71;
            --danger: #e74c3c;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.9;
            font-size: 1rem;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #0a3d62);
            color: var(--light);
            padding: 18px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 9999;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .logo span {
            color: var(--light);
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        .nav-links li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 6px 0;
            position: relative;
            font-size: 1.05rem;
        }
        .nav-links li a:hover {
            color: var(--accent);
        }
        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .nav-links li a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            text-align: center;
        }
        .btn-login {
            background-color: var(--secondary);
            color: white;
            margin-right: 12px;
        }
        .btn-login:hover {
            background-color: #e06c00;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255,122,0,0.3);
        }
        .btn-download {
            background-color: var(--accent);
            color: var(--dark);
        }
        .btn-download:hover {
            background-color: #e6c800;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255,215,0,0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light);
        }
        .hero {
            background: url('https://host.com/images/typhoon-torrent-hero.jpg') center/cover no-repeat;
            padding: 160px 0;
            text-align: center;
            color: var(--light);
            position: relative;
            margin-bottom: 80px;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 25px;
            color: var(--accent);
            text-shadow: 0 3px 15px rgba(0,0,0,0.6);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            line-height: 1.9;
            font-weight: 300;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        main {
            padding: 40px 0 100px;
        }
        .wiki-container {
            background-color: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 60px;
            margin-bottom: 60px;
        }
        .section {
            margin-bottom: 80px;
        }
        .section:last-child {
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 40px;
            text-align: center;
            font-weight: 800;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin: 60px 0 30px;
            position: relative;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-gray);
        }
        h3 {
            font-size: 1.6rem;
            color: #0a3d62;
            margin: 40px 0 20px;
            position: relative;
            padding-left: 20px;
        }
        h3::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--secondary);
        }
        h4 {
            font-size: 1.3rem;
            color: var(--dark);
            margin: 30px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.08rem;
            color: var(--dark);
            text-align: justify;
        }
        strong {
            color: var(--primary);
            font-weight: 600;
        }
        em {
            color: var(--secondary);
            font-style: italic;
        }
        ul {
            margin: 25px 0 35px 40px;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: var(--dark);
        }
        .feature-list {
            list-style: none;
            margin: 30px 0 40px 0;
        }
        .feature-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            padding-left: 10px;
        }
        .feature-list li::before {
            content: '🌪️';
            margin-right: 15px;
            color: var(--secondary);
            font-size: 1.3rem;
        }
        .highlight-box {
            background-color: #f8f9fa;
            border-left: 4px solid var(--primary);
            padding: 25px;
            margin: 40px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
            font-size: 1.1rem;
            color: var(--dark);
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background-color: #f0f7ff;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .stat-card h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        .stat-card .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 15px;
        }
        .image-caption {
            font-size: 0.95rem;
            color: var(--gray);
            text-align: center;
            margin-top: -10px;
        }
        .timeline {
            position: relative;
            margin: 50px 0;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: var(--primary);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            top: 5px;
            left: -34px;
            width: 14px;
            height: 14px;
            background-color: var(--secondary);
            border-radius: 50%;
            border: 3px solid var(--primary);
        }
        .timeline-date {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            display: block;
            font-size: 1.1rem;
        }
        .timeline-content {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 35px;
            margin: 40px 0 60px;
        }
        .character-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        .character-card:hover {
            transform: translateY(-8px);
        }
        .character-image {
            height: 320px;
            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.05);
        }
        .character-info {
            padding: 25px;
        }
        .character-info h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 8px;
            padding-left: 0;
        }
        .character-info h3::before {
            display: none;
        }
        .character-role {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
            font-size: 1.1rem;
        }
        .character-info p {
            color: var(--gray);
            font-size: 1.02rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        .mode-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .mode-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--primary);
        }
        .mode-card h3 {
            margin-top: 0;
            padding-left: 0;
        }
        .mode-card h3::before {
            display: none;
        }
        .mode-features {
            margin-left: 25px;
            margin-top: 15px;
        }
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            border-bottom: 1px solid var(--light-gray);
            padding-bottom: 15px;
        }
        .review-source {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.1rem;
        }
        .review-rating {
            color: var(--accent);
            font-size: 1.3rem;
        }
        .review-text {
            color: var(--dark);
            line-height: 1.8;
            font-size: 1.03rem;
        }
        .impact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 40px 0;
        }
        .impact-list {
            list-style: none;
            margin: 0;
        }
        .impact-list li {
            margin-bottom: 25px;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            display: flex;
            align-items: flex-start;
        }
        .impact-list li::before {
            content: '🌟';
            margin-right: 15px;
            font-size: 1.3rem;
        }
        .tech-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
        }
        .tech-table th, .tech-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid var(--light-gray);
        }
        .tech-table th {
            background-color: #f0f7ff;
            color: var(--primary);
            font-weight: 600;
            font-size: 1.05rem;
        }
        .tech-table td {
            font-size: 1.03rem;
            color: var(--dark);
        }
        .tech-table tr:last-child td {
            border-bottom: none;
        }
        .update-timeline {
            margin: 40px 0;
        }
        .update-item {
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--light-gray);
        }
        .update-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .update-date {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 10px;
            display: block;
        }
        .trivia-list {
            list-style: none;
            margin: 30px 0;
        }
        .trivia-list li {
            margin-bottom: 20px;
            padding: 15px;
            background-color: #fafafa;
            border-radius: 8px;
        }
        .trivia-list li::before {
            content: 'ℹ️';
            margin-right: 10px;
            color: var(--primary);
        }
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 80px 0 40px;
            margin-top: 80px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 30px;
            color: var(--accent);
            position: relative;
            padding-left: 0;
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 10px;
        }
        .footer-column h3::before {
            display: none;
        }
        .footer-links {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
            font-size: 1.02rem;
        }
        .footer-links li a:hover {
            color: var(--accent);
            padding-left: 8px;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .tag {
            background-color: rgba(255,255,255,0.1);
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 0.95rem;
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--secondary);
            color: white;
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 10px;
            margin-top: 20px;
        }
        .recommendation h4 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        .recommendation p {
            color: #e2e8f0;
            margin-bottom: 0;
            text-align: left;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #94a3b8;
            font-size: 1rem;
            line-height: 1.8;
        }
        .copyright a {
            color: var(--accent);
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        @media (max-width: 1200px) {
            .impact-grid {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.2rem;
            }
            .wiki-container {
                padding: 40px;
            }
            .character-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .mode-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                padding: 30px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li a {
                font-size: 1.1rem;
            }
            .hamburger {
                display: block;
            }
            .btn {
                padding: 10px 20px;
                font-size: 1rem;
            }
            .hero {
                padding: 120px 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.15rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .wiki-container {
                padding: 30px 20px;
            }
            .character-grid {
                grid-template-columns: 1fr;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .header-content {
                flex-wrap: wrap;
            }
            .logo {
                font-size: 1.7rem;
            }
            .hero {
                padding: 100px 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            .btn-login, .btn-download {
                width: 100%;
                margin-right: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            p {
                font-size: 1.02rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .highlight-box {
                padding: 20px 15px;
            }
            .timeline {
                padding-left: 20px;
            }
            .timeline-item::before {
                left: -24px;
            }
            .update-item {
                padding-bottom: 30px;
            }
        }
