/*
 * SQUEENVIP — Casino landing
 * Archivo Black / Plus Jakarta Sans · Red #A70503 + Yellow #E2C125 on white
 */

/* ===== Tokens ===== */
:root {
  --paper: #ffffff;
  --paper-2: #f8f5ee;
  --paper-3: #f1ecd9;
  --ink: #14110f;
  --ink-2: #3a3530;
  --ink-3: #6c655d;
  --ink-4: #9a948c;

  --red: #a70503;
  --red-deep: #6f0202;
  --red-bright: #c8161d;
  --yellow: #e2c125;
  --yellow-deep: #b89a17;
  --yellow-soft: #f5e29d;
  --yellow-pale: #fdf6d8;

  --rule: rgba(20, 17, 15, 0.14);
  --rule-soft: rgba(20, 17, 15, 0.07);
  --rule-paper: rgba(255, 255, 255, 0.16);

  --display: "Archivo Black", "Archivo", "Helvetica Neue", sans-serif;
  --body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 22px;
  --radius-xl: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: normal; color: var(--red); }

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

/* ===== Type ===== */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.kicker {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  padding: 6px 14px;
  background: var(--paper-3);
  border-radius: 999px;
  margin-bottom: 22px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 0.78rem; }
.btn-lg { padding: 18px 34px; font-size: 0.96rem; }

.btn-primary {
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 8px 22px rgba(167, 5, 3, 0.28);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20, 17, 15, 0.3);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(226, 193, 37, 0.4);
}
.btn-yellow:hover {
  background: var(--ink);
  color: var(--yellow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--yellow);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { color: var(--red); }

/* ===== Notice ticker ===== */
.notice {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 2px solid var(--yellow);
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 500;
  position: relative;
  z-index: 60;
}
.notice b { color: var(--yellow); font-weight: 800; }
.notice-track {
  display: flex;
  gap: 36px;
  padding: 11px 0;
  white-space: nowrap;
  animation: noticeScroll 50s linear infinite;
  width: max-content;
}
.notice .bullet { color: var(--yellow); font-size: 0.5rem; align-self: center; }
@keyframes noticeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Header ===== */
.head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.head.scrolled {
  border-bottom-color: var(--rule);
  box-shadow: 0 6px 24px rgba(20, 17, 15, 0.06);
}
.head-row {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.head.scrolled .head-row { padding: 12px 28px; }
.brand img {
  height: 48px;
  width: auto;
  transition: height 0.3s ease;
}
.head.scrolled .brand img { height: 38px; }

.head-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.head-nav a {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.head-nav a:hover { color: var(--red); }
.head-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.head-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.head-cta { display: flex; gap: 12px; align-items: center; }

.burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  border: 1px solid var(--rule);
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 28px 24px;
  border-top: 1px solid var(--rule-soft);
  background: var(--paper);
}
.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-weight: 600;
}
.mobile-cta {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.mobile-cta .btn { flex: 1; }

/* ===== Banner slider ===== */
.banner {
  background: var(--paper);
  padding: 24px 0 0;
}
.banner-shell {
  max-width: calc(var(--container) + 80px);
  margin: 0 auto;
  padding: 0 28px;
}
.banner-stage {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 1600 / 333;
  box-shadow: 0 30px 60px -20px rgba(167, 5, 3, 0.25), 0 14px 30px -10px rgba(20, 17, 15, 0.18);
}
.banner-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}
.banner-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  display: block;
}
.banner-slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: grid; place-items: center;
  border: 0;
  box-shadow: 0 6px 18px rgba(20, 17, 15, 0.18);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.banner-arrow:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-50%) scale(1.08);
}
.banner-prev { left: 22px; }
.banner-next { right: 22px; }

