body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 2px solid #ff6600; }
        .logo { font-size: 28px; font-weight: bold; color: #ff6600; text-decoration: none; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: #333; }
        .mobile-menu { display: none; cursor: pointer; }
        h1 { color: #ff6600; border-bottom: 2px solid #ffcc99; padding-bottom: 10px; }
        h2 { color: #ff9933; margin-top: 30px; }
        h3 { color: #ffb366; }
        .download-btn { display: inline-block; background: #ff6600; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .login-btn { display: inline-block; background: #3399ff; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; }
        footer { margin-top: 50px; padding: 20px 0; border-top: 2px solid #ffcc99; text-align: center; }
        .tags { margin: 20px 0; }
        .tag { background: #f0f0f0; padding: 5px 10px; margin: 5px; display: inline-block; border-radius: 3px; }
        @media (max-width: 768px) {
            nav ul { display: none; }
            .mobile-menu { display: block; }
            .active { display: flex; flex-direction: column; }
        }
