/* ===========================================================
   Online Kaszinó Rangsor – Header & Hero
   =========================================================== */

:root {
  /* ── New premium palette ── */
  --bg-base:    #090B12;
  --bg-elev:    #111625;
  --surface-2:  #171D2E;
  --border:     #273044;
  --border-soft:   rgba(39, 48, 68, 0.9);
  --border-strong: rgba(39, 48, 68, 1.0);

  /* legacy aliases kept for compatibility */
  --purple-900: #0e1628;
  --purple-700: #1c2a4a;
  --purple-500: #2c4070;

  --text-primary:   #F3F6FF;
  --text-secondary: #A0A8BC;
  --text-muted:     #6B7391;

  /* Accents */
  --gold-400:  #F5B942;
  --gold-hover:#FFCB66;
  --cyan-400:  #4DA3FF;
  --success:   #2ED3A3;

  /* legacy aliases for pink – remapped to gold/blue */
  --pink-500: #F5B942;
  --pink-400: #F5B942;

  --gradient-brand: linear-gradient(135deg, #F5B942 0%, #e8a020 60%, #c97d10 100%);
  --gradient-text:  linear-gradient(90deg, #F5B942 0%, #FFCB66 50%, #4DA3FF 100%);

  --shadow-glow-pink:   0 0 40px rgba(245, 185, 66, 0.22);
  --shadow-glow-purple: 0 0 60px rgba(77, 163, 255, 0.18);

  --header-h: 76px;
  --container-w: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

img, svg, video, canvas, iframe { max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Ambient background fx ---------- */

.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-fx__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
}

.bg-fx__glow--1 {
  width: 620px;
  height: 620px;
  top: -220px;
  left: -160px;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.18), transparent 70%);
}

.bg-fx__glow--2 {
  width: 560px;
  height: 560px;
  top: 120px;
  right: -200px;
  background: radial-gradient(circle, rgba(245, 185, 66, 0.12), transparent 70%);
}

.bg-fx__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 55%);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(9, 11, 18, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand / logo */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 2px 10px rgba(245, 185, 66, 0.35));
}

.brand__chip { width: 100%; height: 100%; }

.brand__chip .chip-ring-outer { fill: #111625; stroke: none; }
.brand__chip .chip-ring-dash {
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 3;
  stroke-dasharray: 4.2 5.4;
  opacity: 0.95;
}
.brand__chip .chip-ring-inner {
  fill: #0e1628;
  stroke: var(--gold-400);
  stroke-width: 1.4;
}
.brand__chip .chip-crown { fill: var(--gold-400); }
.brand__chip .chip-crown--star { fill: var(--gold-400); }

.brand__text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand__top {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand__rest { color: var(--text-primary); }

/* Main nav */

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav__list a {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease, background-color 0.2s ease;
  position: relative;
}

.main-nav__list a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav__list a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-brand);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav__list a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* ---------- Dropdown nav ── */

.has-dropdown {
  position: relative;
}

/* Invisible hover bridge – fills the gap between trigger and panel */
.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 14px;
}

@media (max-width: 860px) {
  .has-dropdown::after { display: none; }
}

.nav-parent-link {
  gap: 6px !important;
}

.nav-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
  color: var(--text-muted);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 226px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 8px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

/* small arrow pointing up */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: var(--bg-elev);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-left: 1px solid var(--border-strong);
  border-right: 1px solid var(--border-strong);
}

.nav-dropdown li { list-style: none; }

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.nav-dropdown li a::after { display: none !important; }

.nav-dropdown li a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.065);
}

/* Nested sub-dropdown (e.g. Providers → top studios) */
.has-subdropdown {
  position: relative;
}

.nav-sub-parent {
  justify-content: space-between !important;
  width: 100%;
}

.nav-chevron--sub {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  color: var(--text-muted);
  transform: rotate(-90deg);
  transition: transform 0.22s ease;
}

.nav-subdropdown {
  position: absolute;
  top: -8px;
  left: calc(100% + 6px);
  min-width: 210px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 8px;
  z-index: 210;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  list-style: none;
}

.nav-subdropdown li a {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.nav-subdropdown li a::after { display: none !important; }

.nav-subdropdown li a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.065);
}

@media (min-width: 861px) {
  .has-subdropdown::before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: 100%;
  }

  .has-subdropdown:hover .nav-chevron--sub,
  .has-subdropdown:focus-within .nav-chevron--sub {
    transform: rotate(0deg);
    color: var(--gold-400);
  }

  .has-subdropdown:hover .nav-subdropdown,
  .has-subdropdown:focus-within .nav-subdropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
}


