/* DemoSlot24 — demo slot practice hub */

:root {
  --fsp-ink: #0c1220;
  --fsp-surface: #141c2e;
  --fsp-panel: #1a2438;
  --fsp-line: rgba(255, 255, 255, 0.08);
  --fsp-text: #e8eef8;
  --fsp-muted: #93a0b8;
  --fsp-gold: #f0a202;
  --fsp-mint: #20c5a8;
  --fsp-danger: #ff5c7a;
  --fsp-radius: 12px;
  --fsp-wrap: 1280px;
  --fsp-header: 112px; /* top + nav rows */
  --fsp-font: "Source Sans 3", system-ui, sans-serif;
  --fsp-display: "Outfit", system-ui, sans-serif;
  --fsp-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  --fsp-shadow-md: 0 8px 28px rgba(0, 0, 0, 0.45);
  --fsp-shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.55);
  --fsp-lime-soft: rgba(240, 162, 2, 0.12);
  --fsp-lime-mid: rgba(240, 162, 2, 0.28);
  --fsp-teal-soft: rgba(32, 197, 168, 0.12);
  --fsp-teal-mid: rgba(32, 197, 168, 0.28);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.fsp-theme {
  margin: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(32, 197, 168, 0.06), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 15%, rgba(240, 162, 2, 0.05), transparent 50%),
    linear-gradient(180deg, #101828 0%, var(--fsp-ink) 42%, #0e1524 100%);
  background-color: var(--fsp-ink);
  color: var(--fsp-text);
  font-family: var(--fsp-font);
  line-height: 1.55;
  min-height: 100vh;
  padding-top: var(--fsp-header);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--fsp-mint); text-decoration: none; }
a:hover { color: #20c5a8; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.fsp-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--fsp-gold);
  color: #0c1220;
  padding: 0.5rem 1rem;
  z-index: 10000;
  font-weight: 700;
}
.fsp-skip:focus { left: 0; }

.fsp-wrap {
  width: min(100% - 2rem, var(--fsp-wrap));
  margin-inline: auto;
  max-width: 100%;
}

/* -------------------------------------------------------------------------- */
/* Header — two-row DemoSlot24 shell */
/* -------------------------------------------------------------------------- */
.fsp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--fsp-header);
  background: var(--fsp-surface);
  border-bottom: 1px solid var(--fsp-line);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* WP admin bar offset */
body.admin-bar .fsp-header { top: 32px; }
body.admin-bar.fsp-theme { padding-top: calc(var(--fsp-header) + 32px); }
@media screen and (max-width: 782px) {
  body.admin-bar .fsp-header { top: 46px; }
  body.admin-bar.fsp-theme { padding-top: calc(var(--fsp-header) + 46px); }
}

.fsp-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Legacy single-row guru header */
.fsp-header--guru {
  height: var(--fsp-header);
  background: var(--fsp-surface);
  border-bottom: 1px solid var(--fsp-line);
  box-shadow: none;
}

/* Dark two-row header */
.fsp-header--guru-dark {
  height: auto;
  min-height: var(--fsp-header);
  background: var(--fsp-surface);
  border-bottom: 1px solid var(--fsp-line);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}

.fsp-header__top {
  background: var(--fsp-surface);
  border-bottom: 1px solid var(--fsp-line);
}

.fsp-header__top-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
  padding: 0.55rem 0;
}

.fsp-header__nav-bar {
  background: #101828;
  border-bottom: 0;
  min-height: 48px;
}

.fsp-header__nav-bar .fsp-wrap {
  display: flex;
  align-items: stretch;
  min-height: 48px;
}

.fsp-header__right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

.fsp-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  z-index: 2;
}
.fsp-brand__link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  max-width: 100%;
}
.fsp-brand__mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
}
.fsp-brand__logo {
  max-height: 42px;
  height: 40px;
  width: auto;
  max-width: min(220px, 52vw);
  display: block;
  object-fit: contain;
  object-position: left center;
}
.fsp-brand__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  text-decoration: none;
}
.fsp-brand__name {
  font-family: var(--fsp-display);
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}
.fsp-brand__name-free { color: #e8eef8; }
.fsp-brand__name-gameplay { color: var(--fsp-gold); }
.fsp-brand__name-slots { color: var(--fsp-gold); }
.fsp-brand__name-time { color: #ffffff; }
.fsp-brand__name-a { color: var(--fsp-gold); }
.fsp-brand__name-b { color: #ffffff; }
.fsp-brand .custom-logo-link { display: inline-flex; align-items: center; }
.fsp-brand .custom-logo {
  max-height: 40px;
  width: auto;
  display: block;
}

.fsp-brand__text {
  font-family: var(--fsp-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #ffffff, var(--fsp-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fsp-hero__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0;
  text-decoration: none;
}
.fsp-hero__logo-link .fsp-brand__mark {
  width: 52px;
  height: 52px;
}
.fsp-hero__logo-link .fsp-brand__name {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  letter-spacing: -0.03em;
}

.fsp-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
.fsp-header--guru .fsp-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}
.fsp-header--guru-dark .fsp-nav {
  flex: 1;
  width: 100%;
  min-width: 0;
}

/* Desktop second-row nav (outside header stacking context) */
@media (min-width: 901px) {
  :root {
    --fsp-header-top: 64px;
    --fsp-header-nav: 48px;
    --fsp-header: 112px;
  }
  .fsp-header--guru-dark {
    min-height: var(--fsp-header-top);
    height: var(--fsp-header-top);
  }
  .fsp-nav {
    position: fixed;
    top: var(--fsp-header-top);
    left: 0;
    right: 0;
    z-index: 1095;
    height: var(--fsp-header-nav);
    padding: 0 max(0.75rem, calc((100% - 1180px) / 2));
    background: #101828;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
  }
  body.admin-bar .fsp-nav {
    top: calc(var(--fsp-header-top) + 32px);
  }
}

.fsp-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.35rem;
}

.fsp-menu a {
  display: block;
  padding: 0.45rem 0.75rem;
  color: var(--fsp-text);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
}
.fsp-menu a:hover,
.fsp-menu .current-menu-item > a {
  background: var(--fsp-lime-soft);
  color: var(--fsp-gold);
  box-shadow: inset 0 -2px 0 0 var(--fsp-gold);
}

/* Legacy light guru menu → dark-compatible */
.fsp-menu--guru {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}
.fsp-menu--guru > .fsp-menu__item {
  position: relative;
  list-style: none;
}
.fsp-menu__item--has-sub {
  position: static;
}
.fsp-menu--guru .fsp-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.35rem;
  color: var(--fsp-text);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}
.fsp-menu--guru .fsp-menu__link:hover,
.fsp-menu--guru .fsp-menu__link:focus,
.fsp-menu--guru .fsp-menu__item.is-open > .fsp-menu__link,
.fsp-menu--guru .current-menu-item > .fsp-menu__link {
  color: var(--fsp-gold);
  background: transparent;
  box-shadow: none;
}

/* Dark icon+text nav (Casino.guru second row) */
.fsp-menu--guru-dark {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0.15rem 0.35rem;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.fsp-menu--guru-dark::-webkit-scrollbar { display: none; }
.fsp-menu--guru-dark > .fsp-menu__item {
  position: relative;
  list-style: none;
  flex: 0 0 auto;
}
.fsp-menu--guru-dark .fsp-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 0.75rem;
  color: var(--fsp-muted);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.fsp-menu--guru-dark .fsp-menu__link:hover,
.fsp-menu--guru-dark .fsp-menu__link:focus,
.fsp-menu--guru-dark .fsp-menu__item.is-open > .fsp-menu__link,
.fsp-menu--guru-dark .fsp-menu__item.is-active > .fsp-menu__link,
.fsp-menu--guru-dark .current-menu-item > .fsp-menu__link {
  color: var(--fsp-gold);
  background: transparent;
  box-shadow: none;
  border-bottom-color: var(--fsp-gold);
}
.fsp-menu__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  line-height: 1;
  color: #f0a202 !important;
  opacity: 1;
  min-width: 1.1em;
}
.fsp-menu__ico svg,
.fsp-menu--guru-dark .fsp-menu__link .fsp-menu__ico,
.fsp-menu--guru-dark .fsp-menu__link .fsp-menu__ico svg {
  color: #f0a202 !important;
  fill: currentColor;
}
.fsp-menu__item.is-active .fsp-menu__ico,
.fsp-menu--guru-dark .fsp-menu__link:hover .fsp-menu__ico {
  opacity: 1;
  color: #f0a202 !important;
}
.fsp-menu__chev {
  opacity: 0.55;
  flex-shrink: 0;
}

/* Mega panel — dark */
.fsp-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--fsp-panel);
  border-top: 1px solid var(--fsp-line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  padding: 1.25rem 0;
  display: none;
  z-index: 1200;
}
.fsp-menu__item--has-sub:hover > .fsp-mega,
.fsp-menu__item--has-sub:focus-within > .fsp-mega {
  display: block;
}
.fsp-mega__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 2rem;
}
.fsp-mega--sm .fsp-mega__inner {
  grid-template-columns: 1fr;
  gap: 1rem;
}
.fsp-mega__title {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fsp-muted);
}
.fsp-mega__text {
  margin: 0 0 1rem;
  color: var(--fsp-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.fsp-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.fsp-mega__list a {
  display: block;
  padding: 0.35rem 0;
  color: var(--fsp-text);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.fsp-mega__list a:hover {
  color: var(--fsp-gold);
  background: transparent;
  box-shadow: none;
}
.fsp-mega__list--row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}
.fsp-mega__list--row a {
  padding: 0.4rem 0;
}
.fsp-mega__col--cta {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--fsp-line);
  border-radius: var(--fsp-radius);
}

.fsp-header__tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* Header search */
.fsp-header-search {
  position: relative;
  display: flex;
  align-items: center;
}
.fsp-header-search__input {
  height: 38px;
  border: 1px solid var(--fsp-line);
  border-radius: 8px;
  padding: 0 0.75rem 0 2rem;
  min-width: 180px;
  background: #0c1220;
  color: var(--fsp-text);
  font: inherit;
  font-size: 0.88rem;
}
.fsp-header-search__input::placeholder { color: var(--fsp-muted); }
.fsp-header-search__input:focus {
  outline: 2px solid var(--fsp-lime-mid);
  border-color: var(--fsp-gold);
  background: #0a101c;
}
.fsp-header-search__icon {
  position: absolute;
  left: 8px;
  color: var(--fsp-muted);
  pointer-events: none;
}
.fsp-header-search__submit {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--fsp-muted);
  cursor: pointer;
  padding: 0;
}
.fsp-header-search__submit:hover {
  color: var(--fsp-gold);
  background: var(--fsp-lime-soft);
}

/* Wide centered dark search (top row) */
.fsp-header-search--wide {
  flex: 1 1 auto;
  max-width: 560px;
  margin: 0 auto;
  min-width: 0;
  width: 100%;
}
.fsp-header-search--wide .fsp-header-search__input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 2.6rem 0 1rem;
  background: #0a101c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--fsp-text);
  font-size: 0.92rem;
}
.fsp-header-search--wide .fsp-header-search__input:focus {
  border-color: var(--fsp-gold);
  outline: 2px solid var(--fsp-lime-mid);
  background: #080e18;
}

.fsp-header__cta {
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  white-space: nowrap;
  min-height: 38px;
}

.fsp-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--fsp-line);
  border-radius: 10px;
  background: var(--fsp-panel);
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 1210;
}
.fsp-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--fsp-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.fsp-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.fsp-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.fsp-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Language switcher */
.fsp-lang { display: flex; align-items: center; gap: 0.5rem; }
.fsp-lang__label {
  font-size: 0.75rem;
  color: var(--fsp-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fsp-lang__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
}
.fsp-lang__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.85rem;
  padding: 0 0.4rem;
  border-radius: 8px;
  border: 1px solid var(--fsp-line);
  color: var(--fsp-muted);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--fsp-panel);
}
.fsp-lang__link.is-active,
.fsp-lang__link:hover {
  border-color: var(--fsp-gold);
  color: var(--fsp-gold);
  background: var(--fsp-lime-soft);
}

.fsp-lang--dropdown {
  position: relative;
}
.fsp-lang--dropdown .fsp-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 38px;
  padding: 0 0.65rem;
  border: 1px solid var(--fsp-line);
  border-radius: 8px;
  background: var(--fsp-panel);
  color: var(--fsp-text);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.fsp-lang--dropdown .fsp-lang__btn:hover,
