/* =============================================================
   GAME — legacy base primitives (plugin)
   -------------------------------------------------------------
   Trimmed to the classes the current gx-* game UI still emits:
   the gallery slider, trailer overlay and age-rating tooltip.
   Cyberpunk decoration is layered on by game-enhanced.css (the
   structural file) + the theme's geekui-game.css skin. The old
   red/white game design CSS was removed — it was dead, only ever
   referenced by the (also removed) CSS.jsx style injector.
   ============================================================= */

/* ── Gallery slider ──────────────────────────────────────────── */
.geekui-game-front-slider{
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.geekui-game-slider-image{
    background-color: #000000 !important;
    width: 99%;
    height: 99%;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

/* ── Trailer overlay ─────────────────────────────────────────── */
.geekui-trailers{
    margin-right: 5px;
}
.geekui-trailer-side{
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    padding: 5px 5px;
    position: absolute;
    display: grid;
    grid-template-columns: 70px 1fr;
    bottom: 0;
    font-size: 15px;
    height: 70px;
    font-weight: bold;
    width: 100%;
    color: #ffffff;
}
.geekui-trailer-side a{
    color: var(--gx-accent, currentColor) !important;
}
.geekui-trailer-side-title{
    position: relative;
    top: 15px;
}
.geekui-video-icon-big{
    font-size: 60px;
    transition: all .3s ease;
    margin-left: 5px;
}
.geekui-video-icon-big:hover{
    color: #fff !important;
}

/* ── Age-rating tooltip ──────────────────────────────────────── */
.geekui-age-tooltip{
    padding: 10px;
    width: 300px;
}
.geekui-age-tooltip strong{
    font-size: 17px;
    display: block;
    margin-bottom: 10px;
}
.geekui-age-tooltip-descs{
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 10px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 850px){
    .geekui-game-right{
        display: none;
    }
}
