:root {
  --bg: #1C1C1C;
  --surface: #262626;
  --text: #FFFFFF;
  --muted: #A0A0A0;
  --primary: #C5B358;
  --secondary: #D4AF37;
  --accent: #E6E6E6;
  --border: rgba(197, 179, 88, 0.2);
  --design-style: "claymorphism 3d soft friendly tactile";
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --bouncy: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-fluffy: 0 18px 40px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-squish: inset 0 2px 4px rgba(230, 230, 230, 0.07), inset 0 -12px 22px rgba(0, 0, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", "Quicksand", "Comfortaa", "Varela Round", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(1100px 520px at 85% -5%, rgba(212, 175, 55, 0.08), rgba(28, 28, 28, 0) 60%),
    radial-gradient(900px 480px at -10% 30%, rgba(197, 179, 88, 0.05), rgba(28, 28, 28, 0) 55%),
    linear-gradient(180deg, rgba(197, 179, 88, 0.045), rgba(28, 28, 28, 0) 38%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

img {
  max-width: 100%;
}

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

a:hover {
  color: var(--secondary);
}

h1, h2, h3, h4 {
  line-height: 1.25;
  letter-spacing: 0.2px;
  font-weight: 800;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.disclosure-banner {
  display: block;
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: 6px auto;
  padding: 6px 20px;
  border: 1px solid var(--muted);
  border-radius: 4px;
  font-size: 11px;
  text-align: center;
  color: var(--muted);
  background: none;
  line-height: 1.5;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-top {
  height: 50px;
  background: var(--surface);
  border-bottom: 1px solid rgba(197, 179, 88, 0.12);
}

.nav-top .nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.brand-lockup img {
  display: block;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text);
}

.brand-name em {
  font-style: normal;
  color: var(--primary);
}

.nav-bottom {
  height: 36px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-bottom .nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 5px 9px;
  border-radius: 16px;
  transition: all 0.18s var(--bouncy);
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(197, 179, 88, 0.1);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  margin-right: 16px;
  background: rgba(197, 179, 88, 0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.18s var(--bouncy);
}

.nav-burger:hover {
  transform: scale(1.06);
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--primary);
  border-radius: 2px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 150;
  display: none;
}

.nav-overlay.show {
  display: block;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 85vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: var(--shadow-fluffy);
  transform: translateX(105%);
  transition: transform 0.3s var(--bouncy);
  z-index: 160;
  padding: 70px 24px 24px;
  display: flex;
  flex-direction: column;
}

.nav-drawer.open {
  transform: none;
}

.nav-drawer a {
  display: block;
  padding: 12px 14px;
  margin-bottom: 6px;
  border-radius: var(--radius-md);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(197, 179, 88, 0.06);
  transition: all 0.18s var(--bouncy);
}

.nav-drawer a:hover {
  background: rgba(197, 179, 88, 0.16);
  color: var(--primary);
  transform: translateX(-3px);
}

.nav-drawer-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(197, 179, 88, 0.1);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.18s var(--bouncy);
}

.nav-drawer-close:hover {
  transform: rotate(90deg);
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  min-height: 300px;
  margin-top: 4px;
}

.hero-cell {
  position: relative;
  overflow: hidden;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-h {
  grid-area: 1 / 1;
  background: var(--surface);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.hero-h h1 {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--text);
}

.hero-h h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero-i1 {
  grid-area: 1 / 2;
  background: var(--bg);
  border-radius: 0 var(--radius-lg) 0 0;
  padding: 0;
}

.hero-i2 {
  grid-area: 2 / 1;
  background: var(--bg);
  border-radius: 0 0 0 var(--radius-lg);
  padding: 0;
}

.hero-s {
  grid-area: 2 / 2;
  background: var(--bg);
  border-radius: 0 0 var(--radius-lg) 0;
}

.hero-s p {
  color: var(--muted);
  font-size: 17px;
  max-width: 46ch;
}

.hero-i1 img,
.hero-i2 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28, 28, 28, 0.25), rgba(28, 28, 28, 0.55));
  pointer-events: none;
}

.hero-i1 img,
.hero-i2 img {
  z-index: 1;
}

.offers {
  position: relative;
  margin: 48px auto;
  max-width: 1200px;
  padding: 44px 20px 52px;
  background: var(--surface) url("/images/offers_bg/offers_bg.webp") center / cover no-repeat;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-fluffy), var(--shadow-squish);
  overflow: hidden;
}

.offers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.88), rgba(28, 28, 28, 0.82));
  pointer-events: none;
}

.offers > * {
  position: relative;
}