.banner-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  background: rgba(20, 17, 15, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
}
.banner-dot {
  width: 28px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  border: 0;
  padding: 0;
  transition: background 0.22s ease, width 0.32s ease;
}
.banner-dot:hover { background: rgba(255, 255, 255, 0.9); }
.banner-dot.is-active {
  background: var(--yellow);
  width: 44px;
}

/* ===== Trust badges ===== */
.trust { padding: 50px 28px 30px; background: var(--paper); }
.trust .container { padding-left: 0; padding-right: 0; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border-right: 1px solid var(--rule-soft);
}
.trust-item:last-child { border-right: 0; }
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  color: var(--red);
  flex-shrink: 0;
  border: 1px solid var(--rule-soft);
}
.trust-item h4 {
  font-family: var(--body);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 2px;
}
.trust-item p {
  font-size: 0.8rem;
  color: var(--ink-3);
  line-height: 1.35;
}

/* ===== Section heads ===== */
section { padding: 90px 0; }

.sec-head {
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.sec-head h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  letter-spacing: -0.022em;
  line-height: 1;
}
.sec-head h2 em {
  font-style: italic;
  color: var(--red);
  font-weight: 900;
}
.sec-head p {
  font-size: 1rem;
  color: var(--ink-2);
  margin-top: 12px;
  line-height: 1.6;
}

/* Centered: heading on line 1, paragraph on line 2 — both centered */
.sec-head-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-wrap: nowrap;
  gap: 0;
}
.sec-head-center .kicker { margin-bottom: 18px; }
.sec-head-center h2 { margin-bottom: 16px; }
.sec-head-center > p {
  font-size: 1.02rem;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
}

/* Stacked: title-left / paragraph-right two-column row */
.sec-head-stacked {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  column-gap: 64px;
  align-items: end;
  text-align: left;
  flex-direction: initial;
}
.sec-head-stacked > .kicker { grid-column: 1; grid-row: 1; }
.sec-head-stacked > h2 { grid-column: 1; grid-row: 2; }
.sec-head-stacked > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
  max-width: none;
  padding-bottom: 6px;
}

/* Promotions head: title block left, paragraph middle, arrows right */
.sec-head > div:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  column-gap: 56px;
  align-items: end;
  flex: 1;
}
.sec-head > div:first-child > .kicker { grid-column: 1; grid-row: 1; }
.sec-head > div:first-child > h2 { grid-column: 1; grid-row: 2; }
.sec-head > div:first-child > .sec-lead {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: none;
  margin: 0;
  padding-bottom: 6px;
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.sec-nav { display: flex; gap: 10px; }

/* Promotions carousel arrows below the rail */
.promo-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.sec-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.sec-arrow:hover {
  background: var(--ink);
  color: var(--yellow);
  transform: scale(1.05);
}
.sec-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ===== Promotions carousel ===== */
.promos { padding: 90px 0 60px; }
.promo-rail {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 0 24px;
  scroll-padding-inline: 28px;
  margin: 0 auto;
  max-width: var(--container);
  scrollbar-width: none;
}
.promo-rail::-webkit-scrollbar { display: none; }
.promo-row {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 28px;
}
.promo-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.promo-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 18px 40px -16px rgba(167, 5, 3, 0.3);
}
.promo-feature { flex: 0 0 380px; }
.promo-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-2);
}
.promo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.32, 0, 0.16, 1);
}
.promo-card:hover .promo-img img { transform: scale(1.06); }
.promo-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.promo-tag {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--red);
  padding: 5px 12px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 14px;
}
.promo-body h3 {
  font-size: 1.3rem;
  letter-spacing: -0.018em;
  margin-bottom: 8px;
}
.promo-body p {
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.5;
  margin-bottom: 18px;
  flex: 1;
}
.promo-body .btn { align-self: flex-start; }

