        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        body {
            line-height: 1.9;
            color: #2c2c2c;
            background-color: #f9f4ea;
            padding-bottom: 80px;
            scroll-behavior: smooth;
            font-size: 16px;
        }
        a {
            text-decoration: none;
            color: #0066cc;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff7a00;
            text-decoration: underline;
        }
        .container {
            width: 94%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        h1, h2, h3, h4, h5, h6 {
            margin-bottom: 1.3rem;
            font-weight: 700;
            line-height: 1.4;
            color: #1a237e;
        }
        h1 {
            font-size: 3rem;
            color: #ff6b00;
            text-align: center;
            margin: 3rem 0 2.5rem;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.15);
            border-bottom: 4px solid #ffd600;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.3rem;
            border-bottom: 3px solid #00c853;
            padding-bottom: 0.8rem;
            margin-top: 4rem;
            color: #0d47a1;
        }
        h3 {
            font-size: 1.8rem;
            color: #d32f2f;
            margin-top: 2.5rem;
            display: flex;
            align-items: center;
            gap: 0.9rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #388e3c;
            margin-top: 2rem;
        }
        h5 {
            font-size: 1.3rem;
            color: #7b1fa2;
            margin-top: 1.8rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            line-height: 1.9;
            text-align: justify;
        }
        .bold {
            font-weight: 700;
            color: #ff6b00;
        }
        .italic {
            font-style: italic;
            color: #6d4c41;
        }
        .highlight {
            background-color: #fff8e1;
            padding: 0.3rem 0.5rem;
            border-radius: 6px;
            border-left: 4px solid #ffca28;
            display: inline-block;
            margin: 0.5rem 0;
        }
        .emoji {
            font-size: 1.3em;
        }
        .card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.09);
            padding: 2.2rem;
            margin: 2.5rem 0;
            border-top: 6px solid #0066cc;
            transition: all 0.4s ease;
        }
        .card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transform: translateY(-3px);
        }
        .intro-card {
            background: linear-gradient(135deg, #fef7fb 0%, #fff3e0 100%);
            border-top: 6px solid #ff6b00;
            text-align: center;
            padding: 3rem;
        }
        .intro-card p {
            max-width: 1000px;
            margin: 0 auto 2.5rem;
            text-align: center;
            font-size: 1.2rem;
        }
        header {
            background-color: #1a237e;
            color: white;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 12px rgba(0,0,0,0.3);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd600;
            letter-spacing: 0.7px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo span {
            color: #ff6b00;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.2rem;
        }
        .nav-links li a {
            color: white;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 0.7rem 0;
            position: relative;
        }
        .nav-links li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #ffd600;
            transition: width 0.3s ease;
        }
        .nav-links li a:hover:after {
            width: 100%;
        }
        .btn {
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1.1rem;
            display: inline-block;
            text-align: center;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #ff6b00;
            color: white;
            margin-right: 1rem;
        }
        .btn-download:hover {
            background-color: #e05a00;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(255,107,0,0.4);
            text-decoration: none;
        }
        .btn-login {
            background-color: #0066cc;
            color: white;
        }
        .btn-login:hover {
            background-color: #004a99;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0,102,204,0.4);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 2.5rem;
            cursor: pointer;
            color: #ffd600;
        }
        .nav-buttons {
            display: flex;
            gap: 1rem;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .feature-item {
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-left: 5px solid #0066cc;
            transition: transform 0.3s ease;
        }
        .feature-item:hover {
            transform: translateY(-5px);
        }
        .feature-item h3 {
            margin-top: 0;
            margin-bottom: 1.2rem;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2.2rem;
            margin: 3rem 0;
        }
        .character-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }
        .character-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .character-img {
            height: 240px;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: #0066cc;
            background-position: center;
            background-size: cover;
        }
        .character-info {
            padding: 1.8rem;
        }
        .character-info h3 {
            margin-bottom: 0.8rem;
            color: #1a237e;
            font-size: 1.7rem;
        }
        .character-role {
            color: #666;
            font-style: italic;
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .character-ability {
            background-color: #e3f2fd;
            padding: 0.8rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 3rem 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .data-table th, .data-table td {
            padding: 1.5rem;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
        }
        .data-table th {
            background-color: #1a237e;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .data-table tr:hover {
            background-color: #f8f9fa;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 4rem auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 7px;
            background-color: #ffd600;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3.5px;
        }
        .timeline-item {
            padding: 15px 45px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 28px;
            height: 28px;
            right: -14px;
            background-color: white;
            border: 5px solid #0066cc;
            top: 20px;
            border-radius: 50%;
            z-index: 1;
        }
        .left {
            left: 0;
        }
        .right {
            left: 50%;
        }
        .left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 28px;
            width: 0;
            z-index: 1;
            right: 35px;
            border: medium solid #0066cc;
            border-width: 12px 0 12px 12px;
            border-color: transparent transparent transparent #0066cc;
        }
        .right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 28px;
            width: 0;
            z-index: 1;
            left: 35px;
            border: medium solid #0066cc;
            border-width: 12px 12px 12px 0;
            border-color: transparent #0066cc transparent transparent;
        }
        .right::after {
            left: -14px;
        }
        .timeline-content {
            padding: 25px;
            background-color: white;
            position: relative;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .faq-container {
            margin: 3rem 0;
        }
        .faq-item {
            margin-bottom: 2rem;
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .faq-question {
            font-weight: 700;
            color: #1a237e;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.2rem;
        }
        .faq-answer {
            font-size: 1.1rem;
            color: #333;
            line-height: 1.8;
        }
        .community-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 3rem 0;
            justify-content: center;
        }
        .community-links a {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 2rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.09);
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .community-links a:hover {
            transform: translateY(-4px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
            text-decoration: none;
            background-color: #f5fafe;
        }
        footer {
            background-color: #1a237e;
            color: white;
            padding: 5rem 0 2.5rem;
            margin-top: 5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }
        .footer-section h3 {
            color: #ffd600;
            margin-bottom: 2rem;
            border-bottom: 3px solid #ff6b00;
            padding-bottom: 1rem;
            font-size: 1.7rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1.2rem;
        }
        .footer-links a {
            color: #e0e0e0;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd600;
            text-decoration: none;
        }
        .recommendation {
            background: #283593;
            padding: 2.5rem;
            border-radius: 12px;
            margin-bottom: 3rem;
            border-left: 6px solid #ffd600;
        }
        .recommendation h3 {
            color: #ff6b00;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        .recommendation p {
            color: #f5f5f5;
            font-size: 1.2rem;
            line-height: 1.9;
        }
        .game-categories, .game-tags {
            margin: 2rem 0;
        }
        .game-categories h4, .game-tags h4 {
            color: #ffd600;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .category-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .category-list a, .tag-list a {
            background: #3949ab;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .category-list a:hover, .tag-list a:hover {
            background: #ff6b00;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid #3949ab;
            color: #b0b0b0;
            font-size: 1.1rem;
            line-height: 2;
        }
        .copyright a {
            color: #ffd600;
        }
        .copyright a:hover {
            color: #ff8c38;
            text-decoration: none;
        }
        @media (max-width: 1200px) {
            .timeline::after {
                left: 35px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 80px;
                padding-right: 30px;
            }
            .timeline-item::before {
                left: 70px;
                border: medium solid #0066cc;
                border-width: 12px 12px 12px 0;
                border-color: transparent #0066cc transparent transparent;
            }
            .left::after, .right::after {
                left: 21px;
            }
            .right {
                left: 0%;
            }
            .left::after {
                right: auto;
            }
        }
        @media (max-width: 992px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 2rem;
                gap: 1.5rem;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-buttons {
                width: 100%;
                display: flex;
                justify-content: space-between;
                margin-top: 2rem;
            }
            .btn {
                width: 48%;
                padding: 0.9rem 0;
                font-size: 1rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.8rem;
                right: 2.5rem;
            }
            h1 {
                font-size: 2.5rem;
                margin: 2.5rem 0;
            }
            h2 {
                font-size: 2rem;
                margin-top: 3.5rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .intro-card {
                padding: 2.5rem 1.5rem;
            }
            .feature-grid, .character-grid {
                gap: 1.8rem;
            }
            .card {
                padding: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            h4 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            .data-table th, .data-table td {
                padding: 1.2rem;
                font-size: 0.95rem;
            }
            .timeline-item {
                padding-left: 65px;
            }
            .timeline::after {
                left: 25px;
            }
            .timeline-item::before {
                left: 60px;
            }
            .community-links a {
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }
        }
        @media (max-width: 576px) {
            .feature-grid, .character-grid {
                grid-template-columns: 1fr;
            }
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                padding: 0.8rem 0;
                font-size: 0.95rem;
            }
            .character-img {
                height: 200px;
                font-size: 4rem;
            }
            .community-links {
                gap: 1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .timeline-item {
                padding-left: 55px;
            }
            .timeline::after {
                left: 15px;
            }
            .timeline-item::before {
                left: 50px;
            }
            .recommendation {
                padding: 2rem 1.5rem;
            }
        }
        img {
            max-width: 100%;
            height: auto;
            object-fit: cover;
            loading: lazy;
            border-radius: 8px;
        }
        :focus-visible {
            outline: 4px solid #ffd600;
            outline-offset: 3px;
        }
        html {
            scroll-behavior: smooth;
        }
        @media print {
            body {
                background-color: white;
                color: black;
            }
            header, footer, .btn, .hamburger {
                display: none;
            }
            .card {
                box-shadow: none;
                border: 1px solid #ddd;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
