

/* Start:/games/style.css?17736226952793*/
/* =========================================
   GAMES HUB STYLE (WEB 3.0)
========================================= */

.games-page {
    background-color: #f8f9fa;
    padding: 40px 0 100px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.games-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0px;
}

/* --- BANNER --- */
.games-banner {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #000;
    height: 300px;
}

.games-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.games-banner__content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    max-width: 600px;
}

.games-banner__content h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 15px 0;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.games-banner__content p {
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.9;
}

/* --- GAMES GRID --- */
.games-section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.game-card {
    display: block;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(198, 40, 40, 0.1);
    border-color: rgba(198, 40, 40, 0.2);
}

.game-card__image { position: relative; height: 220px; }
.game-card__image img { width: 100%; height: 100%; object-fit: cover; }
.game-card__badge { position: absolute; top: 15px; right: 15px; background: #c62828; color: #fff; padding: 5px 12px; border-radius: 20px; font-weight: bold; font-size: 12px; text-transform: uppercase; }
.game-card__info { padding: 30px; }
.game-card__info h3 { margin: 0 0 10px 0; font-size: 24px; font-weight: 700; }
.game-card__info p { color: #666; margin: 0 0 25px 0; line-height: 1.5; }
.game-btn { background: #1a1a1a; color: #fff; border-radius: 12px; padding: 12px 24px; font-weight: 600; transition: background 0.3s; display: inline-block; }
.game-card:hover .game-btn { background: #c62828; color: #fff; }

@media (max-width: 768px) {
    .games-banner__content { left: 20px; right: 20px; }
    .games-banner__content h1 { font-size: 32px; }
}

/* End */
/* /games/style.css?17736226952793 */
