/* ============================================================
   GamzyHost – juegos.css  (solo lo que no cubre mejoras.css)
   ============================================================ */

/* ── Filter bar (dentro del gh-games-inner) ── */
.gj-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}
.gj-filters-wrap { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.gj-filter {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.38rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.04);
    color: var(--muted, #afa89d);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.gj-filter:hover { background: rgba(255,255,255,0.08); color: var(--text, #f2ede7); }
.gj-filter.active {
    background: rgba(247,160,30,0.12);
    border-color: rgba(247,160,30,0.45);
    color: var(--primary, #f7a01e);
}
.gj-count {
    font-size: 0.72rem;
    color: rgba(175,168,157,0.4);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Badge NUEVO sobre la card ── */
.gj-badge-wrap {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 4;
}
.gj-badge-nuevo {
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 5px;
    background: var(--primary, #f7a01e);
    color: #1d1a15;
    line-height: 1.5;
    display: inline-block;
}
.gj-badge-proximo {
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 5px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    display: inline-block;
}

/* ── Card "próximamente" — sin link ── */
.gj-soon {
    opacity: 0.42;
    cursor: default;
    text-decoration: none;
}
.gj-soon:hover {
    transform: none !important;
    border-color: rgba(255,255,255,0.08) !important;
    box-shadow: none !important;
}
.gj-soon:hover .gh-game-bg { transform: none !important; }