@media (min-width: 861px) {
  .has-dropdown { position: relative; }

  /* Transparent bridge fills the 10px hover-gap between the nav item and the dropdown */
  .has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 12px;
  }

  .has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* Breadcrumbs */

.breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(9, 11, 18, 0.6);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 0;
  list-style: none;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-muted);
}

.breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 10px;
  border-right: 1.5px solid var(--text-muted);
  border-top: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
  opacity: 0.55;
  flex-shrink: 0;
}

.breadcrumbs__item a {
  color: var(--text-secondary);
  transition: color 0.18s ease;
}

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

.breadcrumbs__item--current {
  color: var(--text-primary);
  font-weight: 500;
}

/* ===========================================================
   Shared icon system (matches homepage why-card / games-tile)
   =========================================================== */

.tcr-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tcr-icon-wrap--md {
  width: 56px;
  height: 56px;
}

.tcr-icon-wrap--sm {
  width: 50px;
  height: 50px;
  border-radius: 13px;
}

.tcr-icon-wrap--xs {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.tcr-icon {
  width: 34px;
  height: 34px;
  display: block;
  overflow: visible;
}

.tcr-icon-wrap--sm .tcr-icon {
  width: 30px;
  height: 30px;
}

.tcr-icon-wrap--xs .tcr-icon {
  width: 28px;
  height: 28px;
}

.tcr-icon-wrap svg,
.tcr-icon-inline svg,
.tcr-badge-icon,
.tcr-feature-icon {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.tcr-icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.tcr-icon-inline .tcr-icon {
  width: 28px;
  height: 28px;
}

.tcr-badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.tcr-feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
  color: var(--success);
}

.tcr-icon-wrap--gold {
  color: var(--gold-400);
  background: rgba(245, 185, 66, 0.1);
  border-color: rgba(245, 185, 66, 0.22);
}

.tcr-icon-wrap--cyan {
  color: var(--cyan-400);
  background: rgba(77, 163, 255, 0.1);
  border-color: rgba(77, 163, 255, 0.22);
}

.tcr-icon-wrap--success {
  color: var(--success);
  background: rgba(46, 211, 163, 0.1);
  border-color: rgba(46, 211, 163, 0.22);
}

.tcr-icon-wrap--violet {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.18);
}

.tcr-icon-wrap--danger {
  color: #f07178;
  background: rgba(240, 113, 120, 0.1);
  border-color: rgba(240, 113, 120, 0.25);
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  z-index: 1;
  padding: 76px 0 0;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 32px;
  padding-bottom: 64px;
}

.hero__content {
  max-width: 500px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.1);
  border: 1px solid rgba(77, 163, 255, 0.28);
  color: var(--cyan-400);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

.hero__eyebrow-icon {
  width: 14px;
  height: 14px;
  fill: var(--gold-400);
}

.hero__title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero__title-highlight {
  display: block;
  padding-bottom: 0.08em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 460px;
  margin-bottom: 30px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.hero__stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245, 185, 66, 0.28);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245, 185, 66, 0.4); }

.btn__icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.btn--primary:hover .btn__icon { transform: translateX(3px); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Hero media */

.hero__media {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.hero__media-glow {
  position: absolute;
  width: 105%;
  height: 105%;
  right: -4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.25), rgba(245, 185, 66, 0.12) 45%, transparent 72%);
  filter: blur(60px);
  z-index: 0;
}

.hero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 24px;
  box-shadow:
    0 40px 100px -24px rgba(0, 0, 0, 0.75),
    0 0 0 1px var(--border-soft),
    var(--shadow-glow-purple);
}

