/* ==========================================================================
   Brionis Casino — Dark Crimson / Gold Theme
   Reference: brionis-pl-3
   Fonts: Space Grotesk (display), DM Sans (body), JetBrains Mono (meta)
   Fully responsive: sidebar layout on desktop, drawer on mobile
   ========================================================================== */

:root {
  --bg: #010104;
  --panel: #121214;
  --panel-2: #1b1b1e;
  --panel-3: #242428;
  --ink: #ffffff;
  --ink-2: #b8b8be;
  --ink-3: #8a8a92;
  --line: rgba(214, 14, 40, 0.18);
  --line-2: rgba(214, 14, 40, 0.28);
  --accent: #d60e28;
  --accent-press: #a80b1f;
  --accent-soft: rgba(214, 14, 40, 0.18);
  --on-accent: #ffffff;
  --accent-grad: linear-gradient(135deg, #ef4a5f 0%, #d60e28 55%, #7a0616 100%);
  --gold: #c5a059;
  --gold-soft: rgba(197, 160, 89, 0.14);
  --gold-grad: linear-gradient(135deg, #e0c48a, #c5a059);
  --on-gold: #241a06;
  --radius: 18px;
  --radius-sm: 13px;
  --radius-xs: 10px;
  --gap: 18px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25), 0 8px 22px rgba(0, 0, 0, 0.35);
  --slot-glow: 0 0 0 2px color-mix(in srgb, var(--accent) 42%, transparent),
    0 5px 16px color-mix(in srgb, var(--accent) 22%, transparent);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --sb: 252px;
  --header-offset: 86px;
  --transition: 0.16s ease;
  --hero-glow-1: rgba(214, 14, 40, 0.22);
  --hero-glow-2: rgba(197, 160, 89, 0.14);
  --color-table-header: #1b1b1e;
  --color-table-row-odd: #121214;
  --color-table-row-even: #161618;
  --color-bg-card: #1b1b1e;
  --color-bg-card-hover: #242428;
  --color-border: var(--line);
  --color-primary: var(--accent);
  --color-text: var(--ink);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: calc(var(--header-offset) + 12px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
.slots-section__title,
.footer__title {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
}

.brand-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.layout {
  max-width: 1500px;
  margin: 0 auto;
  padding: 14px 18px 60px;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gap);
  align-items: flex-start;
}

.main-wrap {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.main-wrap > .header,
.main-wrap > .hero,
.main-wrap > .slots-section,
.main-wrap > .content,
.main-wrap > .footer,
.main-wrap > .breadcrumbs {
  width: 100%;
  min-width: 0;
  flex: 0 0 auto;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* --------------------------------------------------------------------------
   Sidebar
   -------------------------------------------------------------------------- */
.sidebar {
  flex: 0 0 var(--sb);
  width: var(--sb);
  position: sticky;
  top: 14px;
  align-self: flex-start;
  max-height: calc(100vh - 28px);
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}

.sidebar::-webkit-scrollbar {
  width: 7px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 99px;
}

.sidebar__brand {
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
}

.sidebar__brand .brand-logo {
  height: 30px;
}

.sidebar__tabs {
  display: flex;
  gap: 4px;
  margin: 14px 16px 0;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 4px;
}

.sidebar__tab {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--ink-2);
  font-weight: 800;
  font-size: 13px;
  padding: 9px 4px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: var(--transition);
}

.sidebar__tab .icon {
  width: 15px;
  height: 15px;
}

.sidebar__tab.is-active {
  background: var(--accent-grad);
  color: var(--on-accent);
  box-shadow: 0 4px 12px rgba(214, 14, 40, 0.35);
}

.sidebar__tab:not(.is-active):hover {
  color: var(--ink);
}

.sidebar__bonus {
  margin: 14px 16px 0;
  background: linear-gradient(150deg, var(--accent-soft), transparent 70%), var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: 15px;
  padding: 14px;
}

.sidebar__bonus-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 7px;
}

.sidebar__bonus-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 3px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sidebar__bonus-text {
  font-size: 11.5px;
  color: var(--ink-2);
  margin: 0 0 12px;
  line-height: 1.35;
}

.sidebar__bonus .btn-cta {
  width: 100%;
  justify-content: center;
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 12px;
  margin-top: 2px;
}

.sidebar__nav-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 10px 12px 6px;
}

.sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 11px;
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 600;
  transition: 0.14s;
  position: relative;
}

