* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #fff8f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #ff6b35;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 10px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .content {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #d9534f;
            font-size: 2.5rem;
            margin-bottom: 20px;
            border-bottom: 3px solid #ffc107;
            padding-bottom: 10px;
        }
        h2 {
            color: #c0392b;
            font-size: 2rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #ff6b35;
        }
        h3 {
            color: #e74c3c;
            font-size: 1.5rem;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #e67e22;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 15px 10px 15px 0;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .login-btn {
            background-color: #3498db;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 25px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background-color: #ffebcd;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            color: #d35400;
            font-size: 0.9rem;
            transition: background 0.3s;
        }
        .tag:hover {
            background-color: #ffe0b2;
        }
        .game-type {
            margin: 30px 0 15px;
        }
        .type-link {
            color: #2980b9;
            text-decoration: none;
            margin-right: 15px;
            font-weight: 500;
        }
        .type-link:hover {
            text-decoration: underline;
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer p {
            margin-bottom: 10px;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                margin-bottom: 15px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 10px;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                width: 100%;
                margin: 10px 0;
            }
        }
