* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #fff5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #e63946, #fb8500);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            margin: 10px 0;
            display: inline-block;
            letter-spacing: 0.5px;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffdd33;
            border-bottom: 2px solid #ffdd33;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #d62828;
            font-size: 2.7rem;
            margin-bottom: 35px;
            text-align: center;
            border-bottom: 4px solid #ffb703;
            padding-bottom: 18px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #7b2cbf;
            font-size: 2.1rem;
            margin: 50px 0 25px;
            padding-left: 18px;
            border-left: 5px solid #fb8500;
        }
        h3 {
            color: #1d3557;
            font-size: 1.6rem;
            margin: 35px 0 20px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "•";
            color: #e63946;
            font-size: 1.8rem;
            margin-right: 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: bold;
            color: #b91c1c;
            text-decoration: underline dotted #b91c1c;
            text-underline-offset: 4px;
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            transition: 0.3s;
            display: inline-block;
            text-align: center;
            min-width: 220px;
        }
        .download-btn {
            background-color: #2a9d8f;
            color: white;
            border: 3px solid #21867a;
        }
        .download-btn:hover {
            background-color: #21867a;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3);
        }
        .login-btn {
            background-color: #1976d2;
            color: white;
            border: 3px solid #1565c0;
        }
        .login-btn:hover {
            background-color: #1565c0;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(25, 118, 210, 0.3);
        }
        .image-container {
            margin: 50px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            border-radius: 18px;
            box-shadow: 0 12px 25px rgba(0,0,0,0.18);
            border: 6px solid white;
            transition: 0.5s;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 18px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-left: 6px solid #f4a261;
        }
        .stats-box p {
            margin: 15px 0;
            display: flex;
            align-items: flex-start;
        }
        .stats-box p::before {
            content: "✓";
            color: #2a9d8f;
            margin-right: 10px;
            font-weight: bold;
        }
        .review {
            background-color: #fff1e6;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            border-bottom: 4px solid #fb8500;
            position: relative;
        }
        .review::before {
            content: """;
            font-size: 5rem;
            color: rgba(251, 133, 0, 0.1);
            position: absolute;
            top: -20px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .reviewer {
            font-style: italic;
            color: #5d4037;
            margin-top: 15px;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        .reviewer::before {
            content: "—";
            margin-right: 10px;
        }
        .guide-section {
            background-color: #fff0f3;
            border-radius: 18px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .events-section {
            background-color: #f0f7ee;
            border-radius: 18px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .community-section {
            background-color: #e8f4f8;
            border-radius: 18px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        footer {
            background-color: #1e293b;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 40px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #ffd166;
            border-bottom: 2px solid #ffd166;
            padding-bottom: 8px;
            display: inline-block;
        }
        .game-types a, .tags a {
            color: #bfdbfe;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 12px;
            transition: 0.3s;
            font-size: 1.05rem;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffd166;
            transform: translateX(5px);
        }
        .copyright {
            margin-top: 50px;
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #475569;
            font-size: 1rem;
            color: #cbd5e1;
        }
        .recommendation {
            margin: 30px 0;
            padding: 25px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 12px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 22px;
            }
            .btn {
                width: 100%;
                padding: 15px 20px;
                font-size: 1.1rem;
            }
            .stats-box, .guide-section, .events-section, .community-section {
                padding: 25px 20px;
            }
            .review {
                padding: 20px;
            }
        }