.sidebar__link .icon {
  color: var(--ink-3);
  stroke-width: 1.7;
}

.sidebar__link:hover {
  background: var(--panel-2);
  color: var(--ink);
}

.sidebar__link:hover .icon {
  color: var(--accent);
}

.sidebar__link.is-active {
  background: var(--accent-soft);
  color: var(--ink);
}

.sidebar__link.is-active .icon {
  color: var(--accent);
}

.sidebar__link.is-active::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 9px;
  bottom: 9px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--accent);
}

.sidebar__foot {
  margin-top: auto;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar__chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 11px;
  border-radius: 12px;
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition);
}

.sidebar__chat .icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.sidebar__chat:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--ink);
}

.sidebar__app {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
}

.sidebar__app-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--panel-3);
  border: 1px solid var(--line-2);
}

.sidebar__app-icon .icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 8, 0.6);
  backdrop-filter: blur(2px);
  z-index: 85;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}

.sidebar-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 14px;
  z-index: 60;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.header.is-pinned {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
}

.header__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid var(--line-2);
  background: var(--panel-2);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
}

.header__toggle .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.header__logo {
  display: none;
}

.header__logo .brand-logo {
  height: 26px;
}

.header__promo {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 600;
  overflow: hidden;
}

.header__promo-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
}

.header__promo-icon .icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.header__promo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-cta,
.btn-gold,
.btn-ghost,
.btn-primary,
.btn-secondary {
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: 11px;
  transition: transform 0.12s, background 0.16s, box-shadow 0.16s, filter 0.16s, border-color 0.16s;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-cta:active,
.btn-gold:active,
.btn-ghost:active {
  transform: translateY(1px);
}

.btn-cta,
.btn-primary {
  background: var(--accent-grad);
  color: var(--on-accent);
  padding: 10px 18px;
  box-shadow: 0 6px 18px rgba(214, 14, 40, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-cta:hover,
.btn-primary:hover {
  background: var(--accent-press);
  color: var(--on-accent);
  text-decoration: none;
  filter: brightness(1.05);
}

.btn-gold {
  background: var(--gold-grad);
  color: var(--on-gold);
  padding: 10px 18px;
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-gold:hover {
  filter: brightness(1.05);
  color: var(--on-gold);
  text-decoration: none;
}

.btn-ghost,
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
  padding: 10px 16px;
}

.btn-ghost:hover,
.btn-secondary:hover {
  border-color: var(--ink-2);
  background: var(--panel-2);
  color: var(--ink);
  text-decoration: none;
}

.btn-cta--lg {
  padding: 15px 28px;
  font-size: 15.5px;
  border-radius: 13px;
  position: relative;
}

.btn-cta--lg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  animation: pulseRing 2.8s ease-out infinite;
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 46%, transparent); }
  70% { box-shadow: 0 0 0 11px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs {
  padding: 0 8px;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  color: var(--ink-3);
}

.breadcrumbs li + li::before {
  content: "›";
  margin-right: 0.4rem;
  color: var(--ink-3);
}

.breadcrumbs a {
  color: var(--ink-3);
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs [aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__glow {
  display: none;
}

.hero__media {
  display: block;
  position: relative;
  z-index: 1;
  line-height: 0;
}

.hero__img-desktop {
  display: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  opacity: 1;
}

.hero__img-mobile {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  opacity: 1;
}

.hero__cta {
  position: static;
  z-index: 2;
  top: auto;
  left: auto;
  transform: none;
  background: var(--panel-2);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 16px 20px 18px;
  width: 100%;
  max-width: none;
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
}

.hero__cta-note {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.92rem;
  max-width: none;
  flex: 1 1 220px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__cta h2,
.hero__cta .hero-title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__cta p {
  color: var(--ink-2);
  font-size: 0.95rem;
  margin: 0;
  max-width: none;
}

.hero__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: 8px 13px;
  border-radius: 999px;
}

.hero__chip .icon {
  width: 15px;
  height: 15px;
  color: var(--accent);
  stroke-width: 2;
}

.hero__chip--gold {
  color: var(--gold);
  border-color: color-mix(in srgb, var(--gold) 28%, transparent);
}

/* --------------------------------------------------------------------------
   Slots
   -------------------------------------------------------------------------- */
.slots-section {
  padding: 0 0 22px;
  overflow: hidden;
  min-width: 0;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 0;
}

.slots-section__title {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.slots-section__title .icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.section-more {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  transition: var(--transition);
}

.section-more:hover {
  color: var(--ink);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--panel-2);
  padding: 18px 24px 0;
}

.slots-grid--no-shrink {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.slot-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--panel-3);
  text-decoration: none;
  display: block;
  min-width: 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.slot-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}

.slot-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}

.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.slot-card:hover img {
  transform: scale(1.06);
}

.slot-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 12, 0), rgba(7, 10, 12, 0.55));
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.slot-card:hover .slot-card__media::after,
.slot-card:focus-within .slot-card__media::after {
  opacity: 1;
}

