/* Condensed CSS */
body { font-family: 'Segoe UI', sans-serif; background: radial-gradient(circle at 30% 20%, rgba(0,255,255,0.15) 0%, rgba(0,0,0,1) 80%), radial-gradient(circle at 70% 80%, rgba(255,0,255,0.15) 0%, rgba(0,0,0,1) 80%), #000; color: #f0f0f0; min-height: 100vh; margin: 0; padding: 0; background-attachment: fixed; background-repeat: no-repeat; background-size: cover; }
.container { max-width: 1200px; margin: 0 auto; padding: 16px; }
.neon-bg { background: radial-gradient(circle at center, rgba(0,255,255,0.05), rgba(0,0,0,1)); box-shadow: 0 0 50px rgba(0,255,255,0.1); }
.card { background: rgba(25,25,25,0.85); border: 1px solid rgba(0,255,255,0.2); border-radius: 12px; padding: 10px; box-shadow: 0 0 20px rgba(0,255,255,0.1); transition: transform 0.25s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; justify-content: space-between; }
.card:hover { transform: translateY(-3px); box-shadow: 0 0 25px rgba(0,255,255,0.4); }
.thumb img { width: 100%; border-radius: 10px; display: block; }
.noimg { background: rgba(0,255,255,0.1); border: 1px dashed #0ff; color: #0ff; text-align: center; padding: 40px 0; border-radius: 10px; }
.game-title { margin: 8px 0; text-align: center; font-size: 1.1rem; }
.actions { text-align:center; }
.btn, .btn-primary { background: transparent; border: 1px solid #0ff; color: #0ff; padding: 6px 10px; border-radius: 8px; text-decoration: none; transition: 0.25s; display: inline-flex; align-items:center; gap:6px;}
.btn:hover, .btn-primary:hover { background: #0ff; color: #000; }
.filters { margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.filters input, .filters select { background: rgba(0,0,0,0.6); color: #fff; border: 1px solid #0ff; border-radius: 8px; padding: 6px 10px; margin-right: 8px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.pagination { margin-top: 25px; text-align: center; }
.site-header { background: rgba(0,0,0,0.6); padding: 12px 16px; border-bottom: 1px solid rgba(0,255,255,0.3); box-shadow: 0 0 15px rgba(0,255,255,0.2); }
.header-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; transition: all 0.3s ease; }
.menu-toggle { display: none; background: none; border: 1px solid #0ff; color: #0ff; font-size: 1.4rem; padding: 4px 8px; border-radius: 6px; cursor: pointer; }
.register { background: linear-gradient(90deg, #0ff, #f0f); color: #000; border: none; }
.site-footer { background: rgba(0,0,0,0.7); border-top: 1px solid rgba(0,255,255,0.3); text-align: center; padding: 20px; margin-top: 40px; font-size: 14px; }
.site-footer a { color: #0ff; }
@media (max-width: 768px) { .nav-links { display: none; width: 100%; flex-direction: column; margin-top: 10px; } .nav-links.open { display: flex; } .menu-toggle { display: block; } form.logout-form { display: block; width: 100%; } .grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); } }
