:root {
  --bg: #FAFAF9;
  --surface: #FFFFFF;
  --text: #1C1917;
  --muted: #78716C;
  --primary: #FB7185;
  --secondary: #60A5FA;
  --accent: #34D399;
  --border: rgba(28, 25, 23, 0.12);
  --dark: #1C1917;
  --serif: Georgia, "Times New Roman", Cambria, "Noto Serif", serif;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 17px;
  --fs-lead: 20px;
  --fs-h3: 23px;
  --fs-h2: 29px;
  --fs-h1: 41px;
  --wrap: 1200px;
  --read: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-size: var(--fs-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 1em; }

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

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

.disclosure {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.disclosure-icon {
  flex: 0 0 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.disclosure-text {
  flex: 1;
  padding: 8px 16px;
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--text);
  text-align: left;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 24px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 30px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  color: #E7E5E4;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width 0.35s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #E7E5E4;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 70;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 76%;
  max-width: 320px;
  background: var(--dark);
  transform: translateX(100%);
  transition: transform 0.32s ease;
  z-index: 80;
  padding: 80px 0 24px;
}

.drawer.open {
  transform: translateX(0);
}

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

.drawer a {
  display: block;
  color: #E7E5E4;
  font-size: var(--fs-base);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-left: 3px solid transparent;
}

.drawer a.active {
  border-left-color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: transparent;
  border: 0;
  color: #E7E5E4;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

main {
  display: block;
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
}

.hero {
  position: relative;
  background: var(--dark);
  color: #FAFAF9;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  overflow: hidden;
}

.hero-stripe {
  position: absolute;
  top: 50%;
  left: -20%;
  width: 140%;
  height: 60px;
  background: var(--accent);
  opacity: 0.2;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: center;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
}

.hero-content h1 {
  color: #FAFAF9;
  margin-bottom: 0.4em;
}

.hero-content p {
  color: #D6D3D1;
  font-size: var(--fs-lead);
  margin: 0;
}

.section {
  padding: 64px 0;
}

.section-narrow {
  max-width: var(--read);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}

.offers {
  background: var(--dark);
  background-image: linear-gradient(135deg, rgba(52, 211, 153, 0.10), rgba(96, 165, 250, 0.08)), linear-gradient(var(--dark), var(--dark));
  color: #FAFAF9;
  padding: 64px 0;
}

.offers h2 {
  color: #FAFAF9;
  text-align: center;
}

.offers .eyebrow {
  color: #A8A29E;
  text-align: center;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.offer-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text);
}

.offer-logo {
  width: 200px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
}

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

.offer-bonus {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.offer-terms {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin: 4px 0 0;
}

.offer-desc {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin: 12px 0 0;
  line-height: 1.5;
}

.offer-cta {
  margin-top: auto;
  padding-top: 18px;
}

.btn {
  display: inline-block;
  font-family: var(--serif);
  font-size: var(--fs-sm);
  letter-spacing: 0.03em;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  transition: opacity 0.2s ease;
}

.btn:hover { opacity: 0.88; }

.btn-outline {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.info {
  border-top: 1px solid var(--border);
}

.info h2 {
  margin-bottom: 0.4em;
}

.info p { color: var(--text); }

.decor {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.decor-wrap {
  max-width: 100%;
  overflow: hidden;
}

.info-1 .section-narrow { text-align: center; }

.info-2 .grid2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-3 {
  background: var(--surface);
}

.info-3 .band {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.info-3 .band-text {
  position: relative;
  background: linear-gradient(transparent, rgba(28, 25, 23, 0.85));
  color: #FAFAF9;
  padding: 40px 28px 28px;
  width: 100%;
}

.info-3 .band-text h2 { color: #FAFAF9; }
.info-3 .band-text p { color: #E7E5E4; margin: 0; }

.info-4 ol {
  counter-reset: step;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.info-4 li {
  counter-increment: step;
  position: relative;
  padding-left: 56px;
  min-height: 40px;
}

.info-4 li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.info-5 .grid2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.info-6 { background: var(--surface); }

.info-6 blockquote {
  margin: 0;
  border-left: 4px solid var(--primary);
  padding: 8px 0 8px 28px;
  font-size: var(--fs-lead);
  font-style: italic;
  color: var(--text);
}

.info-6 .src {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.info-7 .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.info-7 .stat {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  background: var(--surface);
}

.info-7 .stat .num {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.info-8 .section-narrow { text-align: center; }

.info-8 .badge {
  margin: 0 auto 18px;
}

.info-9 .cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 24px;
}

.info-9 .col {
  padding: 26px;
}

.info-9 .col + .col {
  border-left: 1px solid var(--border);
  background: var(--surface);
}

.info-9 .col h3 { color: var(--text); }

.info-10 .aside {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
}

.info-10 .note {
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 20px;
  font-size: var(--fs-sm);
  color: var(--muted);
  background: var(--surface);
}

.site-footer {
  background: var(--dark);
  color: #D6D3D1;
  padding: 48px 0 32px;
  border-top: 3px solid var(--accent);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

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

.footer-brand p {
  font-size: var(--fs-sm);
  color: #A8A29E;
  max-width: 320px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.footer-links a {
  color: #E7E5E4;
  font-size: var(--fs-sm);
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badges img {
  height: 38px;
  width: auto;
  opacity: 0.92;
}

.footer-disclaimer {
  margin-top: 22px;
  font-size: 11px;
  line-height: 1.6;
  color: #8A847E;
}

.footer-copy {
  margin-top: 18px;
  font-size: var(--fs-xs);
  color: #78716C;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 18, 16, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.show { display: flex; }

.age-card {
  background: var(--surface);
  border-radius: 12px;
  max-width: 460px;
  width: 100%;
  padding: 36px 32px;
  text-align: center;
}

.age-card h2 { margin-top: 0; }

.age-card p { color: var(--muted); font-size: var(--fs-sm); }

.age-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
}

.age-deny-msg {
  display: none;
  margin-top: 18px;
  color: var(--primary);
  font-size: var(--fs-sm);
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  display: none;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 12px 40px rgba(28, 25, 23, 0.18);
}

.cookie-bar.show { display: flex; }

.cookie-bar p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text);
  max-width: 720px;
}

.cookie-bar a { color: var(--secondary); text-decoration: underline; }

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

.page-head {
  background: var(--dark);
  color: #FAFAF9;
  padding: 56px 24px;
  text-align: center;
}

.page-head h1 { color: #FAFAF9; margin: 0; }

.page-head p { color: #D6D3D1; margin: 10px 0 0; }

.prose {
  max-width: var(--read);
  margin: 0 auto;
  padding: 56px 24px;
}

.prose h2 { margin-top: 1.6em; }

.prose ul { padding-left: 22px; }

.prose li { margin-bottom: 8px; }

.prose a { color: var(--secondary); text-decoration: underline; }

.contact-form {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.field label {
  display: block;
  font-size: var(--fs-sm);
  margin-bottom: 6px;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: var(--fs-base);
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
}

.field textarea { min-height: 150px; resize: vertical; }

.form-error {
  display: none;
  margin-top: 6px;
  color: var(--primary);
  font-size: var(--fs-sm);
}

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

.form-success {
  display: none;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 22px;
  color: var(--text);
}

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

@media (max-width: 860px) {
  :root {
    --fs-h1: 32px;
    --fs-h2: 25px;
    --fs-base: 16px;
  }
  .nav-links { display: none; }
  .burger { display: flex; }
  .offer-logo { width: 168px; height: 84px; }
  .offer-logo img { object-fit: contain; object-position: center; }
  .hero { padding: 32px 20px; min-height: 240px; }
  .hero-stripe { height: 38px; }
  .offers-grid { grid-template-columns: 1fr; }
  .info-2 .grid2,
  .info-5 .grid2,
  .info-10 .aside { grid-template-columns: 1fr; gap: 24px; }
  .info-7 .stats { grid-template-columns: 1fr; }
  .info-9 .cols { grid-template-columns: 1fr; }
  .info-9 .col + .col { border-left: 0; border-top: 1px solid var(--border); }
  .section { padding: 44px 0; }
}
