/* ============================================================
   style.css — Yep Casino Polska (radiobolec.pl)
   Direction: Signal Ink — cool paper, scarlet, teal
   ============================================================ */

:root {
  --c-bg: #e6eaf0;
  --c-bg-2: #dde3eb;
  --c-paper: #f4f6f9;
  --c-surface: #ffffff;
  --c-ink: #0f1419;
  --c-ink-soft: #3a4250;
  --c-muted: #6b7380;
  --c-line: #c8d0db;
  --c-line-strong: #9aa6b5;

  --c-scarlet: #e30613;
  --c-scarlet-deep: #b00510;
  --c-teal: #0a6b6b;
  --c-teal-deep: #064f4f;
  --c-brass: #a67c2d;
  --c-ok: #1a7a52;
  --c-warn: #c0392b;

  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;

  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 40px;
  --gap-xl: 72px;

  --max-w: 1120px;
  --header-h: 68px;
  --radius: 6px;
  --ease: 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  background-image:
    linear-gradient(135deg, rgba(15, 20, 25, 0.03) 25%, transparent 25%),
    linear-gradient(225deg, rgba(15, 20, 25, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, rgba(15, 20, 25, 0.03) 25%, transparent 25%),
    linear-gradient(315deg, rgba(15, 20, 25, 0.03) 25%, transparent 25%);
  background-size: 18px 18px;
  background-position: 0 0, 0 9px, 9px -9px, -9px 0;
  color: var(--c-ink-soft);
  line-height: 1.7;
  font-size: 1.05rem;
  overflow-x: hidden;
  min-height: 100dvh;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 0;
  z-index: 10000;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--c-scarlet);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  transform: translateY(-140%);
  transition: transform var(--ease);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(12px);
  outline: 3px solid var(--c-ink);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--c-scarlet);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

a {
  color: var(--c-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

a:hover {
  color: var(--c-scarlet);
}

ul,
ol {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 6px;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--c-ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--gap-sm);
  padding-bottom: 14px;
  border-bottom: 3px solid var(--c-scarlet);
  display: inline-block;
  max-width: 100%;
}

h2::after {
  display: none;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 12px;
}

p {
  margin-bottom: 1rem;
}

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

.section {
  padding: var(--gap-xl) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 680px;
}

.section--alt {
  background: linear-gradient(180deg, var(--c-paper) 0%, rgba(244, 246, 249, 0.4) 100%);
  border-block: 1px solid var(--c-line);
}

.subsection {
  margin-block-start: 48px;
}

.subsection + .subsection {
  margin-block-start: 56px;
}

.section-cta,
.cta-inline {
  margin-block-start: 28px;
}

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

.feature-list {
  margin: 14px 0 14px 1.25rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap-lg);
  align-items: start;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease),
    border-color var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--red {
  background: var(--c-scarlet);
  color: #fff;
  border-color: var(--c-scarlet);
}

.btn--red:hover {
  background: var(--c-scarlet-deep);
  border-color: var(--c-scarlet-deep);
  color: #fff;
}

.btn--gold {
  background: var(--c-teal);
  color: #fff;
  border-color: var(--c-teal);
}

.btn--gold:hover {
  background: var(--c-teal-deep);
  border-color: var(--c-teal-deep);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--ghost:hover {
  background: #fff;
  color: var(--c-ink);
  border-color: #fff;
}

.section .btn--ghost,
.stats-bar .btn--ghost,
.cta-section .btn--ghost {
  color: var(--c-ink);
  border-color: var(--c-ink);
}

.section .btn--ghost:hover,
.cta-section .btn--ghost:hover {
  background: var(--c-ink);
  color: #fff;
}

.btn--lg {
  padding: 17px 36px;
  font-size: 1rem;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.82rem;
}

.btn--full {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(244, 246, 249, 0.88);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--c-line);
  transition: background var(--ease), box-shadow var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(15, 20, 25, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--gap-sm);
}

.header-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: #0f1419;
  padding: 6px 10px;
  border-radius: var(--radius);
}