.slot-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 8px));
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 8px 20px rgba(214, 14, 40, 0.45);
}

.slot-card:hover .slot-card__play,
.slot-card:focus-within .slot-card__play {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.slot-card__play .icon,
.slot-card__play svg {
  width: 13px;
  height: 13px;
  fill: var(--on-accent);
  stroke: none;
}

.slots-grid::-webkit-scrollbar {
  height: 6px;
}

.slots-grid::-webkit-scrollbar-track {
  background: var(--panel-2);
  border-radius: 3px;
}

.slots-grid::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   Content
   -------------------------------------------------------------------------- */
.content {
  padding: 34px 44px;
}

.content article {
  max-width: 74ch;
  margin: 0 auto;
}

.content h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--ink);
  border-bottom: none;
  padding-bottom: 0;
}

.content h2 {
  font-size: 23px;
  font-weight: 800;
  margin: 34px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  border-left: none;
  padding-left: 0;
  color: var(--ink);
}

.content > section:first-of-type > h2 {
  border-top: 0;
  padding-top: 0;
}

.content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin: 2rem 0 0.8rem;
}

.content p {
  color: var(--ink-2);
  font-size: 15.5px;
  margin: 0 0 16px;
  line-height: 1.7;
}

.content strong {
  color: var(--ink);
  font-weight: 700;
}

.content a {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}

.content a:hover {
  color: var(--accent-press);
}

.content .btn-cta,
.content .btn-gold,
.content .btn-ghost {
  border-bottom: none;
}

.content .btn-cta {
  color: var(--on-accent);
}

.content .btn-cta:hover {
  color: var(--on-accent);
}

.content ul,
.content ol {
  margin: 0 0 1.2rem;
  padding-left: 1.8rem;
}

.content li {
  margin-bottom: 0.5rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.content ul li::marker {
  color: var(--accent);
}

.content ol li::marker {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-mono);
}

/* --------------------------------------------------------------------------
   Tables
   -------------------------------------------------------------------------- */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.content table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  font-size: 0.95rem;
}

.content thead {
  background: var(--color-table-header);
}

.content th {
  color: var(--gold);
  font-weight: 700;
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 2px solid var(--accent);
  white-space: nowrap;
  font-family: var(--font-display);
}

.content td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}

.content tbody tr:nth-child(odd) {
  background: var(--color-table-row-odd);
}

.content tbody tr:nth-child(even) {
  background: var(--color-table-row-even);
}

.content tbody tr:hover {
  background: var(--color-bg-card-hover);
}

/* --------------------------------------------------------------------------
   CTA block
   -------------------------------------------------------------------------- */
.cta-block {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(120deg, var(--gold-soft), transparent 60%), var(--panel-2);
  border-radius: var(--radius);
  margin: 2rem 0 0;
  border: 1px solid color-mix(in srgb, var(--gold) 26%, transparent);
}

.cta-block h2 {
  border: none;
  padding: 0;
  margin-top: 0;
  color: var(--ink);
}

.cta-block p {
  margin-bottom: 1.5rem;
}

.cta-block .cta-title,
.legal-block .cta-title {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.1;
}