.fsp-lang--dropdown .fsp-lang__btn[aria-expanded="true"] {
  border-color: var(--fsp-lime-mid);
  background: #1a2438;
}
.fsp-lang--dropdown .fsp-lang__code {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.fsp-lang--dropdown .fsp-lang__name {
  color: var(--fsp-muted);
  font-weight: 500;
  font-size: 0.82rem;
}
.fsp-lang--dropdown .fsp-lang__chev {
  opacity: 0.55;
  flex-shrink: 0;
}
.fsp-lang--dropdown .fsp-lang__list {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  display: grid;
  gap: 0.15rem;
  min-width: 180px;
  max-height: 280px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: var(--fsp-panel);
  border: 1px solid var(--fsp-line);
  border-radius: var(--fsp-radius);
  box-shadow: var(--fsp-shadow-md);
  z-index: 1300;
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 162, 2, 0.35) transparent;
}
.fsp-lang--dropdown .fsp-lang__list::-webkit-scrollbar { width: 6px; }
.fsp-lang--dropdown .fsp-lang__list::-webkit-scrollbar-track { background: transparent; }
.fsp-lang--dropdown .fsp-lang__list::-webkit-scrollbar-thumb {
  background: rgba(240, 162, 2, 0.35);
  border-radius: 4px;
}
.fsp-lang--dropdown .fsp-lang__list[hidden] {
  display: none;
}
.fsp-lang--dropdown .fsp-lang__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  height: auto;
  padding: 0.55rem 0.65rem;
  border: 0;
  border-radius: 8px;
  color: var(--fsp-text);
  font-size: 0.88rem;
  font-weight: 600;
  background: transparent;
  text-decoration: none;
  justify-content: flex-start;
}
.fsp-lang--dropdown .fsp-lang__link.is-active,
.fsp-lang--dropdown .fsp-lang__link:hover {
  background: var(--fsp-lime-soft);
  color: var(--fsp-gold);
  border-color: transparent;
}

/* -------------------------------------------------------------------------- */
/* Hero — legacy + dark guru banner */
/* -------------------------------------------------------------------------- */
.fsp-hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  padding: 2.75rem 0 2.25rem;
  overflow: hidden;
}
.fsp-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 85% 30%, rgba(240, 162, 2, 0.1), transparent 55%),
    radial-gradient(ellipse 45% 50% at 10% 80%, rgba(32, 197, 168, 0.08), transparent 50%),
    linear-gradient(180deg, #121a2c 0%, var(--fsp-ink) 100%);
}
.fsp-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.05fr);
  gap: 2.5rem;
  align-items: center;
  min-height: min(68vh, 620px);
}
.fsp-hero__inner {
  max-width: 560px;
  padding: 0.5rem 0;
}
.fsp-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--fsp-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
  color: var(--fsp-gold);
}
.fsp-hero__brand {
  margin: 0 0 0.35rem;
  font-family: var(--fsp-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fsp-gold);
  line-height: 1.1;
}
.fsp-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--fsp-display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fsp-text);
  max-width: 22ch;
}
.fsp-hero__sub {
  margin: 0 0 1.15rem;
  color: var(--fsp-muted);
  font-size: 0.9rem;
}
.fsp-hero-search {
  display: flex;
  gap: 0.65rem;
  margin: 0 0 1rem;
  max-width: 520px;
  width: 100%;
}
.fsp-hero-search__input {
  flex: 1;
  min-width: 0;
  min-height: 50px;
  border-radius: 10px;
  border: 1px solid var(--fsp-line);
  background: var(--fsp-panel);
  color: var(--fsp-text);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  box-shadow: var(--fsp-shadow);
}
.fsp-hero-search__input::placeholder { color: var(--fsp-muted); }
.fsp-hero-search__input:focus {
  outline: 2px solid var(--fsp-lime-mid);
  border-color: var(--fsp-gold);
}
.fsp-hero-search__btn { flex-shrink: 0; white-space: nowrap; }
.fsp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.fsp-hero__showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  transform: none;
}
.fsp-hero__tile {
  width: 100%;
  aspect-ratio: 165 / 216;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--fsp-shadow-md);
  border: 1px solid var(--fsp-line);
  background: var(--fsp-panel);
}
.fsp-hero__tile--0,
.fsp-hero__tile--1,
.fsp-hero__tile--2,
.fsp-hero__tile--3,
.fsp-hero__tile--4,
.fsp-hero__tile--5 { transform: none; }

@media (max-width: 980px) {
  .fsp-hero__layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    min-height: 0;
  }
  .fsp-hero__showcase {
    grid-template-columns: repeat(4, 1fr);
    max-width: 520px;
    margin: 0 auto;
    transform: none;
  }
  .fsp-hero__tile--0,
  .fsp-hero__tile--1,
  .fsp-hero__tile--2,
  .fsp-hero__tile--3,
  .fsp-hero__tile--4,
  .fsp-hero__tile--5 { transform: none; }
  .fsp-hero__tile:nth-child(n+9) { display: none; }
}
@media (max-width: 560px) {
  .fsp-hero { padding: 1.75rem 0 1.25rem; }
  .fsp-hero-search { flex-direction: column; }
  .fsp-hero-search__btn { width: 100%; }
  .fsp-hero__showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    opacity: 0.95;
  }
  .fsp-hero__tile:nth-child(n+7) { display: none; }
}

/* Legacy light editorial hero → dark wash */
.fsp-hero--guru {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: 2.75rem 0 1.75rem;
  overflow: visible;
  background:
    radial-gradient(ellipse 50% 55% at 90% 0%, rgba(240, 162, 2, 0.08), transparent 55%),
    radial-gradient(ellipse 40% 45% at 5% 90%, rgba(32, 197, 168, 0.06), transparent 50%),
    linear-gradient(180deg, #121a2c 0%, var(--fsp-ink) 100%);
}
.fsp-hero--guru .fsp-hero__glow,
.fsp-hero--guru .fsp-hero__showcase {
  display: none;
}
.fsp-hero__inner--wide {
  max-width: 820px;
  padding: 0;
}
.fsp-hero--guru .fsp-hero__title {
  margin: 0 0 0.65rem;
  font-family: var(--fsp-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #ffffff;
  max-width: none;
}
.fsp-hero--guru .fsp-hero__sub {
  margin: 0 0 0.25rem;
  max-width: 42rem;
}
.fsp-hero-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1rem;
}
.fsp-hero-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--fsp-line);
  background: var(--fsp-panel);
  color: var(--fsp-text);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.fsp-hero-tab:hover,
.fsp-hero-tab.is-active {
  background: var(--fsp-gold);
  color: #0c1220;
  border-color: var(--fsp-gold);
}
.fsp-hero--guru .fsp-hero-search {
  max-width: 560px;
  margin: 0;
}

/* Dark guru hero banner — copy left + quick boxes right */
.fsp-hero--guru-dark {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
}
.fsp-hero--guru-dark .fsp-hero__glow,
.fsp-hero--guru-dark .fsp-hero__showcase {
  display: none;
}

/* Casino.guru homepage hero — flat full-bleed, NOT a rounded green card */
.fsp-hero--cg {
  position: relative;
  isolation: isolate;
  padding: 2.75rem 0 2.25rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 90% at 8% 40%, rgba(240, 162, 2, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 80% at 92% 55%, rgba(32, 197, 168, 0.14) 0%, transparent 58%),
    linear-gradient(105deg, #0c1220 0%, #121a2c 48%, #141c2e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fsp-hero--cg .fsp-hero__row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.95fr);
  gap: 2.25rem 3rem;
  align-items: center;
}
.fsp-hero--cg .fsp-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}
.fsp-hero--cg .fsp-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--fsp-display);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #ffffff;
}
.fsp-hero--cg .fsp-hero__sub {
  margin: 0;
  color: rgba(232, 238, 248, 0.86);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 38rem;
}

/* Legacy banner kept but unused on home */
.fsp-hero__banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem 1.5rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
}
.fsp-hero__banner::before { display: none; }
.fsp-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}
.fsp-hero--guru-dark .fsp-hero__title {
  margin: 0 0 0.65rem;
  font-family: var(--fsp-display);
  font-size: clamp(1.65rem, 3.5vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #ffffff;
  max-width: none;
}
.fsp-hero--guru-dark .fsp-hero__sub {
  margin: 0;
  color: rgba(232, 238, 248, 0.78);
  font-size: 0.95rem;
  max-width: 36rem;
}

/* Quick boxes — amber border, teal hover accent */
.fsp-quick-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.fsp-quick {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 96px;
  padding: 1rem 0.65rem;
  border-radius: var(--fsp-radius);
  border: 1.5px solid rgba(240, 162, 2, 0.55);
  background: rgba(10, 16, 28, 0.45);
  color: var(--fsp-gold);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.fsp-quick:hover {
  background: rgba(240, 162, 2, 0.1);
  border-color: var(--fsp-gold);
  color: var(--fsp-gold);
  transform: translateY(-2px);
}
.fsp-quick__ico {
  color: var(--fsp-mint);
  line-height: 0;
  display: grid;
  place-items: center;
}
.fsp-quick__ico svg { display: block; }
.fsp-quick__label {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fsp-gold);
}

/* Casino.guru connected trapezoid stats bar */
.fsp-trap-stats {
  padding: 0;
  background: #121a2c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.fsp-trap-stats__row,
.fsp-trap-stats__bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0.35rem 0 0.15rem;
}
.fsp-trap {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 1.35rem 1.35rem 1.2rem 1.1rem;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  clip-path: none;
  transform: none;
  box-shadow: none;
  overflow: visible;
  min-height: 96px;
}
.fsp-trap:last-child { border-right: 0; }
.fsp-trap > * { transform: none; }
.fsp-trap:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: inherit;
  transform: none;
}
.fsp-trap__ico {
  flex-shrink: 0;
  color: #f0a202;
  line-height: 0;
  opacity: 0.95;
}
.fsp-trap__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.fsp-trap__new {
  position: absolute;
  top: 0.55rem;
  right: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  background: #f0b429;
  color: #0c1220;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.2;
  max-width: 46%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: none;
}
.fsp-trap__num {
  font-family: var(--fsp-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: #f0a202;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.fsp-trap__label {
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
}

/* Section title: green underline under first word (Best casinos style) */
.fsp-section-head--guru .fsp-section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
}
.fsp-section-underline {
  display: block;
  width: 3.2rem;
  height: 3px;
  margin-top: 0.15rem;
  background: #f0a202;
  border-radius: 2px;
}

.fsp-stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}
.fsp-stat-card {
  display: block;
  background: var(--fsp-panel);
  border: 1px solid var(--fsp-line);
  border-radius: var(--fsp-radius);
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--fsp-shadow);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.fsp-stat-card:hover {
  border-color: var(--fsp-gold);
  transform: translateY(-2px);
  color: inherit;
  box-shadow: var(--fsp-shadow-md);
}
.fsp-stat-card__num {
  display: block;
  font-family: var(--fsp-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--fsp-gold);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.fsp-stat-card__label {
  display: block;
  font-weight: 700;
  color: var(--fsp-text);
  margin-top: 0.2rem;
}
.fsp-stat-card__hint {
  display: block;
  color: var(--fsp-muted);
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

/* -------------------------------------------------------------------------- */
/* Trust strip */
/* -------------------------------------------------------------------------- */
.fsp-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  gap: 0.75rem;
  margin: 0.5rem auto 1.75rem;
  position: relative;
  z-index: 2;
  justify-content: start;
}
.fsp-trust__item {
  background: var(--fsp-panel);
  border: 1px solid var(--fsp-line);
  border-radius: var(--fsp-radius);
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.15rem;
  box-shadow: var(--fsp-shadow);
}
.fsp-trust__item strong {
  font-family: var(--fsp-display);
  font-size: 1.15rem;
  color: var(--fsp-gold);
}
.fsp-trust__item span { color: var(--fsp-muted); font-size: 0.82rem; }

/* -------------------------------------------------------------------------- */
/* Buttons */
/* -------------------------------------------------------------------------- */
.fsp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.fsp-btn:hover { transform: translateY(-2px); }
.fsp-btn--gold {
  background: #f0a202;
  color: #0c1220;
  box-shadow: 0 4px 16px rgba(240, 162, 2, 0.28);
}
.fsp-btn--gold:hover {
  background: #a3e820;
  color: #0c1220;
}
.fsp-btn--mint {
  background: var(--fsp-mint);
  color: #0c1220;
  box-shadow: 0 4px 16px rgba(240, 162, 2, 0.28);
}
.fsp-btn--mint:hover {
  background: #a3e820;
  color: #0c1220;
}
.fsp-btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--fsp-text);
}
.fsp-btn--ghost:hover {
  border-color: var(--fsp-gold);
  color: var(--fsp-gold);
}