.header-logo img {
  height: 34px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav__list > li {
  margin: 0;
}

.header-nav a {
  color: var(--c-ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: color var(--ease), background var(--ease);
}

.header-nav a:hover,
.header-nav a.is-active,
.header-nav a[aria-current="true"] {
  color: var(--c-scarlet);
  background: rgba(227, 6, 19, 0.08);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-ink);
  transition: all var(--ease);
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: var(--c-paper);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-md);
  padding: 40px 20px;
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: flex;
  animation: rise-in 0.35s var(--ease) both;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-sm);
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobile-nav__list > li {
  margin: 0;
  width: 100%;
  max-width: 320px;
  display: flex;
  justify-content: center;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-ink);
  padding: 14px 24px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: var(--c-surface);
}

.mobile-nav a:hover {
  color: var(--c-scarlet);
  border-color: var(--c-scarlet);
}

/* Hero — full-bleed composition */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--c-ink);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: hero-ken 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 20, 25, 0.88) 0%,
    rgba(15, 20, 25, 0.55) 48%,
    rgba(15, 20, 25, 0.25) 100%
  );
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  padding: clamp(48px, 8vw, 96px) 22px clamp(56px, 9vw, 100px);
  margin-inline: max(0px, calc((100% - var(--max-w)) / 2));
  animation: rise-in 0.7s var(--ease) 0.1s both;
}

.hero-brand {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 16px;
}

.hero-brand span {
  color: var(--c-scarlet);
}

.hero-title {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0 0 14px;
  max-width: none;
}

.hero-title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  max-width: 20ch;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 28px;
  max-width: 38ch;
  line-height: 1.55;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.hero .btn--ghost:hover {
  background: #fff;
  color: var(--c-ink);
}

@keyframes hero-ken {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats */
.stats-bar {
  background: var(--c-ink);
  color: #fff;
  padding: 8px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
  padding: 22px 14px;
  text-align: center;
  margin: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:last-child {
  border-right: none;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

.stat__label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  font-weight: 600;
}

/* Breadcrumbs */
.breadcrumbs {
  background: transparent;
  border-bottom: 1px solid var(--c-line);
  padding: 14px 0;
  font-size: 0.84rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  margin: 0;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: var(--c-muted);
}

.breadcrumbs a {
  color: var(--c-muted);
  text-decoration: none;
}

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

.breadcrumbs li[aria-current="page"] {
  color: var(--c-ink);
  font-weight: 600;
}

/* Section head */
.sec-head {
  margin-bottom: 32px;
}

.sec-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-teal);
  margin-bottom: 10px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  border-left: 3px solid var(--c-teal);
  padding-left: 10px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Tables */
.table-wrap,
.bonus-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
}

.bonus-table-wrap {
  margin: 24px 0;
}

.tbl,
.btbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.tbl {
  min-width: 280px;
}

.btbl {
  min-width: 540px;
  font-size: 0.875rem;
}

.tbl thead th,
.btbl thead th {
  background: var(--c-ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 14px 16px;
  text-align: left;
  border-bottom: none;
  white-space: nowrap;
}

.tbl tbody tr,
.btbl tbody tr {
  border-bottom: 1px solid var(--c-line);
  transition: background var(--ease);
}

.tbl tbody tr:last-child,
.btbl tbody tr:last-child {
  border-bottom: none;
}

.tbl tbody tr:hover,
.btbl tbody tr:hover {
  background: rgba(10, 107, 107, 0.05);
}

.tbl tbody td,
.btbl tbody td {
  padding: 13px 16px;
  vertical-align: top;
  color: var(--c-ink-soft);
}

.tbl tbody td:first-child {
  color: var(--c-muted);
  font-weight: 600;
  width: 42%;
}

.tbl tbody td:last-child {
  color: var(--c-ink);
  font-weight: 600;
}

.btbl tbody tr:first-child td {
  color: var(--c-ink);
  font-weight: 700;
}

.scroll-hint {
  display: none;
  font-size: 0.76rem;
  color: var(--c-muted);
  text-align: right;
  margin-bottom: 5px;
}

/* Bonus cards — interaction containers */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: var(--gap-md);
  margin: 32px 0;
}