.offer-pack {
  text-align: center;
  padding: 2rem 1.4rem 1.7rem;
  margin: 1.2rem 0 1.4rem;
  background:
    radial-gradient(720px 160px at 50% -10%, var(--hero-glow-1), transparent 62%),
    linear-gradient(180deg, #101014, #07070b);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.offer-pack__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--ink);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.offer-pack__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1.15rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.content .offer-pack p {
  color: inherit;
}

.content .offer-pack .btn-cta {
  display: inline-flex;
  margin: 0;
}

.legal-block .cta-title {
  font-size: 1.15rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  padding: 0;
}

.footer__inner {
  max-width: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
  padding: 32px 32px 26px;
  border-bottom: 1px solid var(--line);
}

.footer__brand .brand-logo {
  height: 32px;
  margin-bottom: 14px;
}

.footer__brand p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 38ch;
  margin: 0;
}

.footer__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
}

.footer__col a {
  display: block;
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
  padding: 5px 0;
  transition: 0.14s;
}

.footer__col a:hover {
  color: var(--ink);
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
}

.payment-logos__item {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  transition: border-color var(--transition), transform var(--transition);
}

.payment-logos__item:hover {
  border-color: var(--line-2);
  transform: translateY(-1px);
}

.payment-logos__item img {
  height: 22px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
}

.footer__bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 32px;
}

.footer__badge {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: 11px;
  flex: 0 0 auto;
}

.footer__legal {
  color: var(--ink-3);
  font-size: 12.5px;
}

.footer__legal p {
  margin: 0 0 6px;
}

.footer__legal a {
  color: var(--ink-2);
}

.footer__legal a:hover {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .hero {
    min-height: 0;
  }

  .hero__img-desktop {
    display: block;
  }

  .hero__img-mobile {
    display: none;
  }

  .hero__cta {
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 16px 24px 18px;
  }

  .slots-grid {
    overflow-x: hidden;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .slots-grid--no-shrink {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .layout {
    display: block;
    padding: 12px 14px 70px;
  }

  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    max-width: 86vw;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    z-index: 90;
    margin: 0;
  }

  .sidebar.is-open {
    transform: none;
  }

  .header__toggle {
    display: inline-flex;
  }

  .header__logo {
    display: inline-flex;
  }

  .header__promo {
    display: none;
  }
}

@media (max-width: 860px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .content {
    padding: 26px 22px;
  }

  .slots-grid,
  .slots-grid--no-shrink {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .table-wrapper {
    border: none;
    overflow: visible;
  }

  .content table {
    min-width: unset;
  }

  .content thead {
    display: none;
  }

  .content tbody tr {
    display: block;
    background: var(--panel-2);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }

  .content td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line);
    gap: 0.5rem;
  }

  .content td:last-child {
    border-bottom: none;
  }

  .content td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    min-width: 40%;
  }

  .slots-grid,
  .slots-grid--no-shrink {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .slot-card__play {
    display: none;
  }

  .slot-card {
    box-shadow: var(--slot-glow);
  }
}

@media (max-width: 560px) {
  .layout {
    padding: 10px 12px 80px;
  }

  .header {
    top: 10px;
  }

  .hero__cta {
    width: 100%;
    padding: 14px 16px 16px;
  }

  .section-head,
  .slots-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer__grid,
  .footer__bottom,
  .payment-logos {
    padding-left: 18px;
    padding-right: 18px;
  }

  .content h1 {
    font-size: 1.5rem;
  }

  .content h2 {
    font-size: 1.25rem;
  }

  .header__actions .btn-ghost {
    display: none;
  }

  .header__actions .btn-gold {
    position: relative;
  }

  .header__actions .btn-gold::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    animation: pulseRing 2.4s ease-out infinite;
  }
}