/* -------------------------------------------------------------------------- */
/* Sections / grid */
/* -------------------------------------------------------------------------- */
.fsp-grid-section { padding: 2.5rem 0; }
.fsp-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.fsp-section-title {
  margin: 0;
  font-family: var(--fsp-display);
  font-size: 1.35rem;
  color: var(--fsp-text);
}
.fsp-link-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fsp-gold);
}
.fsp-link-more:hover { color: #20c5a8; }

.fsp-grid-search {
  display: flex;
  gap: 0.65rem;
  margin: 0 0 1rem;
  max-width: 720px;
}
.fsp-grid-search__input {
  flex: 1;
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid var(--fsp-line);
  background: var(--fsp-panel);
  color: var(--fsp-text);
  padding: 0.7rem 1rem;
  font-size: 1rem;
  box-shadow: var(--fsp-shadow);
}
.fsp-grid-search__input::placeholder { color: var(--fsp-muted); }
.fsp-grid-search__input:focus {
  outline: 2px solid var(--fsp-lime-mid);
  border-color: var(--fsp-gold);
}
.fsp-grid-search__btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 560px) {
  .fsp-grid-search { flex-direction: column; }
  .fsp-grid-search__btn { width: 100%; }
}

.fsp-slot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

/* Slot cards — dark */
.fsp-slot-card {
  position: relative;
  display: block;
  color: var(--fsp-text);
  border-radius: var(--fsp-radius);
  overflow: hidden;
  background: var(--fsp-panel);
  border: 1px solid var(--fsp-line);
  box-shadow: var(--fsp-shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.fsp-slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--fsp-lime-mid);
  box-shadow: var(--fsp-shadow-lg);
  color: var(--fsp-text);
}
.fsp-slot-card__media {
  position: relative;
  display: block;
  border-radius: 0;
  overflow: hidden;
  background: #0a101c;
  aspect-ratio: 3 / 4;
}
.fsp-slot-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.fsp-slot-card:hover .fsp-slot-card__media img { transform: scale(1.08); }
.fsp-slot-card__hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(18, 21, 26, 0.15) 0%, rgba(18, 21, 26, 0.65) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.fsp-slot-card:hover .fsp-slot-card__hover { opacity: 1; }
.fsp-slot-card__hover span {
  background: var(--fsp-gold);
  color: #0c1220;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(240, 162, 2, 0.35);
}
.fsp-slot-card__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2.2rem 0.7rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 21, 26, 0.92) 55%);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fsp-slot-card__provider {
  display: block;
  font-size: 0.75rem;
  color: var(--fsp-muted);
  margin-top: 0.15rem;
  padding: 0.4rem 0.55rem 0.55rem;
  line-height: 1.3;
}

/* Horizontal rails */
.fsp-grid-section--rail .fsp-slot-rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}
.fsp-grid-section--rail .fsp-slot-rail::-webkit-scrollbar {
  height: 6px;
}
.fsp-grid-section--rail .fsp-slot-rail::-webkit-scrollbar-track {
  background: transparent;
}
.fsp-grid-section--rail .fsp-slot-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.fsp-slot-rail .fsp-slot-card {
  flex: 0 0 148px;
  width: 148px;
  scroll-snap-align: start;
}

/* -------------------------------------------------------------------------- */
/* SlotsLaunch lobby — DARK aesthetic */
/* -------------------------------------------------------------------------- */
.slotsl-lobby-wrapper,
.slotsl-lobby,
.fsp-lobby .slotsl-lobby-wrapper,
.fsp-lobby .slotsl-lobby {
  background: transparent !important;
  color: var(--fsp-text) !important;
}
.slotsl-lobby-section-title,
.slotsl-lobby-section-header h2,
.slotsl-lobby-section-header h3 {
  color: var(--fsp-text) !important;
  font-family: var(--fsp-display), Sora, sans-serif !important;
}
.slotsl-lobby-see-all {
  color: var(--fsp-gold) !important;
}
.slotsl-lobby-item {
  min-width: 180px !important;
  max-width: 200px !important;
  width: 180px !important;
}
@media (max-width: 560px) {
  .slotsl-lobby-item {
    min-width: 148px !important;
    max-width: 160px !important;
    width: 148px !important;
  }
}
.slotsl-lobby-item .slotsl-game,
.slotsl-game {
  background: var(--fsp-panel) !important;
  border: 1px solid var(--fsp-line) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: var(--fsp-shadow) !important;
  min-height: 0 !important;
  height: auto !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}
.slotsl-lobby-item .slotsl-game:hover,
.slotsl-game:hover {
  transform: translateY(-4px) !important;
  border-color: var(--fsp-lime-mid) !important;
  box-shadow: var(--fsp-shadow-md) !important;
}
.slotsl-lobby-item .slotsl-thumb,
.slotsl-thumb {
  position: relative !important;
  background: #0a101c !important;
  flex: 0 0 auto !important;
}
.slotsl-lobby-item .slotsl-thumb img,
.slotsl-thumb img {
  aspect-ratio: 3 / 4 !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  display: block !important;
}
.slotsl-lobby-item .slotsl-meta,
.slotsl-meta {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  z-index: 1 !important;
  margin: 0 !important;
  padding: 0.7rem 0.75rem 0.8rem !important;
  background: var(--fsp-panel) !important;
  border: 0 !important;
  border-top: 1px solid var(--fsp-line) !important;
  min-height: 4.5rem !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 0.28rem !important;
  box-sizing: border-box !important;
}
.slotsl-lobby-item .slotsl-meta .slotsl-title,
.slotsl-meta .slotsl-title,
.slotsl-lobby-item .slotsl-meta .slotsl-provider,
.slotsl-meta .slotsl-provider {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  transform: none !important;
  float: none !important;
  clear: both !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}
.slotsl-lobby-item .slotsl-meta .slotsl-title,
.slotsl-lobby-item .slotsl-meta p.slotsl-title,
.slotsl-grid .slotsl-meta .slotsl-title,
.slotsl-grid .slotsl-meta p.slotsl-title,
.slotsl-container .slotsl-meta p.slotsl-title,
.slotsl-meta .slotsl-title,
.slotsl-meta p.slotsl-title {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: var(--fsp-text) !important;
}
.slotsl-lobby-item .slotsl-meta .slotsl-title a,
.slotsl-lobby-item .slotsl-meta .slotsl-title span,
.slotsl-meta .slotsl-title a,
.slotsl-meta .slotsl-title span {
  color: var(--fsp-text) !important;
  text-decoration: none !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  line-height: 1.3 !important;
  max-height: 2.6em !important;
}
.slotsl-lobby-item .slotsl-meta .slotsl-provider,
.slotsl-lobby-item .slotsl-meta a.slotsl-provider,
.slotsl-lobby-item .slotsl-meta .slotsl-provider a,
body .slotsl-lobby-item .slotsl-meta .slotsl-provider,
.slotsl-grid .slotsl-meta .slotsl-provider,
.slotsl-grid .slotsl-meta a.slotsl-provider,
.slotsl-container .slotsl-meta .slotsl-provider,
.slotsl-container .slotsl-meta a.slotsl-provider,
.slotsl-game .slotsl-meta .slotsl-provider,
.slotsl-game .slotsl-meta a.slotsl-provider,
.slotsl-meta a.slotsl-provider,
.slotsl-meta span.slotsl-provider {
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  display: block !important;
  margin: 0.15rem 0 0 !important;
  padding: 0 !important;
  color: var(--fsp-gold) !important;
  -webkit-text-fill-color: var(--fsp-gold) !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  width: 100% !important;
  max-width: 100% !important;
  z-index: auto !important;
}
.slotsl-lobby-item .slotsl-meta {
  min-height: 0 !important;
  height: auto !important;
  padding: 0.7rem 0.75rem 0.85rem !important;
  flex: 0 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.3rem !important;
  position: relative !important;
}
.slotsl-lobby-item .slotsl-meta .slotsl-title {
  flex: 0 0 auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  position: static !important;
}
.slotsl-lobby-item .slotsl-thumb-url,
.slotsl-thumb-url {
  background: var(--fsp-gold) !important;
  color: #0c1220 !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  border: 0 !important;
  padding: 0.5rem 0.9rem !important;
}
.slotsl-lobby-item .slotsl-thumb-url:hover,
.slotsl-thumb-url:hover {
  background: #a3e820 !important;
  color: #0c1220 !important;
}
.slotsl-lobby-section-header,
.slotsl-lobby-slider {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.slotsl-load-more-btn,
.btn.slotsl-load-more-btn {
  background: var(--fsp-panel) !important;
  color: var(--fsp-gold) !important;
  border: 1px solid var(--fsp-lime-mid) !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  padding: 0.7rem 1.4rem !important;
}
.slotsl-load-more-btn:hover {
  background: var(--fsp-lime-soft) !important;
}
.sl-filter-container,
.sl-mobile-filters {
  background: var(--fsp-panel) !important;
  border: 1px solid var(--fsp-line) !important;
  border-radius: var(--fsp-radius) !important;
  color: var(--fsp-text) !important;
  box-shadow: var(--fsp-shadow);
}

.fsp-empty {
  padding: 2rem;
  border: 1px dashed var(--fsp-line);
  border-radius: var(--fsp-radius);
  background: var(--fsp-panel);
  text-align: center;
  box-shadow: var(--fsp-shadow);
  color: var(--fsp-muted);
}

/* -------------------------------------------------------------------------- */
/* Page hero */
/* -------------------------------------------------------------------------- */
.fsp-page-hero {
  padding: 2.5rem 0 1.5rem;
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(240, 162, 2, 0.1), transparent 60%),
    var(--fsp-surface);
  border-bottom: 1px solid var(--fsp-line);
}
.fsp-page-hero__title {
  margin: 0;
  font-family: var(--fsp-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--fsp-text);
}
.fsp-page-hero__sub { margin: 0.5rem 0 0; color: var(--fsp-muted); }

.fsp-content {
  padding: 2rem 0 3rem;
  max-width: 760px;
}
.fsp-content.fsp-wrap { max-width: var(--fsp-wrap); }
.fsp-muted { color: var(--fsp-muted); font-size: 0.9rem; }

.fsp-provider-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.fsp-provider-list a {
  display: block;
  padding: 0.9rem 1rem;
  background: var(--fsp-panel);
  border: 1px solid var(--fsp-line);
  border-radius: 10px;
  color: var(--fsp-text);
  font-weight: 600;
  box-shadow: var(--fsp-shadow);
}
.fsp-provider-list a:hover {
  border-color: var(--fsp-gold);
  color: var(--fsp-gold);
}

/* -------------------------------------------------------------------------- */
/* Single slot */
/* -------------------------------------------------------------------------- */
body.fsp-slot-single .fsp-main { padding: 0; }
body.single-slotsl .fsp-main,
body.single-slotslaunch .fsp-main { padding: 0; }

.fsp-slot-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: var(--fsp-muted);
}
.fsp-crumb { color: var(--fsp-muted); }
.fsp-crumb.is-current { color: var(--fsp-text); }

.fsp-slot-heading { padding: 0.75rem 0 1rem; }
.fsp-slot-heading__title {
  margin: 0;
  font-family: var(--fsp-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--fsp-text);
}
.fsp-slot-heading__meta {
  margin: 0.35rem 0 0;
  color: var(--fsp-muted);
  font-size: 0.9rem;
}

.fsp-slot-stage {
  background: #080e18;
  border-top: 1px solid var(--fsp-line);
  border-bottom: 1px solid var(--fsp-line);
}
.fsp-slot-stage__frame {
  width: min(100%, 1200px);
  margin: 0 auto;
  min-height: 56vh;
}
.fsp-slot-stage__frame .slotsl-container,
.fsp-slot-stage__frame .slotsl-game,
.fsp-slot-stage__frame iframe {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}
body.single-slotsl .entry-header,
body.single-slotsl .post-title,
body.single-slotsl .wp-block-post-title,
body.single-slotslaunch .entry-header {
  display: none !important;
}
body.fsp-slot-single .slotsl-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* -------------------------------------------------------------------------- */
/* Under game promo */
/* -------------------------------------------------------------------------- */
.fsp-under-game {
  margin: 1.25rem 0 2rem;
  padding: 1.25rem;
  border-radius: var(--fsp-radius);
  background: linear-gradient(135deg, rgba(240, 162, 2, 0.1), rgba(20, 28, 46, 0.35));
  border: 1px solid var(--fsp-line);
  display: grid;
  gap: 1rem;
  box-shadow: var(--fsp-shadow);
}
.fsp-under-game--horizontal {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
}
.fsp-under-game--vertical { grid-template-columns: 1fr; }
.fsp-under-game__img img {
  width: 100%;
  border-radius: 10px;
}
.fsp-under-game__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fsp-gold);
  font-weight: 700;
}
.fsp-under-game__title {
  margin: 0.35rem 0;
  font-family: var(--fsp-display);
  font-size: 1.35rem;
  color: var(--fsp-text);
}
.fsp-under-game__text { margin: 0 0 1rem; color: var(--fsp-muted); }
.fsp-under-game__legal {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--fsp-muted);
}