/* ===== Live wins ticker ===== */
.wins {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: stretch;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  margin: 24px 0 0;
  overflow: hidden;
}
.wins-label {
  background: var(--red);
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: var(--body);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.84rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.wins-label::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 0; bottom: 0;
  width: 24px;
  background: linear-gradient(90deg, var(--red), transparent);
  pointer-events: none;
}
.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  position: relative;
}
.pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.4;
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wins-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: winsScroll 60s linear infinite;
  padding: 16px 0;
  align-items: center;
}
.win-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}
.win-item b { color: var(--paper); font-weight: 700; }
.win-item .game { color: var(--ink-4); }
.win-item .amount {
  color: var(--yellow);
  font-weight: 800;
  font-family: var(--display);
  font-size: 0.96rem;
  letter-spacing: -0.005em;
}
.win-item .star { color: var(--yellow); }
@keyframes winsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Game categories ===== */
.games { padding: 100px 0; background: var(--paper); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4 / 3;
  isolation: isolate;
  border: 2px solid var(--rule);
  transition: transform 0.4s cubic-bezier(0.32, 0, 0.16, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  /* button reset */
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
  width: 100%;
  display: block;
}
.cat.is-active {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -14px rgba(167, 5, 3, 0.42);
}
.cat.is-active::before {
  background: linear-gradient(180deg, rgba(167, 5, 3, 0.5) 0%, rgba(20, 17, 15, 0.95) 100%);
}
.cat.is-active::after {
  border-top-color: var(--yellow);
}
.cat.is-active .cat-img img { transform: scale(1.05); }
.cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 15, 0.05) 30%, rgba(20, 17, 15, 0.92) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}
.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid transparent;
  z-index: 2;
  transition: border-color 0.3s ease;
}
.cat:hover { transform: translateY(-6px); border-color: var(--red); }
.cat:hover::before { background: linear-gradient(180deg, rgba(167, 5, 3, 0.45) 0%, rgba(20, 17, 15, 0.95) 100%); }
.cat:hover::after { border-top-color: var(--yellow); }
.cat-img { position: absolute; inset: 0; z-index: 0; }
.cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.32, 0, 0.16, 1);
}
.cat:hover .cat-img img { transform: scale(1.08); }
.cat-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 24px 26px;
  color: var(--paper);
}
.cat-meta h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  letter-spacing: -0.018em;
  margin-bottom: 6px;
  color: var(--paper);
}
.cat-meta span {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--yellow);
}

/* ===== Values ===== */
.values { background: var(--paper-2); padding: 100px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  border: 1px solid var(--rule-soft);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.value::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.32, 0, 0.16, 1);
}
.value:hover { transform: translateY(-6px); border-color: var(--red); }
.value:hover::before { transform: scaleX(1); }
.value-emph {
  background: var(--yellow);
}
.value-emph::before { background: var(--ink); }
.value img {
  width: 56px; height: 56px;
  margin: 0 auto 22px;
  object-fit: contain;
}
.value h3 {
  font-size: 1.2rem;
  letter-spacing: -0.012em;
  margin-bottom: 10px;
  text-transform: none;
}
.value p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.value-emph p { color: var(--ink); }