.hero__badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  background: rgba(17, 22, 37, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.hero__badge--top {
  top: 6%;
  right: -2%;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 14px 20px;
}

.hero__badge-amount {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__badge-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero__badge--bottom {
  bottom: 6%;
  left: -6%;
  gap: 8px;
  padding: 11px 16px;
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(46, 211, 163, 0.25);
  flex-shrink: 0;
}

/* Marquee strip */

.hero__marquee {
  width: 100%;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  padding: 16px 0;
}

.hero__marquee-inner {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  animation: marquee-fallback 35s linear infinite;
}

@keyframes marquee-fallback {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.hero__marquee-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding-right: 14px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__marquee-dot {
  color: var(--gold-400);
  font-size: 10px;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero__marquee-inner {
    animation: none !important;
    margin: 0 auto;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
    padding-bottom: 48px;
  }

  .hero__content { max-width: none; }

  .hero__media {
    order: -1;
    margin-bottom: 12px;
    justify-content: center;
  }

  .hero__media-glow {
    right: auto;
    width: 92%;
    height: 92%;
  }

  .hero__image { max-width: 560px; margin: 0 auto; }
  .hero__subtitle { max-width: 100%; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(9, 11, 18, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.is-open { max-height: 700px; }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 24px 22px;
    gap: 2px;
  }

  .main-nav__list > li > a {
    padding: 13px 6px;
    border-radius: 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .main-nav__list a::after { display: none; }

  .nav-toggle { display: flex; }

  /* Dropdown mobile */
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown::before { display: none; }

  .has-dropdown.is-open .nav-dropdown { max-height: 580px; }

  .has-dropdown.is-open .nav-chevron { transform: rotate(180deg); }

  .nav-dropdown li a {
    padding: 11px 6px;
    border-radius: 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 13px;
  }

  .nav-subdropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .has-subdropdown.is-open .nav-subdropdown { max-height: 240px; }

  .has-subdropdown.is-open .nav-chevron--sub { transform: rotate(0deg); }

  .nav-subdropdown li a {
    padding: 10px 6px;
    font-size: 12.5px;
    border-bottom: 1px solid var(--border-soft);
  }

  .nav-parent-link {
    border-bottom: 1px solid var(--border-soft) !important;
  }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .container { padding: 0 16px; }

  .site-header__inner { gap: 12px; }

  .brand { min-width: 0; }

  .brand__text {
    font-size: 18px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero { padding-top: 32px; }

  .hero__inner {
    gap: 26px;
    padding-bottom: 40px;
  }

  .hero__media { margin-bottom: 2px; }

  .hero__media-glow { width: 100%; height: 100%; }

  .hero__image {
    max-width: 100%;
    border-radius: 18px;
  }

  .hero__badge { display: none; }

  .hero__eyebrow {
    max-width: 100%;
    align-items: flex-start;
    white-space: normal;
    margin-bottom: 18px;
    font-size: 12px;
  }

  .hero__title {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero__stats {
    gap: 18px 24px;
    margin-bottom: 28px;
  }

  .hero__stat {
    flex: 1 1 40%;
    min-width: 0;
  }

  .hero__stat-num { font-size: 22px; }

  .hero__stat-label { overflow-wrap: anywhere; }

  .hero__actions { width: 100%; }

  .hero__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .brand__text { font-size: 16px; }
  .hero__stat { flex-basis: 100%; }
}

/* ---------- Body sections ---------- */

.body-section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.body-section--alt {
  background: rgba(23, 29, 46, 0.6);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section-head--center {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--left { max-width: 420px; }

.section-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.section-eyebrow--warn { color: #f87171; }

.section-title {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Trust bar */

.trust-bar {
  position: relative;
  z-index: 1;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(17, 22, 37, 0.7);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.trust-bar__num {
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-bar__label {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-bar__divider {
  width: 1px;
  height: 36px;
  background: var(--border-soft);
}

/* Casino ranked list */

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.casino-card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.casino-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.casino-card--rank-1 {
  border-color: rgba(245, 185, 66, 0.35);
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.07) 0%, var(--surface-2) 50%);
}

.casino-card--rank-2 { border-color: rgba(77, 163, 255, 0.2); }
.casino-card--rank-3 { border-color: rgba(46, 211, 163, 0.2); }

.casino-card__rank {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-muted);
  min-width: 28px;
}

.casino-card--rank-1 .casino-card__rank { color: var(--gold-400); }

.casino-card__logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 4px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.casino-card:hover .casino-card__logo {
  transform: translateY(-2px);
}

.casino-card__logo img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

.casino-card__logo--a {
  background: #12121a;
}

.casino-card__logo--b {
  background: #090909;
}

.casino-card__logo--c {
  background: #12121a;
  padding: 8px;
}

.casino-card--rank-1:hover .casino-card__logo {
  box-shadow:
    0 12px 30px rgba(245, 185, 66, 0.2),
    0 0 0 1px rgba(245, 185, 66, 0.32);
}

.casino-card--rank-2:hover .casino-card__logo {
  box-shadow:
    0 12px 30px rgba(77, 163, 255, 0.16),
    0 0 0 1px rgba(77, 163, 255, 0.24);
}

.casino-card--rank-3:hover .casino-card__logo {
  box-shadow:
    0 12px 30px rgba(46, 211, 163, 0.16),
    0 0 0 1px rgba(46, 211, 163, 0.24);
}

.casino-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.casino-card__name {
  font-size: 18px;
  font-weight: 700;
}

.casino-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.casino-card__score {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-400);
}

.casino-card__stars {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold-400);
}

.casino-card__bonus {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.casino-card__pros {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.casino-card__pros li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
}

.casino-card__pros li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
}

.casino-card__cta {
  white-space: nowrap;
  padding: 12px 22px;
  font-size: 14px;
}

/* Bonuses */

.bonus-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.bonus-tabs__btn {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.bonus-tabs__btn:hover {
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.bonus-tabs__btn.is-active {
  background: rgba(77, 163, 255, 0.15);
  border-color: rgba(77, 163, 255, 0.45);
  color: var(--text-primary);
}

.bonus-panels {
  margin-top: 0;
}

.bonus-panel[hidden] {
  display: none;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.bonus-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  background: rgba(23, 29, 46, 0.9);
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-card:nth-child(1)::before {
  background: radial-gradient(circle at 16% 12%, rgba(245, 185, 66, 0.14), transparent 42%);
}

.bonus-card:nth-child(2)::before {
  background: radial-gradient(circle at 16% 12%, rgba(77, 163, 255, 0.12), transparent 42%);
}

.bonus-card:nth-child(3)::before {
  background: radial-gradient(circle at 16% 12%, rgba(46, 211, 163, 0.12), transparent 42%);
}

.bonus-card > * {
  position: relative;
  z-index: 1;
}

.bonus-card--featured {
  border-color: rgba(245, 185, 66, 0.38);
  background: linear-gradient(160deg, rgba(245, 185, 66, 0.08) 0%, var(--surface-2) 60%);
}

.bonus-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(245, 185, 66, 0.2);
  border: 1px solid rgba(245, 185, 66, 0.45);
  color: var(--gold-400);
}

.bonus-card__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding-right: 86px;
}

.bonus-card:not(.bonus-card--featured) .bonus-card__brand {
  padding-right: 0;
}

.bonus-card__logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 4px;
  overflow: hidden;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bonus-card:hover .bonus-card__logo {
  transform: translateY(-2px);
}

.bonus-card__logo img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

.bonus-card__logo--nova {
  background: #12121a;
}

.bonus-card__logo--crown {
  background: #090909;
}

.bonus-card__logo--spin {
  background: #12121a;
  padding: 8px;
}

.bonus-card:hover .bonus-card__logo--nova {
  box-shadow:
    0 12px 30px rgba(245, 185, 66, 0.2),
    0 0 0 1px rgba(245, 185, 66, 0.32);
}

.bonus-card:hover .bonus-card__logo--crown {
  box-shadow:
    0 12px 30px rgba(77, 163, 255, 0.18),
    0 0 0 1px rgba(77, 163, 255, 0.28);
}

.bonus-card:hover .bonus-card__logo--spin {
  box-shadow:
    0 12px 30px rgba(46, 211, 163, 0.18),
    0 0 0 1px rgba(46, 211, 163, 0.28);
}

.bonus-card__amount {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.bonus-card__casino {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 700;
}

.bonus-card__meta {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.bonus-card__meta div {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.bonus-card__meta dt { color: var(--text-muted); font-weight: 400; }
.bonus-card__meta dd { font-weight: 600; color: var(--text-primary); }

.bonus-card .btn { margin-top: auto; justify-content: center; }

/* Methodology */

.methodology__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.methodology__steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.methodology__step {
  position: relative;
  padding: 0 0 32px 56px;
}

.methodology__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan-400), transparent);
}

.methodology__step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  background: rgba(77, 163, 255, 0.14);
  border: 1px solid rgba(77, 163, 255, 0.35);
  color: var(--cyan-400);
}

.methodology__step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.methodology__step-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Payment methods */

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pay-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.pay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.pay-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  background: rgba(23, 29, 46, 0.9);
}

.pay-card:hover::before {
  opacity: 1;
}

.pay-card--visa::before { background: radial-gradient(circle at 18% 14%, rgba(26, 31, 113, 0.18), transparent 44%); }
.pay-card--mastercard::before { background: radial-gradient(circle at 18% 14%, rgba(235, 0, 27, 0.16), transparent 44%); }
.pay-card--paypal::before { background: radial-gradient(circle at 18% 14%, rgba(0, 112, 186, 0.16), transparent 44%); }
.pay-card--bitcoin::before { background: radial-gradient(circle at 18% 14%, rgba(247, 147, 26, 0.18), transparent 44%); }
.pay-card--skrill::before { background: radial-gradient(circle at 18% 14%, rgba(135, 33, 116, 0.18), transparent 44%); }
.pay-card--trustly::before { background: radial-gradient(circle at 18% 14%, rgba(0, 196, 120, 0.16), transparent 44%); }

.pay-card > * {
  position: relative;
  z-index: 1;
}

.pay-card__logo {
  width: 118px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pay-card:hover .pay-card__logo {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.pay-card__logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pay-card__logo--visa img {
  filter: invert(15%) sepia(75%) saturate(1631%) hue-rotate(221deg) brightness(82%) contrast(98%);
}

.pay-card__logo--mastercard img {
  filter: invert(24%) sepia(94%) saturate(4433%) hue-rotate(342deg) brightness(96%) contrast(104%);
}

.pay-card__logo--paypal img {
  filter: invert(26%) sepia(72%) saturate(1795%) hue-rotate(185deg) brightness(91%) contrast(101%);
}

.pay-card__logo--bitcoin {
  background: rgba(247, 147, 26, 0.96);
}

.pay-card__logo--bitcoin img {
  filter: brightness(0) invert(1);
}

.pay-card__logo--skrill img {
  filter: none;
}

.pay-card__logo--trustly {
  width: 128px;
  padding: 0;
  background: #070707;
}

.pay-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pay-card__speed {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pay-card__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.pay-card__badge--high { background: rgba(77, 163, 255, 0.15); color: var(--cyan-400); }
.pay-card__badge--fast { background: rgba(46, 211, 163, 0.15); color: var(--success); }
.pay-card__badge--secure { background: rgba(245, 185, 66, 0.12); color: var(--gold-400); }

/* Slots */

#slots .container,
.slots-section .container {
  max-width: none;
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
}

.slots-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.slots-head__copy {
  max-width: 720px;
}

.slots-head__copy .section-title {
  margin-bottom: 0;
}

.slots-head__more {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan-400);
  transition: color 0.2s ease;
}

.slots-head__more:hover {
  color: var(--text-primary);
}

.slots-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  max-width: 1460px;
  margin-inline: auto;
}

.slot-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  max-width: 172px;
  margin-inline: auto;
  width: 100%;
  border-radius: 13px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.slot-poster:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 185, 66, 0.35);
  box-shadow: 0 16px 36px rgba(77, 163, 255, 0.14);
}

.slot-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.slot-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(8, 10, 18, 0.88) 0%, rgba(8, 10, 18, 0.15) 42%, transparent 62%);
  pointer-events: none;
}

/* Slot action buttons – Játék (affiliate) + Részletek (vélemény vagy hamarosan) */
.slot-actions {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
}

.slot-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  line-height: 1.2;
}

.slot-play-btn--play {
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: 0 3px 10px rgba(245, 185, 66, 0.32);
}

.slot-play-btn--play:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(245, 185, 66, 0.45);
}

.slot-play-btn--more {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.slot-play-btn--more:hover {
  color: #fff;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(245, 185, 66, 0.35);
}

.slot-play-btn--pending {
  opacity: 0.55;
  cursor: not-allowed;
}

.slot-play-btn--pending:hover {
  color: var(--text-primary);
  transform: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.slot-poster .slot-actions {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: calc(100% - 10px);
  pointer-events: auto;
}

.slot-poster:hover .slot-actions,
.slot-poster:focus-within .slot-actions {
  transform: translateX(-50%) translateY(-2px);
}

.slot-thumb-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.slot-thumb-wrap--pick {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.slot-thumb-wrap--pick .pp-pick__thumb {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.nr-fresh__thumb.slot-thumb-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(8, 10, 18, 0.88) 0%, transparent 55%);
  pointer-events: none;
}

.nr-fresh__thumb .slot-actions {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: calc(100% - 8px);
}

.nr-fresh__thumb .slot-play-btn {
  padding: 4px 8px;
  font-size: 8px;
}

.slot-actions--card {
  margin-top: 14px;
  width: 100%;
  gap: 8px;
}

.slot-actions--card .slot-play-btn {
  flex: 1;
  min-width: 0;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 11px;
}

.slot-actions--inline {
  margin-top: 8px;
  justify-content: flex-start;
  gap: 6px;
}

.slot-actions--inline .slot-play-btn {
  padding: 5px 12px;
  font-size: 10px;
}

.slot-actions--pick {
  margin-top: 6px;
  justify-content: flex-start;
  gap: 5px;
}

.slot-actions--pick .slot-play-btn {
  padding: 4px 10px;
  font-size: 10px;
}

/* Games bento */

.games-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.games-tile {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.games-tile:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  background: rgba(23, 29, 46, 0.95);
}

.games-tile--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(77, 163, 255, 0.1) 0%, var(--surface-2) 70%);
  border-color: rgba(77, 163, 255, 0.25);
}

.games-tile--live .games-tile__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 46%);
  gap: 12px;
  align-items: stretch;
  min-height: 260px;
  height: 100%;
  padding: 24px;
}

.games-tile--live .games-tile__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  z-index: 1;
}

