/* ===========================================================================
   gamador-slot.css — GAMADORBET "Casino / Slot Oyunları" page.
   Layered on top of /assets/gamador/gamador-home.css (reuses its gold/green
   palette tokens: --gold, --gold-soft, --secondary, --panel-strong, --line,
   --line-soft, --text, --muted). Gladiator gold-on-deep-green vibe.
   =========================================================================== */

/* ── Page hero / title band ─────────────────────────────────────────────── */
.slot-hero {
  position: relative;
  overflow: hidden;
  margin: 14px 0 30px;
  padding: clamp(34px, 5vw, 64px) clamp(20px, 4vw, 56px);
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 160% at 12% -20%, rgba(140, 69, 255, 0.22), transparent 46%),
    radial-gradient(120% 160% at 100% 120%, rgba(140, 69, 255, 0.14), transparent 50%),
    linear-gradient(135deg, #0a0118 0%, #1a0838 55%, #07000d 100%);
  box-shadow:
    0 24px 60px rgba(2, 1, 3, 0.55),
    inset 0 1px 0 rgba(245, 241, 230, 0.06);
}

/* faint laurel / gladiator glyph watermark on the right */
.slot-hero::after {
  content: "\f521"; /* fa-helmet-battle (decorative) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: clamp(-30px, -2vw, -10px);
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(160px, 22vw, 300px);
  line-height: 1;
  color: rgba(166, 92, 255, 0.07);
  pointer-events: none;
  z-index: 0;
}

.slot-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.slot-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(140, 69, 255, 0.45);
  background: rgba(140, 69, 255, 0.1);
  color: var(--gold-text);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.slot-hero-eyebrow i {
  color: var(--gold-soft);
}

.slot-hero-title {
  margin: 0;
  font-family: "GilroyArwen", "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  background: linear-gradient(100deg, #ffffff 0%, #f3e6ff 34%, #cf9bff 68%, #ffd279 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 28px rgba(166, 92, 255, 0.2);
}

/* gold gladiator accent underline */
.slot-hero-rule {
  width: 132px;
  height: 4px;
  margin: 20px 0 18px;
  border-radius: 4px;
  background: linear-gradient(90deg, #b45dff, #ff43c9 55%, rgba(140, 69, 255, 0));
  box-shadow: 0 0 14px rgba(166, 92, 255, 0.55);
}

.slot-hero-sub {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.5;
}

.slot-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 26px;
}
.slot-hero-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.slot-hero-stats .stat strong {
  font-family: "GilroyArwen", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--gold-soft);
  line-height: 1;
}
.slot-hero-stats .stat span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Toolbar: filter pills + search ─────────────────────────────────────── */
.slot-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.slot-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slot-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(22, 8, 40, 0.55);
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.slot-pill:hover {
  color: var(--text);
  border-color: rgba(140, 69, 255, 0.5);
  background: rgba(140, 69, 255, 0.08);
}
.slot-pill .pill-count {
  font-size: 11px;
  font-weight: 700;
  color: rgba(245, 241, 230, 0.45);
}
.slot-pill.is-active {
  color: #fff;
  border-color: var(--gold-soft);
  background: linear-gradient(135deg, var(--amethyst), var(--figma-purple));
  box-shadow: 0 6px 18px rgba(140, 69, 255, 0.32);
}
.slot-pill.is-active .pill-count {
  color: rgba(255, 255, 255, 0.72);
}

.slot-search {
  position: relative;
  flex: 0 0 auto;
  min-width: 240px;
}
.slot-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(245, 241, 230, 0.4);
  font-size: 14px;
}
.slot-search input {
  width: 100%;
  padding: 11px 16px 11px 40px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(16, 6, 30, 0.7);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.slot-search input::placeholder {
  color: rgba(245, 241, 230, 0.4);
}
.slot-search input:focus {
  border-color: rgba(140, 69, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(140, 69, 255, 0.14);
}

/* ── Slot grid ──────────────────────────────────────────────────────────── */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.slot-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--panel-strong), var(--secondary));
  cursor: pointer;
  text-decoration: none;
  aspect-ratio: 3 / 4;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.slot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(140, 69, 255, 0.5);
  box-shadow: 0 16px 30px rgba(2, 1, 3, 0.5);
}

.slot-card-media {
  position: absolute;
  inset: 0;
}
.slot-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.slot-card:hover .slot-card-media img {
  transform: scale(1.05);
  filter: brightness(0.5);
}

/* provider badge (top-left) */
.slot-card-provider {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 3;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(2, 1, 3, 0.62);
  border: 1px solid rgba(140, 69, 255, 0.4);
  color: var(--gold-text);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  pointer-events: none;
  max-width: calc(100% - 18px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* hot/popüler ribbon (top-right, first few) */
.slot-card-hot {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 3;
  padding: 3px 9px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--amethyst), var(--figma-purple));
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(140, 69, 255, 0.4);
  pointer-events: none;
}

/* overlay with name + play */
.slot-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  padding: 12px;
  background: linear-gradient(transparent 38%, rgba(2, 1, 3, 0.92));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.slot-card:hover .slot-card-overlay,
.slot-card:focus-visible .slot-card-overlay {
  opacity: 1;
}

.slot-card-name {
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.slot-card-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 9px 0;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--amethyst), var(--figma-purple));
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.slot-card-play:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* persistent name strip under the cover (always visible, premium feel) */
.slot-card-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 26px 12px 11px;
  background: linear-gradient(transparent, rgba(2, 1, 3, 0.85) 62%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.25s ease;
}
.slot-card:hover .slot-card-footer {
  opacity: 0;
}

/* empty state */
.slot-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
  color: var(--muted);
}
.slot-empty i {
  display: block;
  font-size: 44px;
  margin-bottom: 14px;
  color: rgba(140, 69, 255, 0.5);
}
.slot-empty p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1400px) {
  .slot-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1100px) {
  .slot-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 820px) {
  .slot-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .slot-toolbar { flex-direction: column; align-items: stretch; }
  .slot-search { min-width: 0; }
}
@media (max-width: 520px) {
  .slot-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .slot-card-overlay { padding: 9px; }
  .slot-hero-stats { gap: 18px; }
}