/* ===== Steps ===== */
.steps { background: var(--paper); padding: 100px 0; }
/* Page H1 (sits above the trust badges) */
.page-h1 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  max-width: 920px;
  margin: 16px auto 64px;
}
.page-h1 .hl { color: var(--red); }
.step-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.step-row::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--rule) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}
.step:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 16px 40px -18px rgba(167, 5, 3, 0.25);
}
.step-num {
  position: absolute;
  top: -22px;
  left: 28px;
  background: var(--red);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(167, 5, 3, 0.25);
}
.step-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--yellow-pale);
  border: 1px solid var(--yellow);
  display: grid;
  place-items: center;
  margin: 16px 0 22px;
}
.step-icon img { width: 32px; height: 32px; object-fit: contain; }
.step h3 {
  font-size: 1.4rem;
  letter-spacing: -0.018em;
  margin-bottom: 8px;
  text-transform: none;
}
.step p {
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ===== Payment grid ===== */
.pay { background: var(--paper-2); padding: 90px 0; }
.pay-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.pay-cell {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 26px 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule-soft);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 16 / 10;
}
.pay-cell:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 14px 28px -16px rgba(167, 5, 3, 0.22);
}
.pay-cell img {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.pay-cell:hover img { transform: scale(1.06); }

/* ===== FAQ ===== */
.faq { background: var(--paper); padding: 100px 0; }
.faq-inner { max-width: 920px; margin: 0 auto; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.faq-item {
  background: var(--paper-2);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  padding: 4px 24px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.faq-item[open] {
  background: var(--paper);
  border-color: var(--red);
  box-shadow: 0 14px 30px -18px rgba(167, 5, 3, 0.22);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h4 {
  font-family: var(--body);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-transform: none;
  line-height: 1.35;
  color: var(--ink);
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 400;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 1;
  text-align: center;
  border: 1.5px solid var(--red);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--red);
  color: var(--paper);
  transform: translateY(-50%) rotate(180deg);
}
.faq-item p {
  padding: 0 36px 22px 0;
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ===== CTA ===== */
.cta {
  background: var(--red);
  color: var(--paper);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(226, 193, 37, 0.32), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(20, 17, 15, 0.4), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cta .kicker {
  background: rgba(255, 255, 255, 0.14);
  color: var(--yellow);
  margin-bottom: 18px;
}
.cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.022em;
  line-height: 1;
  margin-bottom: 12px;
}
.cta h2 em {
  font-style: normal;
  color: var(--yellow);
}
.cta p {
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 460px;
}

/* ===== Footer ===== */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 70px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.foot-logo { height: 50px; width: auto; margin-bottom: 18px; }
.foot-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 360px;
}
.foot-meta {
  font-size: 0.78rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow) !important;
  margin-top: 22px;
}
.foot h5 {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.foot ul li { margin-bottom: 10px; }
.foot a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.22s ease, padding-left 0.22s ease;
}
.foot a:hover {
  color: var(--yellow);
  padding-left: 4px;
}
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  gap: 16px;
}
.age-mark {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}
.age-mark sup { font-size: 0.7em; font-weight: 400; }

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.32, 0, 0.16, 1),
    transform 0.8s cubic-bezier(0.32, 0, 0.16, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .notice-track, .wins-track, .pulse::before { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .head-nav { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--rule-soft); padding-bottom: 14px; }
  .trust-item:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 800px) {
  section { padding: 70px 0; }
  .head-cta .btn { display: none; }
  .head-cta .btn-primary { display: inline-flex; padding: 10px 16px; font-size: 0.78rem; }
  .burger { display: flex; }
  .head.menu-open .mobile-nav { display: flex; }
  .step-row { grid-template-columns: 1fr; gap: 28px; }
  .step-row::before { display: none; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .sec-head-stacked,
  .sec-head > div:first-child {
    grid-template-columns: 1fr;
    gap: 14px 0;
  }
  .sec-head-stacked > p,
  .sec-head > div:first-child > .sec-lead {
    grid-column: 1;
    grid-row: auto;
    padding-bottom: 0;
    margin-top: 6px;
  }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .banner-stage { aspect-ratio: 1600 / 333; border-radius: var(--radius-lg); }
}
@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .banner-shell { padding: 0 20px; }
  .head-row { padding: 14px 20px; }
  .cat-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pay-cell { padding: 16px 12px; }
  .pay-cell img { max-height: 40px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-row { grid-template-columns: 1fr; padding: 12px; }
  .trust-item { border-bottom: 1px solid var(--rule-soft); padding: 12px; }
  .trust-item:last-child { border-bottom: 0; }
  .promo-card { flex: 0 0 280px; }
  .promo-feature { flex: 0 0 280px; }
  .banner-arrow { display: none; }
  /* Branded panel on phones: full image (no crop) centered on a brand gradient */
  .banner-stage { aspect-ratio: 5 / 2; background: linear-gradient(135deg, var(--red-deep), var(--ink)); }
  .banner-slide img { object-fit: contain; }
  .banner-dots { bottom: 12px; gap: 5px; padding: 5px 9px; }
  .banner-dot { width: 16px; height: 4px; }
  .banner-dot.is-active { width: 26px; }
  .wins-label { padding: 14px 16px; font-size: 0.74rem; }
}

/* ============================================== */
/* === Additions for article-integrated sections == */
/* ============================================== */

/* ===== Brand intro (landscape · 2-col) ===== */
.intro {
  background: var(--paper);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.intro-content {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.intro-left {
  position: sticky;
  top: 110px;
}
.intro-left .kicker {
  margin-bottom: 24px;
}
.intro-left h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.022em;
  line-height: 1;
  margin-bottom: 32px;
}
.intro-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.intro-right {
  border-left: 1px solid var(--rule);
  padding-left: 56px;
}
.intro-lead {
  font-size: 1.14rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 22px;
}
.intro-right p {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 20px;
}
.intro-right p:last-child {
  margin-bottom: 0;
}
.intro-right strong {
  color: var(--red);
  font-weight: 800;
}

.intro-art {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 480px;
  justify-self: end;
}
.intro-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 48px -16px rgba(167, 5, 3, 0.28);
  border: 4px solid var(--paper);
  background: var(--paper-2);
  transition: transform 0.6s cubic-bezier(0.32, 0, 0.16, 1);
}
.intro-img img { width: 100%; height: 100%; object-fit: cover; }
.intro-img-1 { width: 60%; height: 60%; top: 0; left: 0; transform: rotate(-3deg); }
.intro-img-2 { width: 56%; height: 60%; bottom: 0; right: 0; transform: rotate(3deg); z-index: 2; }
.intro-img-3 { width: 50%; height: 38%; top: 30%; right: 8%; transform: rotate(8deg); z-index: 1; }
.intro-art:hover .intro-img-1 { transform: rotate(-5deg) translateY(-6px); }
.intro-art:hover .intro-img-2 { transform: rotate(5deg) translateY(-6px); }
.intro-art:hover .intro-img-3 { transform: rotate(10deg) translateY(-6px); }

.intro-stat {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 18px 26px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 12px 28px rgba(226, 193, 37, 0.45);
}
.intro-stat-num {
  display: block;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.intro-stat-label {
  display: block;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.1em;
  margin-top: 5px;
  text-transform: uppercase;
}

/* ===== Library tabs ===== */
.lib { background: var(--paper-2); padding: 100px 0; }
.lib-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 32px;
  padding: 6px;
  background: var(--paper);
  border-radius: 999px;
  border: 1px solid var(--rule-soft);
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.lib-tabs::-webkit-scrollbar { display: none; }
.lib-tab {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  color: var(--ink-2);
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.lib-tab:hover { color: var(--red); }
.lib-tab.is-active {
  background: var(--red);
  color: var(--paper);
}

.lib-stage {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule-soft);
  overflow: hidden;
  box-shadow: 0 18px 40px -22px rgba(167, 5, 3, 0.18);
}
.games .lib-stage {
  margin-top: 28px;
  border: 2px solid var(--red);
}
.games .lib-tabs {
  margin-left: auto;
  margin-right: auto;
}
.lib-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.lib-panel.is-active {
  display: grid;
  animation: libFade 0.45s ease-out;
}
@keyframes libFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.lib-art {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.lib-art img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.lib-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(167, 5, 3, 0.22) 0%, transparent 60%);
}
.lib-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lib-body h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.018em;
  margin-bottom: 14px;
  color: var(--ink);
  text-transform: none;
}
.lib-body > p {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 24px;
}
.lib-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lib-list li {
  font-size: 0.94rem;
  color: var(--ink-2);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.lib-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--red);
}
.lib-list b { color: var(--ink); font-weight: 800; }

