:root {
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --accent: #007aff; /* Apple Blue */
    --google-green: #00a85d;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }

body { background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }

/* Navigation */
nav { padding: 20px; background: #1a1a1a; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--text-main); text-decoration: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; margin-left: 20px; transition: 0.3s; }
.nav-links a:hover { color: var(--text-main); }
.lang-btn { background: none; border: 1px solid #444; color: white; padding: 5px 10px; cursor: pointer; margin-left: 15px; border-radius: 4px; }

/* Container */
.container { max-width: 1000px; margin: 0 auto; padding: 40px 20px; flex: 1; }

/* Games Grid */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 20px; }

.game-card { background: var(--card-bg); border-radius: 12px; padding: 25px; transition: transform 0.2s; border: 1px solid #333; }
.game-card:hover { transform: translateY(-5px); border-color: #555; }

.game-icon { width: 80px; height: 80px; background: #333; border-radius: 18px; margin-bottom: 15px; object-fit: cover; }
.game-title { font-size: 1.4rem; margin-bottom: 10px; }
.game-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; min-height: 60px; }

/* Store Buttons */
.store-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 6px; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: 0.3s; }
.btn-apple { background: #ffffff; color: black; }
.btn-google { background: transparent; border: 1px solid #555; color: white; }
.btn:hover { opacity: 0.8; }

/* Legal Pages */
.legal-content h1 { margin-bottom: 20px; }
.legal-content h2 { margin-top: 20px; margin-bottom: 10px; color: var(--text-main); }
.legal-content p { margin-bottom: 15px; color: var(--text-muted); }

/* Footer */
footer { text-align: center; padding: 20px; background: #1a1a1a; color: #666; font-size: 0.8rem; border-top: 1px solid #333; }