@media (max-width: 479px) {
  .slots-grid,
  .slots-grid--no-shrink {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-logos__item {
    height: 38px;
    padding: 0.4rem 0.6rem;
  }

  .payment-logos__item img {
    height: 18px;
  }
}

@media (pointer: coarse) {
  .slot-card__play {
    display: none;
  }

  .slot-card {
    box-shadow: var(--slot-glow);
  }

  .sidebar__tab,
  .sidebar__chat,
  .btn-cta,
  .btn-gold,
  .btn-ghost {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .slot-card:hover,
  .section-more:hover,
  .btn-cta:hover,
  .btn-gold:hover {
    transform: none;
  }

  .slot-card:hover img {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   Article extras — TOC, notes, FAQ, legal, named slots
   -------------------------------------------------------------------------- */
.updated {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}

.toc {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 22px 8px;
  margin: 0 0 28px;
}

.toc__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.toc ol {
  margin: 0;
  padding-left: 1.4rem;
}

.toc li {
  margin-bottom: 0.45rem;
}

.note {
  background: var(--gold-soft);
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-xs);
  padding: 14px 16px;
  margin: 0 0 1.2rem;
}

.note p {
  margin: 0;
  color: var(--ink);
  font-size: 14.5px;
}

.note strong {
  color: var(--gold);
}

.faq details {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  padding: 12px 16px;
  margin-bottom: 8px;
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "+";
  display: inline-block;
  width: 1.1em;
  color: var(--gold);
  font-weight: 800;
}

.faq details[open] summary::before {
  content: "–";
}

.faq details p {
  margin: 10px 0 4px;
}

.legal-block {
  margin-top: 2.2rem;
  padding: 1.4rem 1.3rem;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.legal-block h2 {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
  font-size: 1.15rem;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.cluster a {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-2);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 999px;
}

.cluster a[aria-current="page"] {
  color: var(--on-accent);
  background: var(--accent-grad);
  border-color: transparent;
}

.content .cluster a {
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.content .cluster a[aria-current="page"] {
  color: var(--on-accent);
  border-bottom-color: transparent;
}

.slot-card__media--named {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  background:
    radial-gradient(140px 90px at 18% 12%, rgba(214, 14, 40, 0.38), transparent 70%),
    radial-gradient(120px 80px at 88% 86%, rgba(197, 160, 89, 0.22), transparent 65%),
    linear-gradient(165deg, #32151b, #121214 58%);
}

.slot-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13.5px;
  color: var(--ink);
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.slot-card__studio {
  font-size: 11px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin-top: 3px;
}

.slot-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px 12px;
}

.slot-card__meta .slot-card__name {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__cta .hero-title {
  background: linear-gradient(180deg, #f3e2b3 0%, #e0c48a 35%, #c5a059 70%, #8a6a32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
}

.sidebar__app-text {
  font-size: 11px;
  line-height: 1.3;
  color: var(--ink-3);
}

.sidebar__app-text b {
  display: block;
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
}

/* --------------------------------------------------------------------------
   App hero (brionis-pl-3 split layout, without slot photos)
   -------------------------------------------------------------------------- */
.hero--app {
  min-height: 0;
}

.hero--app .hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.24fr 0.76fr;
  gap: 32px;
  padding: 40px 42px;
  align-items: stretch;
}

.hero--app .hero__cta {
  position: static;
  transform: none;
  left: auto;
  top: auto;
  width: auto;
  max-width: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.hero-amount {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin: 0 0 6px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 14px;
}

.hero-amount__pct {
  font-size: clamp(46px, 7.5vw, 80px);
  color: var(--ink);
}

.hero-amount__to {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  text-transform: uppercase;
  align-self: center;
}

.hero-amount__sum {
  font-size: clamp(46px, 7.5vw, 80px);
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--ink);
  margin: 2px 0 14px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
}

.hero-feature {
  background: var(--panel-3);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.18s, transform 0.18s;
}

.hero-feature:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.hero--app .hero-feature {
  border-bottom: 1px solid var(--line-2);
}

.hero-feature__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-accent);
  background: var(--accent);
  padding: 4px 8px;
  border-radius: 7px;
  display: inline-block;
  margin-bottom: 10px;
}

.hero-feature__label--gold {
  background: var(--gold-grad);
  color: var(--on-gold);
}

.hero-feature b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.hero-feature span {
  font-size: 12.5px;
  color: var(--ink-2);
  font-family: var(--font-mono);
}

.qr-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 0 0 1.2rem;
}

.qr-box__code {
  width: 120px;
  height: 120px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #f4ead0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  object-fit: contain;
  image-rendering: pixelated;
}

.qr-box p {
  margin: 0;
  color: var(--ink-2);
  font-weight: 500;
  border-bottom: none;
}

.content .qr-box {
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.content .qr-box:hover {
  border-color: var(--accent);
}

@media (max-width: 860px) {
  .hero--app .hero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 22px;
  }
}