/* ===== Values 3x2 override ===== */
.values .values-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== Trusted Providers ===== */
.providers {
  background: var(--paper);
  padding: 100px 0;
}
.prov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prov-col {
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--rule-soft);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.prov-col:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  background: var(--paper);
  box-shadow: 0 18px 40px -18px rgba(167, 5, 3, 0.22);
}
.prov-col h4 {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.prov-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prov-list li {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.012em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
  transition: color 0.22s ease, padding-left 0.22s ease;
}
.prov-list li:last-child { border-bottom: 0; }
.prov-list li:hover { color: var(--red); padding-left: 6px; }

/* ===== Payment Methods detail ===== */
.pay-detail { background: var(--paper-2); padding: 100px 0; }
.pay-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.pay-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 44px 28px 32px;
  border: 1px solid var(--rule-soft);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pay-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 18px 40px -18px rgba(167, 5, 3, 0.22);
}
.pay-no {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--paper);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--red);
  margin-bottom: 18px;
}
.pay-card h3 {
  font-size: 1.05rem;
  letter-spacing: -0.012em;
  margin-bottom: 12px;
  color: var(--ink);
  text-transform: none;
  line-height: 1.3;
}
.pay-card p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ===== FAQ extras ===== */
.faq-steps {
  list-style: decimal;
  padding-left: 24px !important;
  margin: 0 36px 22px 0;
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.7;
}
.faq-steps li, .faq-bullets li { margin-bottom: 6px; }
.faq-bullets {
  list-style: disc;
  padding-left: 24px !important;
  margin: 0 36px 22px 0;
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ===== Responsive overrides for new sections ===== */
@media (max-width: 1100px) {
  .values .values-grid { grid-template-columns: repeat(2, 1fr); }
  .prov-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-cards { grid-template-columns: repeat(2, 1fr); }
  .step-row { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .step-row::before { display: none; }
  .pay-intro { grid-template-columns: 1fr; gap: 18px; }
  .pay-intro::before { display: none; }
  .pay-intro p:first-child, .pay-intro p:last-child { padding: 0; }
  .intro-content { grid-template-columns: 1fr; gap: 40px; }
  .intro-left { position: static; top: auto; }
  .intro-right { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 32px; }
  .lib-panel { grid-template-columns: 1fr; }
  .lib-art { min-height: 260px; }
  .lib-body { padding: 36px 28px; }
}
@media (max-width: 540px) {
  .values .values-grid { grid-template-columns: 1fr; }
  .prov-grid { grid-template-columns: 1fr; }
  .pay-cards { grid-template-columns: 1fr; }
  .intro-stat { padding: 14px 20px; bottom: -10px; left: -10px; }
  .intro-stat-num { font-size: 1.6rem; }
  .lib-tabs { width: 100%; flex-wrap: nowrap; padding: 4px; }
  .lib-tab { padding: 10px 16px; font-size: 0.78rem; }
  /* Wider side gutter for the promos part on small screens */
  .promos .container { padding-left: 28px; padding-right: 28px; }
}
@media (max-width: 500px) {
  .step-row { grid-template-columns: 1fr; gap: 24px; }
  .step-row::before { display: none; }
}

/* ============================================== */
/* === Article-content additions ================== */
/* ============================================== */

/* Section lead — used for longer intro paragraphs above grids */
.sec-lead {
  font-size: 1.04rem;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 760px;
  margin: 14px 0 0;
}
.values-lead {
  margin: -16px 0 36px;
  font-style: italic;
  color: var(--ink-3);
  font-size: 1rem;
}
/* Generic section intro — longer-paragraph */
.sec-intro,
.pay-intro {
  margin: -16px auto 56px;
  max-width: 880px;
  text-align: center;
}
.sec-intro p,
.pay-intro p {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.8;
  margin: 0 0 18px;
}
.sec-intro p:last-child,
.pay-intro p:last-child { margin-bottom: 0; }
.sec-intro-lead,
.pay-intro-lead {
  font-weight: 500;
  color: var(--ink);
  font-size: 1.06rem !important;
}

.pay-lead {
  margin: -16px 0 48px;
  text-align: left;
  max-width: 820px;
  color: var(--ink-2);
}

/* Library tab — secondary paragraph */
.lib-sub {
  font-size: 0.96rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 22px;
  padding-left: 14px;
  border-left: 2px solid var(--yellow);
}

/* Provider category description */
.prov-desc {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--rule-soft);
}

/* CTA — restructured */
.cta { padding: 100px 0; }
.cta-head {
  text-align: center;
  margin-bottom: 36px;
}
.cta-head .kicker {
  background: rgba(255, 255, 255, 0.14);
  color: var(--yellow);
  margin-bottom: 18px;
}
.cta h2 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  letter-spacing: -0.022em;
  line-height: 0.98;
}
.cta-lead {
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 880px;
  margin: 0 auto 28px;
  text-align: center;
}
.cta-sub {
  font-family: var(--display);
  font-size: 1.14rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--yellow);
  text-align: center;
  max-width: none;
  margin: 0 auto 24px;
}
.cta-list {
  max-width: 760px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.cta-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.cta-list li b { color: var(--yellow); font-weight: 800; }
.cta-mark {
  color: var(--yellow);
  font-size: 1.05rem;
  flex-shrink: 0;
  line-height: 1.4;
}
.cta-foot {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
  max-width: 880px;
  margin: 0 auto 36px;
  text-align: center;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Outline-light button for use on dark/red backgrounds */
.btn-outline-light {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: var(--paper);
  color: var(--red);
  border-color: var(--paper);
  transform: translateY(-2px);
}

@media (max-width: 800px) {
  .cta-list { grid-template-columns: 1fr; max-width: 520px; }
  .lib-sub { padding-left: 12px; }
}

/* ============================================== */
/* === Expanded Provider cards =================== */
/* ============================================== */

/* Switch grid to 2-col by default for breathing room */
.providers .prov-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.prov-col {
  position: relative;
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
}
.prov-col h4 {
  text-transform: none;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 14px;
  font-size: 1.4rem;
  letter-spacing: -0.012em;
  display: block;
  color: var(--ink);
}
.prov-no {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--paper);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--red);
}
.prov-desc {
  font-size: 0.96rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--rule);
}