.games-tile--live .games-tile__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

.games-tile--live .games-tile__visual img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
  transition: transform 0.25s ease;
}

.games-tile--live:hover .games-tile__visual img {
  transform: scale(1.03) translateY(-2px);
}

.games-tile--live .games-tile__icon {
  width: 58px;
  height: 58px;
}

.games-tile--live .games-tile__title { font-size: 22px; }

.games-tile__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.games-tile__icon svg {
  width: 64%;
  height: 64%;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.games-tile__icon svg * {
  fill: none;
}

.games-tile__icon--live {
  color: var(--gold-400);
  background: rgba(245, 185, 66, 0.1);
  border-color: rgba(245, 185, 66, 0.22);
}

.games-tile__icon--blackjack {
  color: var(--success);
  background: rgba(46, 211, 163, 0.1);
  border-color: rgba(46, 211, 163, 0.22);
}

.games-tile__icon--roulette {
  color: var(--gold-400);
  background: rgba(251, 191, 36, 0.11);
  border-color: rgba(251, 191, 36, 0.24);
}

.games-tile__icon--poker {
  color: var(--cyan-400);
  background: rgba(77, 163, 255, 0.1);
  border-color: rgba(77, 163, 255, 0.22);
}

.games-tile__icon--baccarat {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.18);
}

