* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Noto Sans', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #1a5f7a;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffd700;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1a5f7a;
            font-size: 2.5rem;
            margin-bottom: 20px;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 10px;
        }
        h2 {
            color: #1a5f7a;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #ffd700;
        }
        h3 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 20px 10px 20px 0;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: background-color 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #c81d2a;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .btn-download {
            background-color: #219653;
        }
        .btn-download:hover {
            background-color: #1e8e4c;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin: 15px 0;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .community-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .community-links a {
            color: #1a5f7a;
            text-decoration: none;
            font-weight: bold;
            padding: 8px 15px;
            border: 2px solid #1a5f7a;
            border-radius: 20px;
            transition: all 0.3s;
        }
        .community-links a:hover {
            background-color: #1a5f7a;
            color: white;
            transform: translateY(-2px);
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 20px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #ffd700;
        }
        .game-types a, .tags a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
            display: inline-block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .recommendation {
            margin: 30px 0;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #444;
            text-align: center;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a5f7a;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 10px 0;
            }
        }