.bcard {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color var(--ease), transform var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.bcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--c-scarlet);
}

.bcard:hover {
  transform: translateY(-4px);
  border-color: var(--c-ink);
}

.bcard__icon {
  display: none;
}

.bcard__amount {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--c-scarlet);
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.bcard__title {
  font-weight: 700;
  color: var(--c-ink);
  font-size: 1rem;
  margin-bottom: 8px;
  padding: 0;
  font-family: var(--font-display);
  border: none;
}

.bcard__title::after {
  display: none;
}

.bcard__desc {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin-bottom: 20px;
  flex: 1;
}

/* Promo */
.promo-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--gap-md);
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 24px 0;
}

.promo-block__code {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.18em;
  padding: 10px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
}

.promo-block__info h4 {
  color: #fff;
  margin-bottom: 4px;
  font-size: 1rem;
  font-family: var(--font-display);
}

.promo-block__info p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.promo-block .btn--gold {
  background: #fff;
  color: var(--c-ink);
  border-color: #fff;
}

.promo-block .btn--gold:hover {
  background: var(--c-scarlet);
  color: #fff;
  border-color: var(--c-scarlet);
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
  list-style: none;
  padding: 0;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color var(--ease), transform var(--ease);
}

.step:hover {
  border-color: var(--c-teal);
  transform: translateX(4px);
}

.step__num {
  min-width: 36px;
  height: 36px;
  background: var(--c-ink);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.step strong {
  display: block;
  margin-bottom: 3px;
  color: var(--c-ink);
}

.step p {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin: 0;
}

/* Pros / cons */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
  margin: 28px 0;
}

.pc-col {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 24px;
}

.pc-col--pro {
  border-top: 3px solid var(--c-ok);
}

.pc-col--con {
  border-top: 3px solid var(--c-warn);
}

.pc-col h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  padding: 0;
}

.pc-col--pro h3 {
  color: var(--c-ok);
}

.pc-col--con h3 {
  color: var(--c-warn);
}

.pc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--c-ink-soft);
}

.pc-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  font-size: 0.95rem;
}

.pc-col--pro .pc-list li::before {
  content: "+";
  color: var(--c-ok);
}

.pc-col--con .pc-list li::before {
  content: "–";
  color: var(--c-warn);
}

/* Rating */
.rating-box {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
  flex-wrap: wrap;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-left: 5px solid var(--c-brass);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 28px 0;
}

.rating-score {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1;
}

.rating-score span {
  font-size: 1.15rem;
  color: var(--c-muted);
}

.rating-info {
  flex: 1;
  min-width: 200px;
}

.stars {
  font-size: 1.15rem;
  letter-spacing: 2px;
  color: var(--c-brass);
  margin-bottom: 6px;
}

.rating-info p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--c-muted);
}

/* Games */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 28px 0;
  list-style: none;
  padding: 0;
}

.games-grid > li {
  margin: 0;
}

.game-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  transition: transform var(--ease), border-color var(--ease);
  color: inherit;
  text-decoration: none;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-scarlet);
  z-index: 1;
  color: inherit;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

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

.game-card__ov {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}

.game-card:hover .game-card__ov,
.game-card:focus-visible .game-card__ov {
  opacity: 1;
}

.play-btn {
  width: 48px;
  height: 48px;
  background: var(--c-scarlet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  margin-left: 2px;
}

/* VIP */
.vip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0;
  list-style: none;
  padding: 0;
}

.vip-list > li {
  margin: 0;
}

.vip-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color var(--ease), transform var(--ease);
}

.vip-row:hover {
  border-color: var(--c-teal);
  transform: translateX(4px);
}

.vip-row__icon {
  display: none;
}