.fsp-under-game-banner-slot {
  margin: 0.35rem auto 0.85rem;
}
.fsp-under-game-banner {
  margin: 0;
  width: 100%;
}
.fsp-under-game-banner__link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--fsp-line);
  background: var(--fsp-panel);
  transition: border-color 0.2s ease, transform 0.2s ease;
  box-shadow: var(--fsp-shadow);
}
.fsp-under-game-banner__link:hover {
  border-color: var(--fsp-lime-mid);
  transform: translateY(-1px);
}
.fsp-under-game-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 560px) {
  .fsp-under-game-banner img { max-height: 88px; }
  .fsp-under-game-banner-slot { margin-bottom: 0.65rem; }
}

.fsp-hide-mobile { }
.fsp-hide-desktop { }

@media (max-width: 900px) {
  .fsp-hide-mobile { display: none !important; }
  .fsp-under-game--horizontal { grid-template-columns: 1fr; }
}
@media (min-width: 901px) {
  .fsp-hide-desktop { display: none !important; }
}

/* -------------------------------------------------------------------------- */
/* Mega SEO — dark cards */
/* -------------------------------------------------------------------------- */
.fsp-mega-seo {
  padding: 3rem 0 4rem;
  background: var(--fsp-ink);
  border-top: 1px solid var(--fsp-line);
}
.fsp-mega-seo__heading {
  margin: 0 0 1.5rem;
  font-family: var(--fsp-display);
  font-size: 1.5rem;
  color: var(--fsp-text);
}
.fsp-mega-seo__content {
  columns: 1;
  max-width: 820px;
}
.fsp-mega-seo__content p,
.fsp-mega-seo__lead {
  margin: 0 0 1rem;
  color: var(--fsp-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.fsp-mega-seo__item {
  border: 1px solid var(--fsp-line);
  border-radius: 10px;
  background: var(--fsp-panel);
  margin: 0 0 0.65rem;
  overflow: hidden;
  box-shadow: var(--fsp-shadow);
}
.fsp-mega-seo__sub {
  margin: 0;
  padding: 0.85rem 1rem;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fsp-text);
  font-family: var(--fsp-display);
}
.fsp-mega-seo__sub::-webkit-details-marker { display: none; }
.fsp-mega-seo__sub::after {
  content: '+';
  float: right;
  color: var(--fsp-gold);
  font-weight: 800;
}
.fsp-mega-seo__item[open] .fsp-mega-seo__sub::after { content: '–'; }
.fsp-mega-seo__body { padding: 0 1rem 1rem; }
.fsp-mega-seo__body p { margin: 0; color: var(--fsp-muted); }

.fsp-provider-grid {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.fsp-provider-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 10px;
  border: 1px solid var(--fsp-line);
  background: var(--fsp-panel);
  text-decoration: none;
  color: var(--fsp-text);
  box-shadow: var(--fsp-shadow);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.fsp-provider-card:hover {
  border-color: var(--fsp-lime-mid);
  transform: translateY(-2px);
  color: var(--fsp-text);
  box-shadow: var(--fsp-shadow-md);
}
.fsp-provider-card__name { font-weight: 700; font-size: 0.95rem; }
.fsp-provider-card__count {
  font-size: 0.78rem;
  color: var(--fsp-muted);
}

/* -------------------------------------------------------------------------- */
/* Popup — responsive offer modal (1xBet creative friendly) */
/* -------------------------------------------------------------------------- */
.fsp-popup[hidden] { display: none !important; }
.fsp-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 0.85rem;
}
.fsp-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  animation: fsp-fade 0.25s ease;
}
.fsp-popup__panel {
  position: relative;
  width: min(100%, 460px);
  background: #0c1220;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  animation: fsp-rise 0.3s ease;
  z-index: 1;
}
.fsp-popup--offer .fsp-popup__panel,
.fsp-popup--with-image .fsp-popup__panel {
  width: min(100%, 720px);
  background: #080e18;
}
.fsp-popup--image-only .fsp-popup__panel {
  width: min(100%, 860px);
  background: transparent;
  border: 0;
  box-shadow: none;
}
.fsp-popup__close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.fsp-popup__close:hover { background: #f0a202; color: #0c1220; }
.fsp-popup__media {
  display: block;
  line-height: 0;
}
.fsp-popup__media img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 520px);
  object-fit: contain;
  object-position: center;
  display: block;
  background: #000;
}
.fsp-popup--image-only .fsp-popup__media img {
  max-height: min(78vh, 560px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.fsp-popup__body { padding: 1.1rem 1.2rem 1.35rem; }
.fsp-popup__title {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}
.fsp-popup__text { margin: 0 0 1rem; color: var(--fsp-muted); }
.fsp-popup__cta { width: 100%; justify-content: center; }
.fsp-popup__legal {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  color: #8b93a1;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .fsp-popup {
    padding: 0.55rem;
    align-items: center;
  }
  .fsp-popup--offer .fsp-popup__panel,
  .fsp-popup--with-image .fsp-popup__panel,
  .fsp-popup--image-only .fsp-popup__panel {
    width: min(100%, 520px);
  }
  .fsp-popup__media img,
  .fsp-popup--image-only .fsp-popup__media img {
    max-height: min(70vh, 420px);
  }
  .fsp-popup__body {
    padding: 0.9rem 0.95rem 1.1rem;
  }
  .fsp-popup__title { font-size: 1.05rem; }
}

@keyframes fsp-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fsp-rise {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------------------- */
/* Footer — darker */
/* -------------------------------------------------------------------------- */
.fsp-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--fsp-line);
  background: #0a101c;
}
.fsp-footer--guru {
  background: #0c0f14;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--fsp-line);
}
.fsp-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.9fr;
  gap: 2rem;
}
.fsp-footer--guru .fsp-footer__grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr 0.95fr;
  gap: 2rem;
}
.fsp-footer__brand {
  margin: 0;
  font-family: var(--fsp-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--fsp-text);
}
.fsp-footer--guru .fsp-footer__brand .fsp-brand__name-free,
.fsp-footer .fsp-brand__name-free {
  color: #ffffff;
}
.fsp-footer--guru .fsp-footer__brand .fsp-brand__name-gameplay,
.fsp-footer .fsp-brand__name-gameplay {
  color: var(--fsp-gold);
}
.fsp-footer__tag,
.fsp-footer__legal,
.fsp-footer__copy {
  color: var(--fsp-muted);
  font-size: 0.85rem;
}
.fsp-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}
.fsp-footer__nav-title {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fsp-muted);
  font-weight: 700;
}
.fsp-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.fsp-footer__links a { color: var(--fsp-text); }
.fsp-footer__links a:hover { color: var(--fsp-gold); }

.fsp-nav-overlay { display: none; }
html.fsp-nav-open { overflow: hidden; }
@media (max-width: 900px) {
  .fsp-nav-overlay:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 10040;
  }
}

.fsp-lobby { padding: 1.5rem 0 2rem; }
.fsp-lobby__plugin .slotsl-container { margin: 0 !important; }