.offers h2 {
  text-align: center;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}

.offers .offers-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  max-width: 70ch;
  margin: 0 auto 30px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(165deg, rgba(212, 175, 55, 0.12), rgba(38, 38, 38, 0.92) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px 24px;
  box-shadow: var(--shadow-fluffy), var(--shadow-squish);
  transition: transform 0.2s var(--bouncy), box-shadow 0.2s var(--bouncy);
}

.offer-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.45), 0 6px 16px rgba(0, 0, 0, 0.3), var(--shadow-squish);
}

.offer-card:active {
  transform: scale(0.98);
}

.offer-logo {
  width: 150px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 16px;
  background: rgba(230, 230, 230, 0.92);
  border-radius: 20px;
  box-shadow: inset 0 2px 5px rgba(28, 28, 28, 0.18), inset 0 -6px 12px rgba(28, 28, 28, 0.08);
}

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

.offer-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.offer-bonus-group {
  margin-bottom: 14px;
}

.offer-bonus {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
}

.offer-terms {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.offer-desc {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}

.offer-cta {
  display: inline-block;
  margin-top: auto;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.4px;
  padding: 11px 26px;
  border-radius: 26px;
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.25), inset 0 2px 3px rgba(255, 255, 255, 0.35);
  transition: transform 0.18s var(--bouncy), box-shadow 0.18s var(--bouncy);
}

.offer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(212, 175, 55, 0.35), inset 0 2px 3px rgba(255, 255, 255, 0.35);
  color: var(--bg);
}

.offer-cta:active {
  transform: scale(0.96);
}

.info-section {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 46px;
  padding: 34px 32px;
  background: rgba(38, 38, 38, 0.55);
  border: 1px solid rgba(197, 179, 88, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-squish);
  overflow: hidden;
}

.info-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px 300px at var(--glow-pos, 100% 0%), rgba(212, 175, 55, 0.07), rgba(38, 38, 38, 0) 65%);
  pointer-events: none;
}

.info-section > * {
  position: relative;
}

.info-section h2 {
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--text);
  margin-bottom: 16px;
}

.info-section h2 .info-num {
  display: inline-block;
  min-width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  margin-right: 10px;
  font-size: 14px;
  color: var(--bg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.4), 0 6px 14px rgba(0, 0, 0, 0.3);
}

.info-section p {
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 75ch;
}

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

.info-1 {
  --glow-pos: 100% 0%;
}

.info-1 .info-1-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.info-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(28, 28, 28, 0.6);
  border: 1px solid rgba(197, 179, 88, 0.14);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-squish);
}

.info-steps .step-dot {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 10px;
  background: rgba(197, 179, 88, 0.16);
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
}

.info-steps p {
  margin: 0;
  font-size: 14px;
}

.info-2 {
  --glow-pos: 0% 100%;
  text-align: center;
}

.info-2 p {
  margin-left: auto;
  margin-right: auto;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 22px;
  background: rgba(197, 179, 88, 0.1);
  border: 1px solid rgba(197, 179, 88, 0.25);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-squish);
}

.info-3 {
  --glow-pos: 100% 100%;
}

.info-3 .info-3-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: center;
}

.info-3-img {
  width: 100%;
  max-width: 300px;
  max-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-fluffy);
}

.info-3-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.info-4 {
  --glow-pos: 0% 0%;
}

.pull-quote {
  position: relative;
  padding: 8px 0 8px 46px;
  margin: 0 0 16px;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.4;
  max-width: 40ch;
}

.pull-quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 56px;
  color: var(--primary);
  line-height: 1;
}

.info-5 {
  --glow-pos: 100% 50%;
}

.info-5-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.mini-card {
  background: rgba(28, 28, 28, 0.6);
  border: 1px solid rgba(197, 179, 88, 0.14);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  box-shadow: var(--shadow-squish);
  transition: transform 0.18s var(--bouncy);
}

.mini-card:hover {
  transform: translateY(-4px);
}

.mini-card h3 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 8px;
}

.mini-card p {
  font-size: 13px;
  margin: 0;
}

.info-6 {
  --glow-pos: 50% 0%;
}

.info-6 .info-6-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.check-card {
  background: rgba(28, 28, 28, 0.6);
  border: 1px solid rgba(197, 179, 88, 0.16);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-squish);
}

.check-card h3 {
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 12px;
}

.check-card ul {
  list-style: none;
}

.check-card li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px dashed rgba(197, 179, 88, 0.15);
}

.check-card li:last-child {
  border-bottom: none;
}

.check-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.info-7 {
  --glow-pos: 0% 50%;
}