.prov-section-label {
  display: block;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 8px 0 14px;
}
.prov-section-label + .prov-section-label { margin-top: 22px; }

.prov-bens {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 22px;
}
.prov-bens li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.5;
  font-family: var(--body);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  border: 0;
}
.prov-bens li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}
.prov-bens li:hover { color: var(--ink); padding-left: 26px; }

.prov-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--rule);
}
.prov-list li {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.prov-list li:last-child { border-bottom: 1px solid var(--rule); }
.prov-list li:hover {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
  padding-left: 14px;
}

.prov-foot {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.96rem;
  color: var(--ink-3);
  line-height: 1.55;
  margin-top: auto;
  padding-top: 4px;
  letter-spacing: -0.005em;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: italic;
}

@media (max-width: 1100px) {
  .providers .prov-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .prov-col { padding: 36px 24px 28px; }
  .prov-no { top: 18px; right: 20px; }
  .prov-list li { font-size: 0.76rem; padding: 7px 12px; }
}

/* sqv-headfix start */
.head-row{grid-template-columns:auto auto 1fr!important;gap:16px;align-items:center}
.head-row .burger,.head-row #hamburger{order:-1;display:inline-flex!important;flex-direction:column;
  justify-content:center;gap:5px;width:44px;height:44px;padding:11px;box-sizing:border-box;
  border:1px solid var(--rule);border-radius:12px;background:var(--paper);cursor:pointer}
