/* Slot catalogue, using the shared Gamador theme. */
.slot-toolbar { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.slot-toolbar-filters { flex: 1 1 520px; min-width: 0; }
.slot-filter-pills { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.slot-filter-pills:not(.is-expanded) .slot-pill:nth-child(n + 7) { display: none; }
.slot-pill { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 40px; max-width: 100%; padding: 9px 13px; border: 1px solid var(--line-soft); border-radius: 9px; background: #193727; color: var(--muted); font-size: 12px; font-weight: 550; }
.slot-pill:hover { border-color: var(--gold); color: var(--text); }
.slot-pill.is-active { border-color: var(--gold); background: #36523a; color: var(--gold-text); }
.pill-label { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.pill-count { padding: 1px 5px; border-radius: 5px; background: #081d13; color: var(--muted); font-size: 10px; }
.slot-filter-toggle { display: inline-flex; align-items: center; gap: 7px; min-height: 40px; margin-top: 7px; padding: 8px 2px; border: 0; background: transparent; color: var(--gold-text); font-size: 11px; font-weight: 550; }
.slot-filter-toggle.is-expanded > i { transform: rotate(180deg); }
.slot-search { position: relative; flex: 1 1 240px; min-width: 0; }
.slot-search > i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.slot-search input { display: block; width: 100%; min-height: 44px; padding: 10px 14px 10px 40px; border: 1px solid #385641; border-radius: 10px; background: #091d13; color: var(--text); font-size: 16px; }
.slot-search input::placeholder { color: #a8b9ad; font-size: 12px; }
.slot-search input:focus { border-color: var(--gold); outline: 2px solid rgba(223,189,103,.3); outline-offset: 1px; }
.slot-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 15px; }
.slot-card { position: relative; display: block; min-width: 0; overflow: hidden; aspect-ratio: 3 / 4; border: 1px solid var(--line-soft); border-radius: 13px; background: var(--panel-strong); cursor: pointer; transition: transform .2s,border-color .2s; }
.slot-card:hover, .slot-card:focus-within { border-color: var(--gold); transform: translateY(-3px); }
.slot-card-media { position: absolute; inset: 0; }
.slot-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.slot-card-provider, .slot-card-hot { position: absolute; top: 9px; z-index: 3; max-width: calc(100% - 18px); padding: 4px 7px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 9px; font-weight: 650; border-radius: 6px; background: rgba(7,19,15,.87); color: var(--gold-text); pointer-events: none; }
.slot-card-provider { left: 8px; }
.slot-card-hot { top: 37px; left: 8px; color: #ffe7b2; background: rgba(71,45,14,.9); }
.slot-card-footer { position: absolute; inset: auto 0 0; padding: 32px 10px 12px; background: linear-gradient(transparent,rgba(2,12,7,.96) 70%); color: var(--text); font-size: 11px; font-weight: 600; line-height: 1.35; overflow-wrap: anywhere; pointer-events: none; }
.slot-card-overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; padding: 12px; opacity: 0; background: linear-gradient(rgba(4,17,10,.2),rgba(4,17,10,.96)); transition: opacity .2s; }
.slot-card:hover .slot-card-overlay, .slot-card:focus-within .slot-card-overlay { opacity: 1; }
.slot-card-name { color: var(--text); font-size: 12px; font-weight: 650; line-height: 1.35; }
.slot-card-play { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; min-height: 40px; padding: 9px; border: 1px solid var(--gold); border-radius: 8px; background: var(--gold); color: #192517; font-size: 12px; font-weight: 700; }
.slot-card-play:hover { background: var(--gold-soft); }
.slot-empty { grid-column: 1 / -1; padding: 48px 20px; text-align: center; color: var(--muted); }
.slot-empty > i { display: block; margin-bottom: 14px; font-size: 36px; color: var(--gold); }
.slot-empty p { margin: 0; }
.slot-loadmore-wrap { display: flex; justify-content: center; margin-top: 24px; }
.slot-loadmore-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 12px 22px; border: 1px solid var(--line); border-radius: 10px; background: #224632; color: var(--gold-text); font-size: 13px; font-weight: 650; }
@media (max-width: 1400px) { .slot-grid { grid-template-columns: repeat(5,minmax(0,1fr)); } }
@media (max-width: 1150px) { .slot-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; } }
@media (max-width: 750px) {
  .slot-toolbar { gap: 12px; }
  .slot-toolbar-filters, .slot-search { flex-basis: 100%; }
  .slot-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
}
@media (max-width: 520px) {
  .slot-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .slot-pill { font-size: 11px; padding: 8px 10px; }
  .slot-card { border-radius: 10px; }
  .slot-card-provider, .slot-card-hot { font-size: 9px; }
}
