body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #ff4757, #ff6b81); color: white; padding: 20px; border-radius: 10px; margin-bottom: 30px; }
        .logo { font-size: 2.5em; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-menu { display: none; cursor: pointer; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; width: 100%; }
            .nav-links.active { display: flex; }
            .mobile-menu { display: block; }
        }
        h1 { color: #ff4757; border-bottom: 3px solid #ffcc00; padding-bottom: 10px; }
        h2 { color: #2ed573; margin-top: 30px; }
        h3 { color: #1e90ff; }
        .download-btn, .login-btn { display: inline-block; background: #ff4757; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .download-btn:hover, .login-btn:hover { background: #ff6b81; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .game-stats { background: #f8f9fa; padding: 20px; border-radius: 8px; margin: 20px 0; }
        footer { margin-top: 50px; padding: 20px; background: #333; color: white; text-align: center; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #6c5ce7; color: white; padding: 5px 10px; margin: 5px; border-radius: 20px; text-decoration: none; }