.info-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  background: rgba(28, 28, 28, 0.55);
  border: 1px solid rgba(197, 179, 88, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-squish);
}

.info-row strong {
  color: var(--primary);
  font-size: 14px;
}

.info-row p {
  margin: 0;
  font-size: 14px;
}

.info-8 {
  --glow-pos: 100% 0%;
}

.info-8-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.info-9 {
  --glow-pos: 0% 100%;
}

.info-9 .info-9-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.info-9 p {
  margin-left: auto;
  margin-right: auto;
}

.info-divider {
  width: 90px;
  height: 4px;
  margin: 18px auto;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.info-10 {
  --glow-pos: 100% 100%;
  background: linear-gradient(150deg, rgba(212, 175, 55, 0.1), rgba(38, 38, 38, 0.9) 50%);
}

.info-cta {
  display: inline-block;
  margin-top: 14px;
  padding: 11px 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.25), inset 0 2px 3px rgba(255, 255, 255, 0.35);
  transition: transform 0.18s var(--bouncy);
}

.info-cta:hover {
  transform: translateY(-3px);
  color: var(--bg);
}

.site-footer {
  flex-shrink: 0;
  margin-top: 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 20px 28px;
}

.footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.footer-brand .brand-name {
  font-size: 18px;
}

.footer-nl {
  max-width: 860px;
  margin: 0 auto 24px;
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
}

.footer-nl p {
  margin-bottom: 12px;
}

.footer-nl p:last-child {
  margin-bottom: 0;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}

.footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 230, 230, 0.94);
  border-radius: 16px;
  padding: 8px 12px;
  box-shadow: var(--shadow-squish);
  transition: transform 0.18s var(--bouncy);
}

.footer-badge:hover {
  transform: translateY(-3px);
}

.footer-badge img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  object-position: center;
}

.footer-badge.badge-square img {
  height: 52px;
  width: 52px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  margin-bottom: 18px;
}

.footer-legal-links a {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.footer-legal-links a:hover {
  color: var(--primary);
}

.footer-company {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}

.footer-risks {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  max-width: 900px;
  margin: 0 auto;
}

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-box {
  width: min(460px, 100%);
  background: linear-gradient(165deg, rgba(212, 175, 55, 0.12), rgba(38, 38, 38, 0.97) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  text-align: center;
  box-shadow: var(--shadow-fluffy), var(--shadow-squish);
}

.age-box .age-mark {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.age-box h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.age-box p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.age-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-btn {
  padding: 12px 22px;
  border-radius: 26px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.18s var(--bouncy);
}

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

.age-btn:active {
  transform: scale(0.96);
}

.age-btn-confirm {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
}

.age-btn-decline {
  background: rgba(160, 160, 160, 0.12);
  color: var(--muted);
}

.age-denied {
  display: none;
  margin-top: 14px;
  font-size: 13px;
  color: var(--primary);
}

.age-denied.show {
  display: block;
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 400;
  display: none;
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(165deg, rgba(212, 175, 55, 0.1), rgba(38, 38, 38, 0.98) 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-fluffy), var(--shadow-squish);
}

.cookie-bar.active {
  display: block;
}

.cookie-bar p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-bar .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: 22px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.18s var(--bouncy);
}

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

.cookie-accept {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
}

.cookie-reject {
  background: rgba(160, 160, 160, 0.12);
  color: var(--muted);
}

.subpage-hero {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 40px 32px 34px;
  background: linear-gradient(150deg, rgba(212, 175, 55, 0.12), rgba(38, 38, 38, 0.9) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-squish);
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 260px at 100% 0%, rgba(212, 175, 55, 0.1), rgba(38, 38, 38, 0) 60%);
}

.subpage-hero h1 {
  position: relative;
  font-size: clamp(24px, 3.6vw, 36px);
  margin-bottom: 10px;
}

.subpage-hero p {
  position: relative;
  color: var(--muted);
  max-width: 70ch;
}

.subpage-body {
  max-width: 1200px;
  margin: 26px auto 40px;
  padding: 0 20px;
}

.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(38, 38, 38, 0.55);
  border: 1px solid rgba(197, 179, 88, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-squish);
  padding: 34px 36px;
}

.legal-wrap h1 {
  font-size: clamp(24px, 3.4vw, 32px);
  margin-bottom: 18px;
}

.legal-wrap h2 {
  font-size: 19px;
  color: var(--accent);
  margin: 26px 0 12px;
}

.legal-wrap p {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 13px;
  color: var(--muted);
}