.games-tile:hover .games-tile__icon {
  transform: translateY(-2px);
}

.games-tile:hover .games-tile__icon--live {
  border-color: rgba(245, 185, 66, 0.42);
  box-shadow: 0 10px 24px rgba(245, 185, 66, 0.18);
}

.games-tile:hover .games-tile__icon--blackjack {
  border-color: rgba(46, 211, 163, 0.42);
  box-shadow: 0 10px 24px rgba(46, 211, 163, 0.18);
}

.games-tile:hover .games-tile__icon--roulette {
  border-color: rgba(245, 185, 66, 0.42);
  box-shadow: 0 10px 24px rgba(245, 185, 66, 0.18);
}

.games-tile:hover .games-tile__icon--poker {
  border-color: rgba(77, 163, 255, 0.42);
  box-shadow: 0 10px 24px rgba(77, 163, 255, 0.18);
}

.games-tile:hover .games-tile__icon--baccarat {
  border-color: rgba(167, 139, 250, 0.38);
  box-shadow: 0 10px 24px rgba(167, 139, 250, 0.14);
}

.games-tile__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.games-tile__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.games-tile__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan-400);
  margin-top: auto;
}

.games-tile:not(.games-tile--large) .games-tile__desc {
  font-size: 13px;
  margin-bottom: 0;
}