/* -------------------------------------------------------------------------- */
/* Banners */
/* -------------------------------------------------------------------------- */
.fsp-banner-bar {
  width: 100%;
  background: var(--fsp-surface);
  border-bottom: 1px solid var(--fsp-line);
}
.fsp-banner-bar__btn,
.fsp-banner-bar__link {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}
.fsp-banner-bar img {
  width: 100%;
  max-height: 48px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.fsp-banner-fixed {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.35rem 2.25rem 0.35rem 0.75rem;
  background: linear-gradient(90deg, #c88a02, #f0a202 40%, #c88a02);
  border-block: 1px solid rgba(240, 162, 2, 0.35);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
}
.fsp-banner-fixed--bottom { bottom: 0; }
.fsp-banner-fixed--top { top: var(--fsp-header, 112px); }
.fsp-banner-fixed__inner {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  background: transparent;
  color: #0c1220;
  font-weight: 700;
  font-family: var(--fsp-display), Sora, sans-serif;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
  max-width: 100%;
}
.fsp-banner-fixed__img {
  height: 32px;
  width: auto;
  border-radius: 4px;
}
.fsp-banner-fixed__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fsp-banner-fixed__x {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(18, 21, 26, 0.75);
  font-size: 1.35rem;
  cursor: pointer;
  line-height: 1;
}
body.fsp-theme.has-fixed-banner-bottom { padding-bottom: 52px; }

.fsp-hide-mobile {}
.fsp-hide-desktop {}
@media (max-width: 900px) {
  .fsp-hide-mobile { display: none !important; }
  .fsp-banner-fixed {
    min-height: 48px;
    padding: 0.45rem 2.5rem 0.45rem 0.65rem;
  }
  .fsp-banner-fixed__text {
    font-size: 0.8rem;
    white-space: normal;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .fsp-banner-bar img { max-height: 40px; }
  body.fsp-theme.has-fixed-banner-bottom { padding-bottom: 64px; }
}
@media (min-width: 901px) {
  .fsp-hide-desktop { display: none !important; }
}

/* -------------------------------------------------------------------------- */
/* Responsive — header two-row collapse + grids */
/* -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .fsp-slot-grid { grid-template-columns: repeat(4, 1fr); }
  .fsp-trap-stats__row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root {
    /* Brand row + sticky search — JS syncs exact px on open */
    --fsp-header: 118px;
  }

  .fsp-nav-toggle { display: flex; flex-shrink: 0; }
  .fsp-brand__mark { width: 32px; height: 32px; }
  .fsp-brand__name { font-size: 0.95rem; }
  .fsp-brand__logo { max-height: 34px; }

  .fsp-header--guru-dark {
    min-height: 0;
    height: auto;
  }
  .fsp-header__top-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "brand tools toggle"
      "search search search";
    align-items: center;
    column-gap: 0.55rem;
    row-gap: 0.45rem;
    min-height: 0;
    padding: 0.45rem 0 0.55rem;
  }
  .fsp-brand {
    grid-area: brand;
    order: unset;
  }
  .fsp-header__right {
    grid-area: tools;
    order: unset;
    margin-left: 0;
  }
  .fsp-nav-toggle {
    grid-area: toggle;
    order: unset;
  }
  .fsp-header__cta {
    display: none;
  }

  /* Search always visible under logo row */
  .fsp-header-search,
  .fsp-header-search--wide {
    display: flex !important;
    grid-area: search;
    order: unset;
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .fsp-header-search--wide .fsp-header-search__input {
    height: 40px;
    font-size: 0.88rem;
  }

  .fsp-nav {
    position: fixed;
    top: var(--fsp-header);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10050;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem 1rem 1.5rem;
    background: #0c1220;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    max-height: calc(100vh - var(--fsp-header));
    overflow-y: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .fsp-header--guru .fsp-nav,
  .fsp-header--guru-dark .fsp-nav {
    flex: none;
    justify-content: flex-start;
  }
  .fsp-nav.is-open { display: flex; }

  .fsp-menu,
  .fsp-menu--guru,
  .fsp-menu--guru-dark {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    overflow: visible;
    width: 100%;
  }
  .fsp-menu--guru-dark > .fsp-menu__item {
    flex: 1 1 auto;
    width: 100%;
  }
  .fsp-menu--guru-dark .fsp-menu__link {
    padding: 0.9rem 0.75rem;
    border-bottom: 0;
    width: 100%;
    color: #e8eef8;
    font-size: 1.02rem;
    white-space: normal;
  }
  .fsp-menu--guru-dark .fsp-menu__link:hover,
  .fsp-menu--guru-dark .fsp-menu__item.is-active > .fsp-menu__link {
    border-bottom-color: transparent;
    background: rgba(240, 162, 2, 0.12);
    border-radius: 8px;
    color: #f0a202;
  }

  .fsp-menu__item--has-sub {
    position: relative;
  }
  .fsp-menu__item--games > .fsp-mega,
  .fsp-menu__item--games:hover > .fsp-mega,
  .fsp-menu__item--games:focus-within > .fsp-mega,
  .fsp-menu__item--games.is-open > .fsp-mega {
    display: none !important;
  }
  .fsp-menu__chev--desktop { display: none; }
  .fsp-menu__item--has-sub > .fsp-mega,
  .fsp-menu__item--has-sub:hover > .fsp-mega,
  .fsp-menu__item--has-sub:focus-within > .fsp-mega {
    display: none;
  }
  .fsp-menu__item--has-sub.is-open > .fsp-mega,
  .fsp-menu__item--has-sub.is-open:hover > .fsp-mega,
  .fsp-menu__item--has-sub.is-open:focus-within > .fsp-mega {
    display: block;
    position: static;
    box-shadow: none;
    border-top: 0;
    padding: 0.35rem 0 0.65rem 0.75rem;
    background: transparent;
  }
  .fsp-mega__inner,
  .fsp-mega--sm .fsp-mega__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }
  .fsp-mega__col--cta {
    background: rgba(0, 0, 0, 0.2);
  }

  .fsp-header__tools {
    flex-wrap: wrap;
    width: 100%;
    margin-left: 0;
    gap: 0.65rem;
  }

  .fsp-hero--cg {
    padding: 1.85rem 0 1.5rem;
  }
  .fsp-hero--cg .fsp-hero__row {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .fsp-hero__banner {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 0;
  }
  .fsp-quick-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }
  .fsp-quick {
    min-height: 88px;
    padding: 0.85rem 0.45rem;
  }
  .fsp-lang--dropdown .fsp-lang__list {
    right: auto;
    left: 0;
    min-width: min(100vw - 2rem, 220px);
  }
  .fsp-header__right {
    flex-wrap: nowrap;
    gap: 0.45rem;
  }
  .fsp-lang--dropdown .fsp-lang__btn {
    min-height: 44px;
    min-width: 44px;
  }
  .fsp-trap-stats__bar,
  .fsp-trap-stats__row {
    grid-template-columns: repeat(2, 1fr);
  }
  .fsp-trap {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .fsp-stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .fsp-footer__grid,
  .fsp-footer--guru .fsp-footer__grid {
    grid-template-columns: 1fr;
  }
  .fsp-slot-grid { grid-template-columns: repeat(3, 1fr); }
}

@media screen and (max-width: 782px) {
  /* Mobile nav top is synced from header bottom via JS (--fsp-header). */
}
@media screen and (min-width: 783px) and (max-width: 900px) {
  /* Mobile nav top is synced from header bottom via JS (--fsp-header). */
}

@media (max-width: 560px) {
  .fsp-slot-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .fsp-trust { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .fsp-trap-stats__bar,
  .fsp-trap-stats__row { grid-template-columns: 1fr 1fr; gap: 0; }
  .fsp-trap {
    padding: 1rem 0.85rem 0.85rem;
    min-height: 86px;
  }
  .fsp-trap__num { font-size: 1.2rem; }
  .fsp-quick-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }
  .fsp-quick {
    min-height: 80px;
    padding: 0.7rem 0.5rem;
  }
  .fsp-brand__name { font-size: 0.82rem; }
}

/* -------------------------------------------------------------------------- */
/* Games lobby modern */
/* -------------------------------------------------------------------------- */
.fsp-page-hero__actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.fsp-howto__cta {
  margin: 2rem 0 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 10px;
  border: 1px solid var(--fsp-lime-mid);
  background: linear-gradient(135deg, rgba(240, 162, 2, 0.1), rgba(20, 28, 46, 0.25));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--fsp-shadow);
}
.fsp-howto__cta-text {
  margin: 0;
  max-width: 36rem;
  color: var(--fsp-text);
  font-weight: 600;
}
.fsp-type-chips--howto {
  margin: 0 0 1.5rem;
}
.fsp-lobby-search {
  display: flex;
  gap: 0.65rem;
  margin: 1rem 0 0.5rem;
  max-width: 640px;
}
.fsp-lobby-search__input {
  flex: 1;
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid var(--fsp-line);
  background: var(--fsp-panel);
  color: var(--fsp-text);
  padding: 0.7rem 1rem;
  font-size: 1rem;
  box-shadow: var(--fsp-shadow);
}
.fsp-lobby-search__input::placeholder { color: var(--fsp-muted); }
.fsp-lobby-search__input:focus {
  outline: 2px solid var(--fsp-lime-mid);
  border-color: var(--fsp-gold);
}
.fsp-lobby-tips { color: var(--fsp-muted); font-size: 0.85rem; margin: 0; }

.fsp-lobby--modern .slotsl-container,
.fsp-slotsl-enhanced .slotsl-container {
  background: transparent !important;
}
.fsp-slotsl-enhanced .slotsl-filters,
.fsp-slotsl-enhanced .filter-container,
.fsp-lobby--modern .slotsl-filters {
  background: var(--fsp-panel) !important;
  border: 1px solid var(--fsp-line) !important;
  border-radius: 10px !important;
  padding: 1rem !important;
  margin-bottom: 1.25rem !important;
  box-shadow: var(--fsp-shadow) !important;
}
.fsp-slotsl-enhanced input[type="text"],
.fsp-slotsl-enhanced input[type="search"],
.fsp-slotsl-enhanced select,
.fsp-lobby--modern .slotsl-filters input,
.fsp-lobby--modern .slotsl-filters select {
  background: var(--fsp-surface) !important;
  color: var(--fsp-text) !important;
  border: 1px solid var(--fsp-line) !important;
  border-radius: 10px !important;
  min-height: 42px !important;
  padding: 0.45rem 0.7rem !important;
}
.fsp-slotsl-enhanced .sl-submit-search,
.fsp-lobby--modern .sl-submit-search {
  background: var(--fsp-gold) !important;
  color: #0c1220 !important;
  border: 0 !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  padding: 0.55rem 1rem !important;
}

@media (max-width: 900px) {
  .fsp-lobby-search { flex-direction: column; }
  .fsp-trust { grid-template-columns: repeat(2, 1fr); }
  .fsp-hero__inner { max-width: 100%; }
}

/* -------------------------------------------------------------------------- */
/* Game type chips / tags — dark */
/* -------------------------------------------------------------------------- */
.fsp-types-bar {
  padding: 1.25rem 0 0.25rem;
}
.fsp-section-head--compact {
  margin-bottom: 0.85rem;
}
.fsp-type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 0.5rem;
}
.fsp-type-chips--hero {
  margin: 0.85rem 0 1rem;
}
.fsp-type-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--fsp-line);
  background: var(--fsp-panel);
  color: var(--fsp-text);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--fsp-shadow);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.fsp-type-chip:hover {
  border-color: var(--fsp-lime-mid);
  color: var(--fsp-gold);
  background: var(--fsp-lime-soft);
}
.fsp-type-chip--all {
  border-color: var(--fsp-lime-mid);
  color: var(--fsp-gold);
}
.fsp-type-tags {
  margin-top: 1.1rem;
}
.fsp-type-tags__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fsp-muted);
  margin-bottom: 0.55rem;
}
.fsp-type-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.fsp-type-tag {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--fsp-line);
  color: var(--fsp-text);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--fsp-panel);
}
.fsp-type-tag:hover {
  border-color: var(--fsp-lime-mid);
  color: var(--fsp-gold);
}
.fsp-type-tag.is-active {
  background: var(--fsp-lime-soft);
  border-color: var(--fsp-lime-mid);
  color: var(--fsp-gold);
}
.fsp-page-hero--type .fsp-page-hero__eyebrow {
  margin: 0 0 0.45rem;
  color: var(--fsp-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fsp-lobby--type {
  padding-bottom: 2rem;
}

/* -------------------------------------------------------------------------- */
/* Wide promo / affiliate banners */
/* -------------------------------------------------------------------------- */
.fsp-promo-banners {
  padding: 0.35rem 0 0.85rem;
}
.fsp-promo-banners__inner {
  display: grid;
  gap: 0.45rem;
}
.fsp-promo-banner {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--fsp-line);
  background: var(--fsp-panel);
  box-shadow: none;
  transition: border-color 0.2s ease;
}
.fsp-promo-banner:hover {
  transform: none;
  border-color: var(--fsp-gold);
}
.fsp-promo-banner img {
  width: 100%;
  height: 48px;
  max-height: 48px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #0a101c;
}
@media (max-width: 560px) {
  .fsp-promo-banner img {
    height: 40px;
    max-height: 40px;
  }
}

/* ========================================================================== */
/* DemoSlot24 DARK UI — section overrides (APPEND)                            */
/* Polished section heads, list cards, hero, footer, chips, single game, etc. */
/* ========================================================================== */

/* -------------------------------------------------------------------------- */
/* 1) Section heads ("Best casinos" style) */
/* -------------------------------------------------------------------------- */
.fsp-section-head--guru {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}
.fsp-section-head--guru .fsp-section-title {
  margin: 0;
  font-family: var(--fsp-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #e8eef8;
  letter-spacing: -0.02em;
}
.fsp-section-head__left {
  min-width: 0;
}
.fsp-section-head__right {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.fsp-section-underline {
  display: block;
  width: 42px;
  height: 3px;
  background: #f0a202;
  margin-top: 0.4rem;
  border-radius: 2px;
}
.fsp-show-all {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #e8eef8;
  font-size: 0.85rem;
  font-weight: 600;
  background: #1a2438;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.fsp-show-all:hover {
  border-color: #f0a202;
  color: #f0a202;
}
.fsp-rail-nav {
  display: inline-flex;
  gap: 0.35rem;
}
.fsp-rail-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a2438;
  color: #e8eef8;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.fsp-rail-btn:hover {
  border-color: #f0a202;
  color: #f0a202;
}
.fsp-rail-btn:disabled,
.fsp-rail-btn[aria-disabled="true"] {
  opacity: 0.4;
  cursor: default;
  border-color: rgba(255, 255, 255, 0.08);
  color: #93a0b8;
}

/* -------------------------------------------------------------------------- */
/* 2) List cards — exact "Best casinos" row cards */
/* -------------------------------------------------------------------------- */
.fsp-list-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 320px;
  max-width: 380px;
  padding: 0.85rem 1rem;
  background: #141c2e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: #e8eef8;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
  box-shadow: none;
}
.fsp-list-rail {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 162, 2, 0.35) transparent;
}
.fsp-list-rail::-webkit-scrollbar { height: 6px; }
.fsp-list-rail::-webkit-scrollbar-track { background: transparent; }
.fsp-list-rail::-webkit-scrollbar-thumb {
  background: rgba(240, 162, 2, 0.35);
  border-radius: 4px;
}
.fsp-list-rail .fsp-list-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
}
.fsp-list-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.fsp-list-stack .fsp-list-card {
  min-width: 0;
  max-width: none;
  width: 100%;
}
.fsp-list-card:hover {
  border-color: #f0a202;
  transform: translateY(-1px);
  color: #e8eef8;
}
.fsp-list-card__logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: #0c1220;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.fsp-list-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fsp-list-card__logo--letter {
  font-weight: 800;
  color: #f0a202;
  font-size: 1.25rem;
  font-family: var(--fsp-display);
}
.fsp-list-card__body {
  flex: 1;
  min-width: 0;
}
.fsp-list-card__name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #e8eef8;
}
.fsp-list-card__sub {
  display: block;
  color: #93a0b8;
  font-size: 0.8rem;
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fsp-list-card__badge {
  text-align: right;
  flex-shrink: 0;
}
.fsp-list-card__score {
  display: inline-block;
  background: #f0a202;
  color: #0c1220;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  line-height: 1.2;
}
.fsp-list-card__rank {
  display: block;
  color: #93a0b8;
  font-size: 0.72rem;
  margin-top: 0.25rem;
}
.fsp-list-card__chev {
  color: #93a0b8;
  font-size: 1.4rem;
  margin-left: 0.25rem;
  flex-shrink: 0;
  line-height: 1;
}

/* -------------------------------------------------------------------------- */
/* 3) Page hero dark */
/* -------------------------------------------------------------------------- */
.fsp-page-hero--guru {
  background: linear-gradient(135deg, #0f1a28 0%, #0c1220 55%, #141c2e 100%);
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fsp-page-hero--guru .fsp-page-hero__title {
  margin: 0;
  color: #e8eef8;
  font-family: var(--fsp-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.fsp-page-hero--guru .fsp-page-hero__sub {
  color: #93a0b8;
  margin: 0.45rem 0 0;
}
.fsp-page-hero__eyebrow {
  color: #f0a202;
  font-weight: 700;
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fsp-page-hero__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}
.fsp-lobby-search {
  position: relative;
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
  max-width: 720px;
}
.fsp-lobby-search__ico {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #93a0b8;
  pointer-events: none;
  z-index: 1;
}
.fsp-lobby-search__input {
  flex: 1;
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #141c2e;
  color: #fff;
  padding: 0.75rem 1rem 0.75rem 2.4rem;
  font-size: 1rem;
  box-shadow: none;
}
.fsp-lobby-search__input::placeholder { color: #93a0b8; }
.fsp-lobby-search__input:focus {
  outline: 2px solid rgba(240, 162, 2, 0.45);
  border-color: #f0a202;
}
.fsp-lobby-search__btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* -------------------------------------------------------------------------- */
/* 4) Footer dark fat */
/* -------------------------------------------------------------------------- */
.fsp-footer--guru-dark {
  background: #0a101c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.75rem 0 1.5rem;
  color: #93a0b8;
}
.fsp-footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) 0.9fr;
  gap: 1.5rem;
}
.fsp-footer__bottom {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.fsp-footer__brand-col {
  min-width: 0;
}
.fsp-footer__brand .fsp-brand__name-free { color: #fff; }
.fsp-footer__brand .fsp-brand__name-gameplay { color: #fff; }
.fsp-footer--guru-dark .fsp-footer__brand {
  margin: 0 0 0.65rem;
  font-family: var(--fsp-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
}
.fsp-footer--guru-dark .fsp-footer__tag,
.fsp-footer--guru-dark .fsp-footer__legal,
.fsp-footer--guru-dark .fsp-footer__copy {
  color: #93a0b8;
  font-size: 0.85rem;
  margin: 0 0 0.55rem;
  line-height: 1.55;
}
.fsp-footer--guru-dark .fsp-footer__copy { margin: 0; }
.fsp-footer__nav-title {
  color: #fff;
  font-weight: 700;
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fsp-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.fsp-footer__links a { color: #93a0b8; text-decoration: none; }
.fsp-footer__links a:hover { color: #f0a202; }
.fsp-footer--guru-dark .fsp-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

/* Force override leftover light footer (--guru without -dark) */
.fsp-footer--guru,
.fsp-footer.fsp-footer--guru {
  background: #0a101c !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #93a0b8 !important;
  padding: 2.75rem 0 1.5rem;
}
.fsp-footer--guru .fsp-footer__nav-title,
.fsp-footer--guru-dark .fsp-footer__nav-title {
  color: #fff !important;
}
.fsp-footer--guru .fsp-footer__links a {
  color: #93a0b8 !important;
}
.fsp-footer--guru .fsp-footer__links a:hover {
  color: #f0a202 !important;
}
.fsp-footer--guru .fsp-footer__brand .fsp-brand__name-free,
.fsp-footer--guru-dark .fsp-footer__brand .fsp-brand__name-free {
  color: #fff !important;
}
.fsp-footer--guru .fsp-footer__brand .fsp-brand__name-gameplay,
.fsp-footer--guru-dark .fsp-footer__brand .fsp-brand__name-gameplay {
  color: #f0a202 !important;
}

/* -------------------------------------------------------------------------- */
/* 5) Content / guru sections, mega-seo, type chips, providers */
/* -------------------------------------------------------------------------- */
.fsp-content--guru {
  padding: 2rem 0 3rem;
  color: #e8eef8;
}
.fsp-content--guru h1,
.fsp-content--guru h2,
.fsp-content--guru h3 {
  color: #e8eef8;
  font-family: var(--fsp-display);
}
.fsp-content--guru p,
.fsp-content--guru li {
  color: #93a0b8;
}
.fsp-content--guru a:hover { color: #20c5a8; }

.fsp-guru-section {
  padding: 1.75rem 0 2rem;
}
.fsp-types-bar {
  padding: 1.5rem 0 0.5rem;
  background: transparent;
}
.fsp-providers-home {
  padding-bottom: 2.5rem;
}
.fsp-grid-section.fsp-guru-section {
  padding: 1.75rem 0 2.25rem;
}
.fsp-grid-section--list .fsp-list-rail,
.fsp-grid-section--list .fsp-list-stack {
  margin-top: 0.15rem;
}

/* Mega SEO — dark panels */
.fsp-mega-seo {
  padding: 3rem 0 4rem;
  background: #0a101c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.fsp-mega-seo__heading {
  margin: 0 0 1.5rem;
  font-family: var(--fsp-display);
  font-size: 1.5rem;
  color: #e8eef8;
}
.fsp-mega-seo__content p,
.fsp-mega-seo__lead {
  color: #93a0b8;
}
.fsp-mega-seo__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: #141c2e;
  margin: 0 0 0.65rem;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}
.fsp-mega-seo__sub {
  color: #e8eef8;
  background: transparent;
}
.fsp-mega-seo__sub::after { color: #f0a202; }
.fsp-mega-seo__body p { color: #93a0b8; }

.fsp-mega-seo__catalog {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.fsp-mega-seo__catalog-title {
  margin: 1.25rem 0 0.65rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
}
.fsp-mega-seo__games {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
.fsp-mega-seo__game-link {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #161a21;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.fsp-mega-seo__game-link:hover {
  border-color: rgba(240, 162, 2, 0.45);
}
.fsp-mega-seo__game-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 auto;
  background: #0a101c;
}
.fsp-mega-seo__game-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.fsp-mega-seo__game-name {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.3;
}
.fsp-mega-seo__game-prov {
  color: #f0a202;
  font-size: 0.75rem;
  font-weight: 700;
}
.fsp-mega-seo__game-meta {
  color: #93a0b8;
  font-size: 0.78rem;
  line-height: 1.4;
}
.fsp-mega-seo__providers {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.fsp-mega-seo__providers a {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c1220;
  color: #e8ecf2;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 650;
}
.fsp-mega-seo__providers a:hover {
  border-color: #f0a202;
  color: #f0a202;
}
.fsp-mega-seo__providers span { color: #8b93a1; font-weight: 600; }
.fsp-mega-seo__catalog-more {
  margin: 0.9rem 0 0;
}
.fsp-mega-seo__catalog-more a {
  color: #f0a202;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 720px) {
  .fsp-mega-seo__games { grid-template-columns: 1fr; }
}

/* Type chips — dark with lime active */
.fsp-type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.fsp-type-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a2438;
  color: #e8eef8;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.fsp-type-chip:hover {
  border-color: #f0a202;
  color: #f0a202;
}
.fsp-type-chip.is-active,
.fsp-type-chip--active,
.fsp-type-chip[aria-current="page"] {
  background: rgba(240, 162, 2, 0.14);
  border-color: #f0a202;
  color: #f0a202;
}
.fsp-type-chip--all {
  border-style: dashed;
}
.fsp-type-tags__list { gap: 0.45rem; }
.fsp-type-tag {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a2438;
  color: #e8eef8;
}
.fsp-type-tag:hover,
.fsp-type-tag.is-active {
  border-color: #f0a202;
  color: #f0a202;
  background: rgba(240, 162, 2, 0.12);
}

/* Provider cards / list stay dark */
.fsp-provider-card {
  background: #141c2e !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #e8eef8 !important;
}
.fsp-provider-card:hover {
  border-color: #f0a202 !important;
  color: #e8eef8 !important;
}
.fsp-provider-card__count { color: #93a0b8; }
.fsp-provider-list a {
  background: #141c2e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #e8eef8;
}
.fsp-provider-list a:hover {
  border-color: #f0a202;
  color: #f0a202;
}

/* Stat cards — force dark if any light leftovers remain */
.fsp-stat-card {
  background: #141c2e !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #e8eef8 !important;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35) !important;
}
.fsp-stat-card:hover {
  border-color: #f0a202 !important;
  color: #e8eef8 !important;
}
.fsp-stat-card__num { color: #f0a202 !important; }
.fsp-stat-card__label { color: #e8eef8 !important; }
.fsp-stat-card__hint { color: #93a0b8 !important; }

/* Grid search dark cohesion */
.fsp-grid-search__input {
  background: #141c2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.fsp-grid-search__input:focus {
  outline: 2px solid rgba(240, 162, 2, 0.45);
  border-color: #f0a202;
}

/* -------------------------------------------------------------------------- */
/* 6) Single game toolbar / stage — dark cohesive */
/* -------------------------------------------------------------------------- */
body.fsp-slot-single,
body.single-slotsl,
body.single-slotslaunch {
  background: #0c1220;
}
.fsp-slot-single-page {
  background: #0c1220;
  color: #e8eef8;
}
.fsp-slot-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 0.25rem;
  font-size: 0.85rem;
  color: #93a0b8;
  background: transparent;
}
.fsp-slot-toolbar .fsp-crumb {
  color: #93a0b8;
  text-decoration: none;
}
.fsp-slot-toolbar .fsp-crumb:hover { color: #f0a202; }
.fsp-slot-toolbar .fsp-crumb.is-current { color: #e8eef8; }
.fsp-slot-toolbar > span { color: rgba(255, 255, 255, 0.2); }

.fsp-slot-heading {
  padding: 0.75rem 0 1rem;
}
.fsp-slot-heading__title {
  margin: 0;
  color: #e8eef8;
  font-family: var(--fsp-display);
}
.fsp-slot-heading__meta {
  margin: 0.35rem 0 0;
  color: #93a0b8;
}

.fsp-slot-stage {
  background: #080e18;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fsp-slot-stage__frame {
  width: min(100%, 1200px);
  margin: 0 auto;
  min-height: 56vh;
  background: #080e18;
}
.fsp-under-game-banner-slot {
  padding: 0.75rem 0 1rem;
}

/* -------------------------------------------------------------------------- */
/* 7) Mobile breakpoints */
/* -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .fsp-footer__top {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.35rem;
  }
  .fsp-footer__meta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .fsp-list-stack,
  .fsp-list-stack--providers {
    grid-template-columns: 1fr;
  }
  .fsp-list-card {
    min-width: 0;
    max-width: none;
  }
  .fsp-list-rail .fsp-list-card {
    flex: 0 0 min(300px, 82vw);
  }
  .fsp-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .fsp-footer__brand-col {
    grid-column: 1 / -1;
  }
  .fsp-section-head--guru {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .fsp-page-hero__row {
    align-items: flex-start;
  }
  .fsp-lobby-search {
    flex-direction: column;
    max-width: none;
  }
  .fsp-lobby-search__btn { width: 100%; }
  .fsp-stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fsp-footer__top {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
  .fsp-list-rail .fsp-list-card {
    flex: 0 0 min(280px, 88vw);
    min-width: 260px;
  }
  .fsp-section-head--guru .fsp-section-title {
    font-size: 1.15rem;
  }
  .fsp-show-all {
    height: 32px;
    font-size: 0.8rem;
    padding: 0 0.75rem;
  }
  .fsp-rail-btn {
    width: 32px;
    height: 32px;
  }
  .fsp-list-card__logo {
    width: 48px;
    height: 48px;
  }
  .fsp-page-hero--guru {
    padding: 1.5rem 0 1.25rem;
  }
  .fsp-mega-seo {
    padding: 2rem 0 2.5rem;
  }
  .fsp-stat-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .fsp-list-card {
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
  }
  .fsp-list-card__chev { display: none; }
  .fsp-section-head__right {
    width: 100%;
    justify-content: space-between;
  }
}

/* ==========================================================================
   Premium / guru single game detail
   ========================================================================== */
.fsp-guru-single {
  background: #0c1220;
  color: #e8eef8;
  padding-bottom: 1.5rem;
}
.fsp-guru-player {
  padding: 0.35rem 0 1.25rem;
}
.fsp-guru-player__chrome {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a101c;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}
.fsp-guru-player__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(90deg, #4b1f7a 0%, #5c2d91 55%, #6a35a8 100%);
}
.fsp-guru-player__identity {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.fsp-guru-player__thumb {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: #2a1844;
  flex-shrink: 0;
}
.fsp-guru-player__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.fsp-guru-player__by {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}
.fsp-guru-player__real {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 44px;
  padding: 0 1.15rem;
  border-radius: 10px;
  background: #6f3bb8;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(40, 10, 70, 0.35);
}
.fsp-guru-player__real:hover {
  background: #7d48cb;
  color: #fff !important;
}
.fsp-guru-player__stage {
  position: relative;
  background: #07090c;
  min-height: min(72vh, 720px);
  overflow: hidden;
}
.fsp-guru-player__blur {
  position: absolute;
  inset: -8% -4%;
  background-image: var(--fsp-game-art);
  background-size: cover;
  background-position: center;
  filter: blur(28px) saturate(1.05);
  opacity: 0.38;
  transform: scale(1.08);
  pointer-events: none;
}
.fsp-guru-player__blur::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 12, 0.82) 0%, rgba(7, 9, 12, 0.28) 35%, rgba(7, 9, 12, 0.28) 65%, rgba(7, 9, 12, 0.82) 100%),
    linear-gradient(180deg, rgba(7, 9, 12, 0.35), rgba(7, 9, 12, 0.55));
}
.fsp-guru-player__frame {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  margin: 0 auto;
  min-height: min(72vh, 720px);
  background: transparent;
}
.fsp-guru-player__frame .slotsl-container,
.fsp-guru-player__frame .slotsl-game,
.fsp-guru-player__frame iframe {
  width: 100% !important;
  max-width: 100%;
  min-height: min(68vh, 680px);
  border: 0;
  display: block;
  background: #000;
}
.fsp-guru-player__tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.7rem 1rem;
  background: #161b22;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.fsp-guru-player__tools-left,
.fsp-guru-player__tools-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.fsp-guru-chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 0.75rem;
  border-radius: 8px;
  background: rgba(240, 162, 2, 0.12);
  border: 1px solid rgba(240, 162, 2, 0.35);
  color: #f0a202;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fsp-guru-tool {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 34px;
  padding: 0 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1c222b;
  color: #e8eef8;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.fsp-guru-tool:hover {
  border-color: #f0a202;
  color: #f0a202;
}
.fsp-guru-tool.is-copied {
  border-color: #f0a202;
  color: #f0a202;
}

.fsp-guru-detail {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 1.5rem 1.75rem;
  padding: 0.5rem 0 1.25rem;
  align-items: start;
}
.fsp-guru-poster {
  border-radius: 10px;
  overflow: hidden;
  background: #0a101c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.9rem;
  aspect-ratio: 3 / 4;
}
.fsp-guru-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fsp-guru-info {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #141c2e;
}
.fsp-guru-info__head {
  padding: 0.75rem 0.95rem;
  background: #222833;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fsp-guru-info__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.fsp-guru-info__table th,
.fsp-guru-info__table td {
  padding: 0.7rem 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  vertical-align: middle;
}
.fsp-guru-info__table tr:nth-child(even) th,
.fsp-guru-info__table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.fsp-guru-info__table th {
  color: #93a0b8;
  font-weight: 500;
  width: 62%;
}
.fsp-guru-info__table td {
  color: #e8eef8;
  font-weight: 700;
  text-align: right;
}
.fsp-guru-yn {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
}
.fsp-guru-yn--yes {
  background: rgba(240, 162, 2, 0.16);
  color: #f0a202;
}
.fsp-guru-yn--no {
  background: rgba(255, 255, 255, 0.08);
  color: #8b93a1;
}

.fsp-guru-main__title {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.fsp-guru-main__lead {
  margin: 0 0 1.15rem;
  color: #b7bfcb;
  line-height: 1.65;
  max-width: 62ch;
}
.fsp-guru-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}
.fsp-guru-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.55rem;
  row-gap: 0.15rem;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  background: #141c2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.fsp-guru-stat__ico {
  grid-row: 1 / span 2;
  align-self: center;
  color: #8b93a1;
  line-height: 0;
}
.fsp-guru-stat__label {
  color: #93a0b8;
  font-size: 0.8rem;
}
.fsp-guru-stat__value {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.fsp-guru-block {
  margin: 0 0 1.5rem;
}
.fsp-guru-block__title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
}
.fsp-guru-block__ico {
  color: #f0a202;
  font-size: 0.95rem;
}
.fsp-guru-block p {
  margin: 0 0 0.75rem;
  color: #b7bfcb;
  line-height: 1.65;
}
.fsp-guru-link {
  color: #f0a202 !important;
  text-decoration: none !important;
  font-weight: 700;
}
.fsp-guru-link:hover { text-decoration: underline !important; }
.fsp-guru-provider-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: #141c2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none !important;
  color: inherit;
}
.fsp-guru-provider-card:hover {
  border-color: #f0a202;
}
.fsp-guru-provider-card__badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(240, 162, 2, 0.14);
  color: #f0a202;
  font-weight: 900;
  font-size: 1.1rem;
}
.fsp-guru-provider-card__name {
  flex: 1;
  color: #fff;
  font-weight: 800;
}
.fsp-guru-provider-card__chev {
  color: #8b93a1;
  font-size: 1.35rem;
  line-height: 1;
}

.fsp-wide-rail {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.65rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 162, 2, 0.45) transparent;
}
.fsp-wide-rail::-webkit-scrollbar { height: 4px; }
.fsp-wide-rail::-webkit-scrollbar-thumb {
  background: rgba(240, 162, 2, 0.55);
  border-radius: 999px;
}
.fsp-wide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.9rem;
}
.fsp-wide-card {
  flex: 0 0 210px;
  width: 210px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
}
.fsp-wide-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #0a101c;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.fsp-wide-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.fsp-wide-card:hover .fsp-wide-card__media img { transform: scale(1.05); }
.fsp-wide-card__title {
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fsp-wide-card__by {
  color: #93a0b8;
  font-size: 0.8rem;
}
.fsp-grid-section--wide { padding: 0.85rem 0 0.35rem; }

@media (max-width: 980px) {
  .fsp-guru-detail { grid-template-columns: 1fr; }
  .fsp-guru-aside { order: 2; }
  .fsp-guru-main { order: 1; }
  .fsp-guru-poster { max-width: 280px; }
  .fsp-guru-player__real { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  .fsp-guru-stats { grid-template-columns: 1fr; }
  .fsp-wide-card { flex-basis: 170px; width: 170px; }
  .fsp-guru-player__title { font-size: 1rem; }
  .fsp-guru-player__stage,
  .fsp-guru-player__frame { min-height: 58vh; }
}

/* Legacy premium hooks kept for safety */
.fsp-game-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.25rem 0 1rem;
}
.fsp-game-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0 2rem;
  align-items: start;
}
@media (max-width: 980px) {
  .fsp-game-layout { grid-template-columns: 1fr; }
}

/* Inner hub pages: Online Casinos / Forum / News */
.fsp-info-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}
.fsp-info-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #22262f 0%, #1a1d24 100%);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  min-height: 110px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.fsp-info-card:hover {
  border-color: #f0a202;
  transform: translateY(-1px);
}
.fsp-info-card strong {
  color: #fff;
  font-size: 0.98rem;
}
.fsp-info-card span {
  color: #93a0b8;
  font-size: 0.82rem;
  line-height: 1.4;
}
.fsp-forum-topics {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
}
.fsp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.fsp-news-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1d24;
  border-radius: 10px;
  overflow: hidden;
}
.fsp-news-card__link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.fsp-news-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #12151b;
}
.fsp-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fsp-news-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.95rem 1rem 1.1rem;
}
.fsp-news-card__date {
  color: #f0a202;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.fsp-news-card__title {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.3;
}
.fsp-news-card__excerpt {
  color: #93a0b8;
  font-size: 0.86rem;
  line-height: 1.45;
}
.fsp-news-card:hover {
  border-color: rgba(240, 162, 2, 0.45);
}
.fsp-muted { color: #93a0b8; }

.fsp-guide-board {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.25rem 0 1.75rem;
}
.fsp-guide-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #161a21;
}
.fsp-guide-step__n {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0a202;
  color: #0c1220;
  font-weight: 800;
  font-size: 1.05rem;
}
.fsp-guide-step h2 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1.05rem;
}
.fsp-guide-step p {
  margin: 0;
  color: #93a0b8;
  line-height: 1.55;
  font-size: 0.92rem;
}
.fsp-guide-faq {
  margin: 1.5rem 0;
}
.fsp-guide-faq h2 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1.2rem;
}
.fsp-guide-faq details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: #161a21;
  margin-bottom: 0.55rem;
  padding: 0.75rem 1rem;
}
.fsp-guide-faq summary {
  cursor: pointer;
  color: #fff;
  font-weight: 700;
}
.fsp-guide-faq p {
  margin: 0.55rem 0 0;
  color: #93a0b8;
  line-height: 1.5;
}
.fsp-forum-lead {
  color: #c5ccd8;
  line-height: 1.6;
  max-width: 72ch;
  margin: 0 0 1.25rem;
}
.fsp-casino-board {
  margin: 1.75rem 0 1.25rem;
}
.fsp-casino-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.fsp-casino-points article {
  padding: 1rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #161a21;
}
.fsp-casino-points h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 1rem;
}
.fsp-casino-points p {
  margin: 0;
  color: #93a0b8;
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .fsp-casino-points { grid-template-columns: 1fr; }
}

.fsp-pagination {
  margin: 2rem 0 0.5rem;
}
.fsp-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.fsp-pagination .page-numbers li { margin: 0; }
.fsp-pagination a,
.fsp-pagination span {
  display: inline-flex;
  min-width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e8ecf2;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}
.fsp-pagination a:hover,
.fsp-pagination .current {
  background: #f0a202;
  border-color: #f0a202;
  color: #0c1220;
}

.fsp-single-post__media {
  margin: 0 0 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  max-width: 560px;
}
.fsp-single-post__media img {
  width: 100%;
  height: auto;
  display: block;
}
.fsp-single-post__body {
  max-width: 760px;
  color: #c5ccd8;
  line-height: 1.65;
}
.fsp-single-post__body h2 {
  color: #fff;
  margin: 1.6rem 0 0.65rem;
  font-size: 1.25rem;
}
.fsp-single-post__body h3 {
  color: #fff;
  margin: 1.15rem 0 0.45rem;
  font-size: 1.05rem;
}
.fsp-single-post__body .fsp-blog-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.1rem 0 1.35rem;
}
.fsp-single-post__body .fsp-blog-hero-img img {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.fsp-single-post__play,
.fsp-single-post__back {
  margin-top: 1.5rem;
}
.fsp-single-post__back a { color: #f0a202; }

@media (max-width: 980px) {
  .fsp-info-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fsp-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .fsp-info-cards,
  .fsp-news-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------- */
/* Games page — Casino.guru quality shell */
/* -------------------------------------------------------------------------- */
.fsp-games-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 75% at 88% 42%, rgba(240, 162, 2, 0.16) 0%, transparent 58%),
    radial-gradient(ellipse 42% 55% at 72% 78%, rgba(32, 197, 168, 0.12) 0%, transparent 55%),
    linear-gradient(120deg, #0c1220 0%, #0a101c 45%, #121a2c 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.35rem 0 1.75rem;
}
.fsp-games-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.25rem 2rem;
  align-items: center;
}
.fsp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: #f0a202;
  font-weight: 600;
}
.fsp-breadcrumb a { color: #f0a202; text-decoration: none; }
.fsp-breadcrumb a:hover { text-decoration: underline; }
.fsp-breadcrumb span[aria-hidden] { opacity: 0.65; color: #f0a202; }
.fsp-games-hero__title {
  margin: 0;
  color: #fff;
  font-family: var(--fsp-display);
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 16ch;
}
.fsp-games-hero__sub {
  margin: 0.9rem 0 0;
  color: #aeb6c2;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 46ch;
}
.fsp-games-hero__visual {
  position: relative;
  min-height: 280px;
}
.fsp-games-hero__frame {
  position: relative;
  height: 300px;
  border-radius: 18px;
  border: 2px solid rgba(240, 162, 2, 0.45);
  background:
    linear-gradient(160deg, rgba(240, 162, 2, 0.08) 0%, rgba(18, 21, 26, 0.2) 40%, rgba(32, 197, 168, 0.08) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.fsp-games-hero__badge {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(18, 21, 26, 0.82);
  border: 1px solid rgba(240, 162, 2, 0.45);
  color: #f0a202;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fsp-games-hero__stack {
  position: relative;
  height: 100%;
}
.fsp-games-hero__card {
  position: absolute;
  width: 118px;
  height: 158px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(240, 162, 2, 0.65);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  background: #0c1220;
}
.fsp-games-hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fsp-games-hero__card--1 { left: 8%; top: 22%; transform: rotate(-9deg); z-index: 2; }
.fsp-games-hero__card--2 { left: 26%; top: 10%; transform: rotate(5deg); z-index: 4; width: 136px; height: 182px; }
.fsp-games-hero__card--3 { left: 50%; top: 24%; transform: rotate(-4deg); z-index: 3; }
.fsp-games-hero__card--4 { left: 66%; top: 12%; transform: rotate(10deg); z-index: 1; width: 108px; height: 144px; }
.fsp-games-hero__card--5 { left: 40%; top: 48%; transform: rotate(2deg); z-index: 5; width: 114px; height: 152px; }
.fsp-games-hero__glow {
  position: absolute;
  inset: 8% 4% 4% 8%;
  background: radial-gradient(circle, rgba(240, 162, 2, 0.18) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.fsp-games-cats {
  padding: 1rem 0 0.2rem;
  background: #0c1220;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.fsp-cat-rail-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.fsp-cat-rail {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0 0.85rem;
  scrollbar-width: none;
  flex: 1;
}
.fsp-cat-rail::-webkit-scrollbar { display: none; }
.fsp-cat-tile {
  position: relative;
  flex: 0 0 112px;
  width: 112px;
  min-height: 112px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.45rem 0.75rem;
  border-radius: 8px;
  background: #252b34;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e8eef8;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.fsp-cat-tile:hover,
.fsp-cat-tile.is-active {
  border-color: #f0a202;
  background: #2c333e;
  transform: translateY(-2px);
  color: #fff;
}
.fsp-cat-tile__count {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.9;
}
.fsp-cat-tile__ico {
  color: #f0a202;
  display: grid;
  place-items: center;
  line-height: 0;
  min-height: 28px;
}
.fsp-cat-tile__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: uppercase;
  color: #fff;
}
.fsp-cat-tile--filter .fsp-cat-tile__label {
  text-transform: uppercase;
  font-size: 0.64rem;
}
.fsp-cat-rail-nav { flex-shrink: 0; }

.fsp-section-head__left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.fsp-section-star {
  color: #f0a202;
  font-size: 1rem;
  line-height: 1;
}

.fsp-show-all {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1c2129;
  color: #e8eef8 !important;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none !important;
}
.fsp-show-all:hover {
  border-color: #f0a202;
  color: #f0a202 !important;
}

.fsp-poster-rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.65rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 162, 2, 0.45) transparent;
}
.fsp-poster-rail::-webkit-scrollbar { height: 4px; }
.fsp-poster-rail::-webkit-scrollbar-thumb {
  background: rgba(240, 162, 2, 0.55);
  border-radius: 999px;
}
.fsp-poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.9rem 0.85rem;
}
.fsp-poster-card {
  flex: 0 0 178px;
  width: 178px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
}
.fsp-poster-grid .fsp-poster-card {
  width: auto;
  flex: none;
}
.fsp-poster-card__media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: #0a101c;
  border: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}
.fsp-poster-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fsp-poster-card:hover .fsp-poster-card__media img { transform: scale(1.06); }
.fsp-poster-card__hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: rgba(8, 10, 14, 0.58);
  opacity: 0;
  transition: opacity 0.2s ease;
  padding: 0.75rem 0.5rem 1rem;
}
.fsp-poster-card:hover .fsp-poster-card__hover { opacity: 1; }
.fsp-poster-card__play {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
.fsp-poster-card__play svg {
  color: #f0a202;
  flex-shrink: 0;
}
.fsp-poster-card__preview {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
}
.fsp-poster-card__caption {
  font-size: 0.8rem;
  line-height: 1.35;
  color: #b7bfcb;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fsp-poster-card__prov { color: #93a0b8; }
.fsp-poster-card__name {
  color: #e8eef8;
  font-weight: 700;
}
.fsp-poster-card:hover .fsp-poster-card__caption,
.fsp-poster-card:hover .fsp-poster-card__name { color: #fff; }

.fsp-lobby--guru { padding-top: 1.1rem; }
.fsp-grid-section--poster { padding: 1.15rem 0 0.45rem; }

@media (max-width: 980px) {
  .fsp-games-hero__inner { grid-template-columns: 1fr; }
  .fsp-games-hero__visual { min-height: 240px; }
  .fsp-games-hero__frame { height: 250px; max-width: 440px; margin: 0 auto; }
  .fsp-games-hero__title { max-width: none; }
}
@media (max-width: 640px) {
  .fsp-games-hero { padding: 1.1rem 0 1.35rem; }
  .fsp-cat-tile { flex-basis: 100px; width: 100px; min-height: 100px; }
  .fsp-poster-card { flex-basis: 148px; width: 148px; }
  .fsp-games-hero__card--4,
  .fsp-games-hero__card--5 { display: none; }
}

/* ==========================================================================
   Bonuses board — casino.guru bonus card (1xBet)
   ========================================================================== */
.fsp-page-hero--bonuses {
  padding-bottom: 1rem;
}
.fsp-bonus-board {
  background: #e9ecef;
  color: #1a1d24;
  padding: 1.25rem 0 2.5rem;
}
.fsp-bonus-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.fsp-bonus-tab {
  height: 36px;
  padding: 0 0.95rem;
  border-radius: 6px;
  border: 0;
  background: #d7dde5;
  color: #3a4250;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: default;
}
.fsp-bonus-tab.is-active {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.fsp-bonus-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
  color: #5b6575;
  font-size: 0.9rem;
}
.fsp-bonus-toolbar__sort { font-weight: 600; }

.fsp-bonus-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  background: #fff;
  border: 1px solid #111;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.15rem;
}
.fsp-bonus-card__main {
  padding: 1.15rem 1.25rem 1.25rem;
  border-right: 1px solid #d8dde5;
}
.fsp-bonus-card__title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.fsp-bonus-card__title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.fsp-bonus-card__flag {
  flex-shrink: 0;
  margin-top: 0.2rem;
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 20px;
  padding: 0 0.3rem;
  border-radius: 3px;
  background: #1d4ed8;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
}
.fsp-bonus-card__rows {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fsp-bonus-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-top: 1px solid #edf0f4;
  color: #2a3140;
  font-size: 0.92rem;
  line-height: 1.45;
}
.fsp-bonus-row details { width: 100%; }
.fsp-bonus-row summary {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  list-style: none;
}
.fsp-bonus-row summary::-webkit-details-marker { display: none; }
.fsp-bonus-row summary::after {
  content: "▾";
  margin-left: auto;
  color: #8b93a1;
  font-size: 0.75rem;
}
.fsp-bonus-row__ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #3a4250;
  margin-top: 0.05rem;
}
.fsp-bonus-row--important .fsp-bonus-row__ico,
.fsp-bonus-row--important em {
  color: #e67e22;
  font-style: normal;
  font-weight: 800;
}
.fsp-bonus-row__text strong { color: #111; font-weight: 800; }
.fsp-bonus-row__body {
  margin: 0.45rem 0 0 1.85rem;
  color: #5b6575;
  font-size: 0.86rem;
}
.fsp-bonus-row__body p { margin: 0 0 0.4rem; }

.fsp-bonus-card__side {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem;
  background: #f7f8fa;
}
.fsp-bonus-card__brand {
  display: grid;
  place-items: center;
  min-height: 72px;
  border-radius: 4px;
  background: #001833;
  border: 1px solid #002a55;
}
.fsp-bonus-card__wordmark {
  font-weight: 900;
  font-style: italic;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: #fff;
}
.fsp-bonus-card__wordmark em {
  font-style: italic;
  color: #00a3ff;
}
.fsp-bonus-card__rating {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.fsp-bonus-card__score {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #f0a202;
  color: #111;
  font-weight: 900;
  font-size: 1.05rem;
}
.fsp-bonus-card__rating-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.82rem;
  color: #5b6575;
}
.fsp-bonus-card__rating-meta strong {
  color: #111;
  font-size: 0.95rem;
}
.fsp-bonus-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 4px;
  background: #e5e8ee;
  border: 1px solid #c9d0da;
  color: #111 !important;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none !important;
}
.fsp-bonus-card__cta:hover {
  background: #f0a202;
  border-color: #7bbc00;
}
.fsp-bonus-card__geo {
  margin: 0;
  color: #c0392b;
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 600;
}
.fsp-bonus-promo {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #c9d0da;
  margin-bottom: 1.25rem;
  background: #001833;
}
.fsp-bonus-promo img {
  width: 100%;
  height: auto;
  display: block;
}
.fsp-bonus-copy {
  color: #3a4250;
  font-size: 0.95rem;
  line-height: 1.65;
}
.fsp-bonus-copy .fsp-muted { color: #6b7585; }
.fsp-bonus-board .fsp-muted { color: #6b7585; }

@media (max-width: 860px) {
  .fsp-bonus-card {
    grid-template-columns: 1fr;
  }
  .fsp-bonus-card__main {
    border-right: 0;
    border-bottom: 1px solid #d8dde5;
  }
}

/* Indonesian mobile-first UX — hero search, hot chips, sticky dock */
.fsp-hero--id {
  padding: 1.25rem 0 1.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(240,162,2,0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(32,197,168,0.12), transparent 50%),
    linear-gradient(180deg, #141c2e 0%, var(--fsp-ink) 100%);
}
.fsp-hero--id .fsp-hero__brand {
  margin: 0 0 0.35rem;
  font-family: var(--fsp-display);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  color: var(--fsp-gold);
  letter-spacing: -0.03em;
}
.fsp-hero--id .fsp-hero__title {
  margin: 0 0 0.5rem;
  font-family: var(--fsp-display);
  font-size: clamp(1.35rem, 4.2vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.fsp-hero--id .fsp-hero__sub {
  margin: 0 0 1rem;
  color: var(--fsp-muted);
  font-size: 0.95rem;
  max-width: 36ch;
}
.fsp-hero-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--fsp-panel);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 0.35rem 0.35rem 0.35rem 0.85rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.fsp-hero-search__ico { color: var(--fsp-muted); flex-shrink: 0; }
.fsp-hero-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--fsp-text);
  font-size: 1rem;
  padding: 0.65rem 0.25rem;
  outline: none;
}
.fsp-hero-search__input::placeholder { color: var(--fsp-muted); }
.fsp-hero-search__btn {
  flex-shrink: 0;
  border: 0;
  border-radius: 10px;
  background: var(--fsp-gold);
  color: #0c1220;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  cursor: pointer;
  min-height: 44px;
}
.fsp-hot-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
}
.fsp-hot-chips::-webkit-scrollbar { display: none; }
.fsp-hot-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--fsp-surface);
  color: var(--fsp-text);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.fsp-hot-chip:hover { border-color: var(--fsp-gold); color: var(--fsp-gold); }
.fsp-hot-chip--accent {
  background: var(--fsp-gold);
  border-color: var(--fsp-gold);
  color: #0c1220;
}
.fsp-hero__stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.fsp-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 0.65rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: inherit;
  min-height: 64px;
}
.fsp-hero-stat strong {
  font-family: var(--fsp-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--fsp-gold);
}
.fsp-hero-stat span {
  font-size: 0.72rem;
  color: var(--fsp-muted);
}
.fsp-hero-stat--muted { pointer-events: none; }
.fsp-provider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}
@media (min-width: 700px) {
  .fsp-provider-grid { grid-template-columns: repeat(4, 1fr); }
}
.fsp-provider-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  background: var(--fsp-panel);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: inherit;
  min-height: 52px;
}
.fsp-provider-pill:hover { border-color: var(--fsp-mint); }
.fsp-provider-pill__letter {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(240,162,2,0.15);
  color: var(--fsp-gold);
  font-weight: 800;
  flex-shrink: 0;
}
.fsp-provider-pill__name {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fsp-provider-pill__count {
  font-size: 0.75rem;
  color: var(--fsp-muted);
  font-weight: 600;
}
.fsp-list-card__badge--play .fsp-list-card__score {
  background: var(--fsp-gold);
  color: #0c1220;
  font-weight: 800;
}
.fsp-games-quick-search {
  padding: 0.75rem 0 0.25rem;
}
.fsp-games-quick-search .fsp-hero-search {
  margin-bottom: 0.65rem;
}
.fsp-dock { display: none; }
@media (max-width: 900px) {
  body.fsp-theme {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
  .fsp-banner-fixed--bottom {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
  .fsp-dock {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    background: rgba(12, 18, 32, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 28px rgba(0,0,0,0.45);
  }
  .fsp-dock__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-height: 56px;
    border: 0;
    background: transparent;
    color: var(--fsp-muted);
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0.2rem;
  }
  .fsp-dock__item.is-active,
  .fsp-dock__item:hover { color: var(--fsp-gold); }
  .fsp-dock__item--play .fsp-dock__play {
    width: 44px;
    height: 44px;
    margin-top: -18px;
    border-radius: 50%;
    background: var(--fsp-gold);
    color: #0c1220;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(240,162,2,0.45);
  }
  .fsp-dock__item--play .fsp-dock__label {
    color: var(--fsp-gold);
    margin-top: 0.1rem;
  }
  .fsp-header__cta { display: none; }
}