.legal-wrap ul {
  list-style: none;
  margin: 0 0 14px;
}

.legal-wrap li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
}

.legal-wrap li::before {
  content: "\2022";
  position: absolute;
  left: 4px;
  color: var(--primary);
  font-weight: 800;
}

.contact-form {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: rgba(28, 28, 28, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  box-shadow: var(--shadow-squish);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(197, 179, 88, 0.4);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.field-error {
  display: none;
  font-size: 12px;
  color: var(--secondary);
  margin-top: -8px;
}

.field-error.show {
  display: block;
}

.contact-form button[type="submit"] {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
  border: none;
  font-weight: 800;
  font-size: 14px;
  font-family: inherit;
  padding: 12px 26px;
  border-radius: 26px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.25), inset 0 2px 3px rgba(255, 255, 255, 0.35);
  transition: transform 0.18s var(--bouncy);
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
}

.contact-success {
  display: none;
  margin-top: 22px;
  padding: 16px 20px;
  background: rgba(197, 179, 88, 0.12);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--accent);
  font-size: 15px;
}

.contact-success.show {
  display: block;
}

.subpage-hero-split {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: center;
}

.subpage-body-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
  align-items: start;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.go-page {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  min-height: 50vh;
}

.go-box {
  text-align: center;
  max-width: 560px;
}

.spinner {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 5px solid rgba(197, 179, 88, 0.2);
  border-top-color: var(--primary);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.go-ad {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--muted);
  border-radius: 4px;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
}

.go-box h1 {
  font-size: 22px;
  margin-bottom: 10px;
}

.go-box p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.go-box a {
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .hero-h {
    grid-area: auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .hero-i1 {
    grid-area: auto;
    border-radius: 0;
    min-height: 220px;
  }

  .hero-i2 {
    display: none;
  }

  .hero-s {
    grid-area: auto;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .info-1 .info-1-grid,
  .info-3 .info-3-grid,
  .info-6 .info-6-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero-split,
  .subpage-body-grid {
    grid-template-columns: 1fr;
  }

  .stat-band {
    grid-template-columns: 1fr;
  }

  .info-3-img {
    order: -1;
  }

  .info-5-cards {
    grid-template-columns: 1fr;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .info-8-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-bottom {
    display: none;
  }

  .nav-top {
    background: var(--surface);
  }

  .nav-top .nav-inner {
    justify-content: space-between;
  }

  .nav-burger {
    display: flex;
  }

  .brand-lockup img {
    height: 30px !important;
    width: auto !important;
  }

  .brand-name {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 640px) {
  .offers {
    margin: 30px 12px;
    padding: 30px 16px 36px;
  }

  .info-section {
    margin: 0 12px 34px;
    padding: 26px 20px;
  }

  .legal-wrap {
    margin: 0 12px;
    padding: 26px 22px;
  }

  .offer-logo {
    width: 130px;
    height: 84px;
  }

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

  .subpage-hero {
    margin: 20px 12px 0;
    padding: 30px 22px;
  }

  .footer-logos {
    gap: 10px;
  }

  .footer-badge img {
    height: 34px;
  }

  .cookie-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}
.subpage-hero-bet {
  position: relative;
  background-image: linear-gradient(100deg, rgba(212, 175, 55, 0.12), rgba(28, 28, 28, 0.9) 45%), linear-gradient(160deg, rgba(197, 179, 88, 0.1), rgba(28, 28, 28, 0.95));
}

.subpage-hero-roulette {
  position: relative;
  background-image: linear-gradient(20deg, rgba(28, 28, 28, 0.96) 40%, rgba(28, 28, 28, 0.5)), url("/images/decorative/decor_6.webp");
  background-size: cover;
  background-position: center right;
}

.rail-sticky {
  position: sticky;
  top: 100px;
}

.img-push {
  margin-top: 16px;
}

.h-push {
  margin-top: 18px;
}

.p-sm {
  font-size: 13px;
  color: var(--muted);
}

.lic-rail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pq-push {
  margin: 20px 0;
}

.subpage-cta {
  margin: 28px auto 10px;
  max-width: 1200px;
  padding: 34px 30px 30px;
  text-align: center;
  background: radial-gradient(120% 140% at 12% 0%, rgba(212, 175, 55, 0.14), transparent 45%), radial-gradient(140% 160% at 90% 100%, rgba(197, 179, 88, 0.1), transparent 50%), var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.subpage-cta h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

.subpage-cta > p {
  margin: 0 auto 18px;
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.subpage-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.subpage-cta-actions .offer-cta {
  margin-top: 0;
}

.subpage-cta-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
}