.head-row .burger span,.head-row #hamburger span{display:block;height:2px;width:100%;
  background:var(--ink);border-radius:2px}
.head-row .burger:hover,.head-row #hamburger:hover{border-color:var(--red)}
.head .brand{justify-self:start}
.head .head-nav{justify-content:center}
.head .head-cta{justify-self:end;display:flex;gap:10px;align-items:center}
.head .head-cta .btn{display:inline-flex!important}
@media(max-width:980px){
  .head-row{grid-template-columns:auto 1fr auto!important}
  .head .head-nav{display:none!important}
  .head .head-cta .btn{padding:9px 14px;font-size:.74rem}
}
@media(max-width:560px){
  .head-row{gap:10px;padding:12px 14px}
  .head .head-cta{gap:7px}
  .head .head-cta .btn{padding:8px 11px;font-size:.68rem}
  .head .brand img{height:34px}
  .head-row .burger,.head-row #hamburger{width:40px;height:40px;padding:10px}
}
/* sqv-headfix end */

/* sqv-marquee-move start */
/* keep decorative tickers scrolling even with reduced-motion / responsive overrides */
.notice-track{animation:noticeScroll 50s linear infinite!important;width:max-content!important}
.wins-track{animation:winsScroll 60s linear infinite!important}
.pulse::before{animation:pulse 1.6s ease-out infinite!important}
@media (prefers-reduced-motion: reduce){
  .notice-track{animation:noticeScroll 50s linear infinite!important}
  .wins-track{animation:winsScroll 60s linear infinite!important}
  .pulse::before{animation:pulse 1.6s ease-out infinite!important}
}
/* sqv-marquee-move end */