.vip-row__name {
  font-weight: 700;
  color: var(--c-ink);
  font-size: 1rem;
  margin: 0;
  font-family: var(--font-display);
}

.vip-row__range {
  font-size: 0.78rem;
  color: var(--c-muted);
  margin: 2px 0 0;
}

.vip-row__benefit {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  margin-left: auto;
  text-align: right;
  max-width: 55%;
}

/* Payments */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin: 24px 0;
  list-style: none;
  padding: 0;
}

.pay-grid > li {
  margin: 0;
}

.pay-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
  transition: border-color var(--ease), transform var(--ease);
}

.pay-item:hover {
  border-color: var(--c-ink);
  transform: translateY(-2px);
}

.pay-item .icon {
  display: none;
}

.pay-item .name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--c-ink);
  font-weight: 700;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 28px 0;
}

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease);
}

.faq-item[open] {
  border-color: var(--c-ink);
}

.faq-q {
  list-style: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-ink);
  transition: color var(--ease);
}

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

.faq-q::marker {
  content: "";
}

.faq-q:hover {
  color: var(--c-scarlet);
}

.faq-icon {
  min-width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--c-ink);
  line-height: 1;
  transition: transform var(--ease), background var(--ease), color var(--ease);
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--c-scarlet);
  border-color: var(--c-scarlet);
  color: #fff;
}

.faq-a {
  padding: 0 20px 18px;
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  line-height: 1.7;
}

.faq-a p {
  margin: 0;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--c-ink) 0%, #1a2430 55%, #0a3d3d 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(227, 6, 19, 0.22), transparent 45%);
  pointer-events: none;
}

.cta-section h2 {
  text-align: center;
  color: #fff;
  border-bottom-color: var(--c-scarlet);
  display: inline-block;
}

.cta-section > .container > p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-section .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.cta-section .btn--ghost:hover {
  background: #fff;
  color: var(--c-ink);
}

/* Footer */
.site-footer {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--gap-lg);
  margin-bottom: 40px;
}

.footer-brand a {
  text-decoration: none;
  display: inline-flex;
  background: #0f1419;
  padding: 6px 10px;
  border-radius: var(--radius);
}

.footer-brand img {
  height: 34px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

.footer-col__title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  border: none;
  padding: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color var(--ease);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
}

.disclaimer {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 820px;
}

.disclaimer strong {
  color: rgba(255, 255, 255, 0.85);
}

.age-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}

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

.scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 700;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: var(--radius);
  background: var(--c-scarlet);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}

.scroll-top-btn[hidden] {
  display: none;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  background: var(--c-scarlet-deep);
}

.scroll-top-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

/* Responsive tables as stacked cards on mobile */
@media (max-width: 720px) {
  .tbl thead,
  .btbl thead {
    display: none;
  }

  .tbl,
  .btbl,
  .tbl tbody,
  .btbl tbody,
  .tbl tr,
  .btbl tr,
  .tbl td,
  .btbl td {
    display: block;
    width: 100%;
  }

  .tbl tbody tr,
  .btbl tbody tr {
    padding: 12px 14px;
    border-bottom: 1px solid var(--c-line);
  }

  .tbl tbody td,
  .btbl tbody td {
    padding: 4px 0;
    width: 100%;
  }

  .tbl tbody td::before,
  .btbl tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-muted);
    font-weight: 700;
    margin-bottom: 2px;
  }

  .tbl tbody td:first-child {
    width: 100%;
  }

  .scroll-hint {
    display: block;
  }

  .btbl {
    min-width: 0;
  }

  .bonus-table-wrap {
    overflow: visible;
  }
}

@media (max-width: 980px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .header-nav,
  .header-cta-desktop {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .proscons {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
  }

  .vip-row {
    flex-wrap: wrap;
  }

  .vip-row__benefit {
    margin-left: 0;
    text-align: left;
    max-width: 100%;
    width: 100%;
  }
}

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

  .stat:nth-child(2) {
    border-right: none;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
  }

  .hero-overlay {
    padding-bottom: 48px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
}
