.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Player shell ─────────────────────────────────────────── */
.dplayer {
    position: relative;
    width: 100%;
    /*! background: #000; */
    border-radius: 12px;
    overflow: hidden;
    /*! box-shadow: 0 20px 60px rgba(0,0,0,.6); */
    cursor: pointer;
    user-select: none;
}
.dplayer:fullscreen,
.dplayer:-webkit-full-screen { border-radius: 0; }

video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: contain;
    /*! background: #000; */
}

/* ── Custom cursor ────────────────────────────────────────── */
.cursor-dot {
    position: absolute;
    width: 8px; height: 8px;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%,-50%);
    z-index: 50;
    opacity: 0;
    transition: width .12s, height .12s;
    display:none;
}
.dplayer:hover .cursor-dot { opacity: 1; }

/* ── Big play button ──────────────────────────────────────── */
.big-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    pointer-events: none;
    opacity: 1;
    transition: opacity .25s;
}
.big-play.hidden { opacity: 0; }
.big-play-btn {
    width: 65px; height: 65px;
    background-color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: none;
    pointer-events: all;
    cursor: pointer;
    transition: transform .18s, background .18s;
}
.big-play-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.08);
}
.big-play-btn:hover .bp-icon{
    fill: #fff;
}
.big-play-btn svg { width: 36px; height: 36px; fill: #000; margin-left: 3px; }
.big-play-btn.playing svg { margin-left: 0; }

/* ── Ripple ───────────────────────────────────────────────── */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    transform: scale(0);
    animation: rpl .5s ease-out forwards;
    pointer-events: none; z-index: 5;
}
@keyframes rpl { to { transform: scale(4); opacity: 0; } }

/* ── Controls ─────────────────────────────────────────────── */
.controls {
    position: absolute;
    bottom: 0px; left: 0; right: 0;
    padding: 36px 14px 12px;
    background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 100%);
    opacity: 0;
    /*! transform: translateY(4px); */
    transition: opacity .22s, transform .22s;
    z-index: 8;
}
.dplayer:hover .controls,
.dplayer.paused .controls { opacity: 1; transform: translateY(0); }

/* Scrubber */
.scrubber-wrap {
    position: relative; height: 16px;
    display: flex; align-items: center;
    cursor: pointer; margin-bottom: 6px;
}
.scrubber-track {
    width: 100%; height: 3px;
    background: rgba(255,255,255,.22);
    border-radius: 3px; position: relative;
    overflow: hidden; transition: height .12s;
}
.scrubber-wrap:hover .scrubber-track { height: 5px; }
.scrubber-buffered {
    position: absolute; left: 0; top: 0; bottom: 0;
    background: rgba(255,255,255,.3); border-radius: 3px; pointer-events: none;
}
.scrubber-fill {
    position: absolute; left: 0; top: 0; bottom: 0;
    background: #ea4c89; border-radius: 3px; pointer-events: none;
}
.scrubber-thumb {
    position: absolute; top: 50%;
    width: 13px; height: 13px;
    background: #fff; border-radius: 50%;
    transform: translate(-50%,-50%) scale(0);
    transition: transform .12s; pointer-events: none;
    box-shadow: 0 1px 4px rgba(0,0,0,.5); z-index: 2;
}
.scrubber-wrap:hover .scrubber-thumb { transform: translate(-50%,-50%) scale(1); }
.scrubber-tooltip {
    position: absolute; bottom: 20px;
    background: rgba(12,12,12,.92); color: #fff;
    font-size: 10px; font-weight: 600;
    padding: 3px 6px; border-radius: 4px;
    pointer-events: none; opacity: 0;
    transform: translateX(-50%); white-space: nowrap;
    transition: opacity .1s;
}
.scrubber-wrap:hover .scrubber-tooltip { opacity: 1; }

/* Controls row */
.controls-row { display: flex; align-items: center; gap: 3px; }
.ctrl-btn {
    width: 60px; height: 60px;
    background: #fff; border: none;
    color: rgba(0, 0, 0, 0.8);
    display: flex; align-items: center; justify-content: center;
    border-radius: 30px; cursor: pointer; flex-shrink: 0;
    transition: color .12s, background .12s;
}
.ctrl-btn:hover { color: #fff; background: rgba(255,255,255,.1); }
.ctrl-btn svg { width: 29px; height: 29px; fill: currentColor; pointer-events: none; }
.time-display {
    color: rgba(255,255,255,.8); font-size: 11px; font-weight: 500;
    letter-spacing: .03em; white-space: nowrap; padding: 0 4px;
    font-variant-numeric: tabular-nums;
}
.time-display .sep { color: rgba(255,255,255,.35); margin: 0 2px; }
.vol-group { display: flex; align-items: center; gap: 4px; }
.vol-slider-wrap { width: 0; overflow: hidden; transition: width .2s; display: flex; align-items: center; }
.vol-group:hover .vol-slider-wrap { width: 64px; }
.vol-slider {
    -webkit-appearance: none; appearance: none;
    width: 60px; height: 3px; border-radius: 3px;
    background: rgba(255,255,255,.25); cursor: pointer; outline: none;
}
.vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 11px; height: 11px; border-radius: 50%;
    background: #fff; cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.vol-slider::-moz-range-thumb {
    width: 11px; height: 11px; border-radius: 50%;
    background: #fff; border: none; cursor: pointer;
}
.spacer { flex: 1; }
.speed-btn {
    font-size: 10px; font-weight: 600; letter-spacing: .04em;
    color: rgba(255,255,255,.75); width: auto; padding: 0 7px; height: 24px;
    border: 1px solid rgba(255,255,255,.18); border-radius: 5px;
    background: none; cursor: pointer;
    transition: color .12s, background .12s, border-color .12s;
}
.speed-btn:hover { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.32); }
.speed-btn.active { color: #ea4c89; border-color: #ea4c89; }

/* ── Dribbble badge ───────────────────────────────────────── */
.drib-badge {
    position: absolute; top: 12px; left: 14px;
    display: flex; align-items: center; gap: 6px;
    opacity: 0; transition: opacity .22s;
    z-index: 20; pointer-events: none;
}
.dplayer:hover .drib-badge { opacity: 1; }
.drib-icon {
    width: 26px; height: 26px; background: #ea4c89; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(234,76,137,.45);
}
.drib-icon svg { width: 14px; height: 14px; fill: #fff; }
.drib-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.88); letter-spacing: .02em; }

.ctrl-btn.skip-back, .ctrl-btn.skip-fwd, .ctrl-btn.pip-btn, .ctrl-btn.speed-btn {
    display: none;
}