/* Spotlight */

.spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.08) 0%, rgba(245, 185, 66, 0.05) 50%, rgba(23, 29, 46, 0.6) 100%);
  border: 1px solid rgba(77, 163, 255, 0.2);
}

.spotlight__text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.spotlight__highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.spotlight__highlights li {
  font-size: 14px;
  color: var(--text-secondary);
}

.spotlight__highlights strong { color: var(--text-primary); }

.spotlight__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.spotlight__glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.35), transparent 70%);
  filter: blur(40px);
}

.spotlight__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 36px 48px;
  border-radius: 20px;
  background: rgba(17, 22, 37, 0.9);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.spotlight__card-rank {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-400);
}

.spotlight__card-logo {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  overflow: hidden;
  background: #12121a;
  padding: 16px;
  box-shadow:
    0 12px 32px rgba(77, 163, 255, 0.2),
    0 0 0 1px rgba(77, 163, 255, 0.15);
}

.spotlight__card-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.spotlight__card-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.spotlight__card-score {
  font-size: 42px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Avoid list */

.avoid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.avoid-card {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.avoid-card__logo {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 54px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.avoid-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 4px;
}

.avoid-card__badge {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #ef4444;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.avoid-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.avoid-card__reason {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.avoid-card__score {
  font-size: 12.5px;
  font-weight: 600;
  color: #f87171;
}

/* Why us */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  padding: 28px 24px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.why-card:hover {
  border-color: rgba(77, 163, 255, 0.3);
  transform: translateY(-2px);
}

.why-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid var(--border-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-card:hover .why-card__icon-wrap {
  transform: translateY(-2px);
}

.why-card__icon {
  width: 28px;
  height: 28px;
  display: block;
}

.why-card__icon-wrap--test {
  color: var(--gold-400);
  background: rgba(245, 185, 66, 0.1);
}

.why-card:hover .why-card__icon-wrap--test {
  border-color: rgba(245, 185, 66, 0.4);
  box-shadow: 0 6px 20px rgba(245, 185, 66, 0.18);
}

.why-card__icon-wrap--data {
  color: var(--cyan-400);
  background: rgba(77, 163, 255, 0.1);
}

.why-card:hover .why-card__icon-wrap--data {
  border-color: rgba(77, 163, 255, 0.4);
  box-shadow: 0 6px 20px rgba(77, 163, 255, 0.2);
}

.why-card__icon-wrap--safe {
  color: var(--gold-400);
  background: rgba(251, 191, 36, 0.1);
}

.why-card:hover .why-card__icon-wrap--safe {
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.18);
}

.why-card__icon-wrap--community {
  color: var(--cyan-400);
  background: rgba(77, 163, 255, 0.1);
}

.why-card:hover .why-card__icon-wrap--community {
  border-color: rgba(77, 163, 255, 0.4);
  box-shadow: 0 6px 20px rgba(77, 163, 255, 0.2);
}

.why-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card__text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Body responsive */

@media (max-width: 1024px) {
  .bonus-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .avoid-list { grid-template-columns: repeat(2, 1fr); }
  .methodology__layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .body-section { padding: 60px 0; }

  .casino-card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
  }

  .casino-card__body { flex: 1 1 calc(100% - 100px); min-width: 200px; }
  .casino-card__cta { flex: 1 1 100%; justify-content: center; }

  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .games-bento { grid-template-columns: 1fr 1fr; }
  .games-tile--large { grid-column: span 2; grid-row: span 1; min-height: 200px; }
  .games-tile--live .games-tile__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: auto;
    padding: 20px;
  }
  .games-tile--live .games-tile__visual {
    order: -1;
    margin-bottom: 4px;
  }
  .games-tile--live .games-tile__visual img {
    max-height: 160px;
  }
  .spotlight__inner { grid-template-columns: 1fr; padding: 32px 24px; }
  .avoid-list { grid-template-columns: 1fr; }
  .trust-bar__divider { display: none; }

  .slots-row {
    --slots-gap: 13px;
    display: flex;
    gap: var(--slots-gap);
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 8px;
  }

  .slots-row::-webkit-scrollbar { display: none; }

  .slot-poster {
    flex: 0 0 clamp(116px, calc((100% - var(--slots-gap)) / 2), 154px);
    max-width: none;
    margin-inline: 0;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .pay-grid { grid-template-columns: 1fr; }
  .games-bento { grid-template-columns: 1fr; }
  .games-tile--large { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
}

/* FAQ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(77, 163, 255, 0.35);
  background: rgba(77, 163, 255, 0.05);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.faq-item__question::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  transition: transform 0.25s ease, background-color 0.2s ease;
}

.faq-item[open] .faq-item__question::after {
  content: "−";
  background: rgba(77, 163, 255, 0.15);
  border-color: rgba(77, 163, 255, 0.38);
}

.faq-item__answer {
  padding: 0 22px 18px;
}

.faq-item__answer p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.faq-item__answer a {
  color: var(--cyan-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item__answer a:hover { color: var(--text-primary); }

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  z-index: 1;
  background: var(--bg-elev);
  border-top: 1px solid var(--border-soft);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
}

.footer__tagline {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.footer__age-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
}

.footer__age-number {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  border-radius: 8px;
  background: rgba(245, 185, 66, 0.18);
  border: 1px solid rgba(245, 185, 66, 0.35);
  color: var(--gold-400);
  font-weight: 800;
  font-size: 13px;
}

.footer__age-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer__col-title {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer__links a:hover { color: var(--text-primary); }

.footer__help-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.footer__help-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__help-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer__help-links a:hover { color: var(--text-primary); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 24px;
  border-top: 1px solid var(--border-soft);
}

.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.footer__disclaimer {
  padding: 0 24px 28px;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--text-muted);
  opacity: 0.75;
  max-width: var(--container-w);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(245, 185, 66, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { transform: translateY(-3px); }

.back-to-top svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .footer__top {
    grid-template-columns: 1fr;
    padding: 48px 24px 36px;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__legal { gap: 16px 18px; }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

/* ── Casino brand logos (shared across pages) ── */

.casino-brand-logo {
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.casino-brand-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.casino-brand-logo--vavada { background: #12121a; }
.casino-brand-logo--duel { background: #090909; }
.casino-brand-logo--fresh { background: #12121a; padding: 8px; }

.casino-brand-logo--fresh img,
.casino-card__logo--c img,
.bonus-card__logo--spin img {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
  border-radius: 0;
}

.casino-brand-logo--fresh.fresh-brand-lockup img {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
}

.wb-podium__logo.casino-brand-logo--fresh,
.wb-compare__logo.casino-brand-logo--fresh {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wb-compare__logo.casino-brand-logo--fresh img {
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
}

.fresh-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fresh-brand-lockup img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.fresh-brand-lockup__name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  white-space: nowrap;
}

.casino-brand-logo--sm {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  padding: 6px;
}

.casino-brand-logo--md {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  padding: 8px;
}

.casino-brand-logo--wide {
  width: 100%;
  max-width: 160px;
  height: 52px;
  border-radius: 12px;
  padding: 8px 12px;
  margin-inline: auto;
}

.wb-spotlight__logo {
  width: 120px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 12px;
  padding: 6px 10px;
}

.wb-compare__logo {
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 10px;
  padding: 6px 8px;
}

.wb-compare__logo.fresh-brand-lockup {
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 40px;
  margin-inline: auto;
  padding: 8px 12px;
  gap: 8px;
}

.wb-compare__logo.fresh-brand-lockup .fresh-brand-lockup__name {
  font-size: 13px;
}

.wb-podium__logo.fresh-brand-lockup .fresh-brand-lockup__name {
  font-size: 13px;
}

/* ===================================================
   EDITORIAL INTRO SECTION
   =================================================== */

.editorial-intro {
  background: transparent;
}

.editorial-intro__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, #fff8e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.editorial-intro__body {
  max-width: 860px;
}

.editorial-intro__body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.editorial-intro__body p:last-of-type {
  margin-bottom: 0;
}

.editorial-intro__body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.editorial-intro__body em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.editorial-intro__body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.editorial-intro__body a:hover {
  color: var(--gold-light);
}

.editorial-intro__sub {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* ===================================================
   SECTION BODY TEXT (above/below cards)
   =================================================== */

.section-sub {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.section-desc + .section-sub { margin-top: 1.5rem; }

.section-head--prose {
  max-width: 100%;
}

@media (min-width: 900px) {
  .section-head--prose {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    row-gap: 0;
  }

  .section-head--prose > .section-eyebrow,
  .section-head--prose > .section-title,
  .section-head--prose > .section-desc,
  .section-head--prose > .section-sub,
  .section-head--prose > h1 {
    grid-column: 1 / -1;
  }

  .section-head--prose:not(:has(.section-desc--extra ~ .section-desc--extra)) > .section-desc--extra {
    grid-column: 1 / -1;
  }
}

.section-desc--extra {
  font-size: 0.975rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: none;
  margin-top: 0.75rem;
}

.section-intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.section-foot {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
  max-width: 100%;
}

@media (min-width: 900px) {
  .section-foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    row-gap: 0;
  }

  .section-foot > .section-sub {
    grid-column: 1 / -1;
  }
}

.section-foot p {
  font-size: 0.975rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: none;
  margin-bottom: 1rem;
}

.section-foot p:last-child { margin-bottom: 0; }