/* sqv-noscroll start */
/* Horizontal scroll: only the main content area scrolls; header/footer/notice stay put.
   (overflow:clip on body prevents page-level h-scroll WITHOUT breaking sticky header
   or the fixed desktop sidebar; main gets its own h-scroll for wide content.) */
html,body{max-width:100%}
body{overflow-x:clip}
.notice,.head,.foot{overflow-x:clip;max-width:100%}
main{overflow-x:auto;overflow-y:visible;max-width:100%}
@media (min-width:1024px){
  /* account for the 280px permanent sidebar so nothing is wider than the content area */
  main{max-width:calc(100vw - 280px)}
  .notice,.head,.foot{max-width:calc(100vw - 280px)}
}
/* sqv-noscroll end */

/* sqv-headfix-desk start */
/* Desktop (permanent sidebar, hamburger hidden): logo left, Login/Register far right */
@media (min-width:1024px){
  .head-row{display:flex!important;justify-content:space-between!important;
    align-items:center;gap:16px;grid-template-columns:none!important}
  .head .brand{margin-right:auto}
  .head .head-cta{margin-left:auto;justify-self:auto;display:flex;gap:12px;align-items:center}
  .head .head-cta .btn{display:inline-flex!important}
}
/* sqv-headfix-desk end */

/* sqv-hdr-h start */
/* Lock header to a constant 68px so the Register button's responsive
   padding/font can no longer change the header height. */
.head-row{height:68px!important;min-height:68px!important;box-sizing:border-box!important}
.head.scrolled .head-row{height:68px!important;padding-top:0!important;padding-bottom:0!important}
.head .head-cta .btn{height:40px!important;padding-top:0!important;padding-bottom:0!important;
  display:inline-flex;align-items:center;line-height:1}
.head .brand img{max-height:46px}
/* sqv-hdr-h end */

/* sqv-content-thin start */
/* Slightly thinner content headers (CMS section/headings 700 -> 600).
   Archivo Black on .sec-head h2 is a single-weight font so this rule has no visible effect there. */
main h2,main h3,
.vip-section-title,.vip-feature-title,.step-headline,
.game-title{font-weight:600!important}
/* sqv-content-thin end */