body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f5f5; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #2c3e50; color: white; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: 500; }
        .mobile-menu-btn { display: none; position: absolute; right: 20px; top: 15px; background: none; border: none; color: white; font-size: 24px; }
        h1 { color: #e74c3c; text-align: center; margin-bottom: 30px; }
        h2 { color: #3498db; margin: 40px 0 20px; }
        h3 { color: #2ecc71; margin: 30px 0 15px; }
        .download-btn, .login-btn { display: inline-block; background-color: #e74c3c; color: white; padding: 12px 30px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .image-container { text-align: center; margin: 30px 0; }
        .image-container img { max-width: 100%; height: auto; border-radius: 8px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #ecf0f1; padding: 5px 10px; margin-right: 5px; border-radius: 3px; text-decoration: none; color: #333; }
        footer { background-color: #2c3e50; color: white; text-align: center; padding: 20px 0; margin-top: 50px; }
        .game-types { margin: 20px 0; }
        .game-type { display: inline-block; background-color: #3498db; color: white; padding: 5px 15px; margin-right: 10px; border-radius: 20px; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            .mobile-menu-btn { display: block; }
            nav.active { display: flex; }
            .container { padding: 10px; }
        }
