/* ==========================================================
   GAMES.CSS - Herné servery a Detaily
   ========================================================== */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; margin-bottom: 40px; }
.game-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; position: relative; transition: 0.2s; text-decoration: none;}
.game-banner { height: 200px; background-size: cover; background-position: center; position: relative; border-bottom: 1px solid var(--border); }
.game-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-panel), transparent); }
.game-info { padding: 0 25px 25px; position: relative; z-index: 2; display: flex; flex-direction: column; flex: 1; }
.game-info h3 { font-size: 24px; font-weight: 800; margin-top: -20px; margin-bottom: 10px; font-family: 'Oswald', sans-serif; text-transform: uppercase; color: white; }
.game-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; flex: 1; }

.hover-overlay { position: absolute; inset: 0; background: rgba(9, 9, 11, 0.95); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 15px; opacity: 0; transition: opacity 0.3s ease; z-index: 10; padding: 20px; backdrop-filter: blur(4px); }
.game-card:hover .hover-overlay { opacity: 1; }
.game-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 10px 25px rgba(249, 115, 22, 0.15); }
.btn-hover { width: 80%; text-align: center; padding: 12px; border-radius: 6px; font-weight: 700; text-transform: uppercase; font-size: 14px; transition: 0.2s; border: 2px solid transparent; cursor: pointer;}
.btn-hover.primary { background: var(--accent); color: white; }
.btn-hover.primary:hover { background: var(--accent-hover); }
.btn-hover.outline { background: transparent; color: white; border-color: #3f3f46; }
.btn-hover.outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* Detaily hry */
.hero-detail { width: 100%; height: 400px; border-radius: 12px; margin-bottom: 50px; position: relative; background-size: cover; background-position: center; border: 1px solid var(--border); overflow: hidden; }
.hero-detail-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(9, 9, 11, 0.95) 0%, rgba(9, 9, 11, 0.5) 100%); display: flex; flex-direction: column; justify-content: center; padding: 0 60px; }
.detail-title { font-family: 'Oswald', sans-serif; font-size: 56px; color: white; margin: 0; text-transform: uppercase; line-height: 1.1; }
.info-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 60px; }
.lore-box, .ver-box, .feat-box { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 12px; padding: 40px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-bottom: 60px; }
.plan-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 12px; padding: 40px 30px; text-align: center; transition: 0.3s; position: relative; }
.plan-card:hover { border-color: var(--accent); transform: translateY(-10px); }
.plan-price { font-size: 42px; font-weight: 800; color: white; margin-bottom: 25px; line-height: 1; }

@media (max-width: 992px) {
    .info-grid { grid-template-columns: 1fr; }
    .hero-detail-overlay { padding: 0 30px; }
    .detail-title { font-size: 36px; }
}