:root {
  --bg: #120609;
  --surface: #1F0A0E;
  --text: #FFF1F2;
  --muted: #FDA4AF;
  --primary: #BE123C;
  --secondary: #FACC15;
  --accent: #22C55E;
  --border: rgba(255, 241, 242, 0.14);
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-w: 1200px;
  --nav-h: 56px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.age-locked,
body.nav-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

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

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

a:hover {
  opacity: 0.85;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.disclosure-callout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 16px 10px 20px;
  background: #FFFBEB;
  border-left: 4px solid #f59e0b;
  font-size: 12px;
  line-height: 1.5;
  color: #44403c;
  text-align: left;
}

.disclosure-callout a {
  color: #b45309;
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-left: none;
  border-right: none;
  height: var(--nav-h);
}

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

.brand-link img {
  height: 32px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-desktop a {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.nav-desktop a:hover {
  opacity: 1;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 8px;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

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

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

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

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

.nav-overlay.is-open {
  display: block;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 100%);
  height: 100%;
  z-index: 200;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  padding: 64px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

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

.nav-drawer__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.nav-drawer ul {
  list-style: none;
}

.nav-drawer li {
  margin: 12px 0;
}

.nav-drawer a {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  display: block;
  padding: 8px 0;
  opacity: 0.85;
}

.hero {
  background: var(--bg);
  padding: 40px 24px;
  text-align: center;
  border-bottom: 8px solid;
  border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)) 1;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(190, 18, 60, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(34, 197, 94, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.hero-decor {
  margin: 24px auto 0;
  max-width: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(190, 18, 60, 0.3);
}

.hero-decor img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.offers-section {
  background-image: url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
  padding: 56px 24px;
  position: relative;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18, 6, 9, 0.88) 0%, rgba(31, 10, 14, 0.92) 100%);
  pointer-events: none;
}

.offers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offers-header {
  text-align: center;
  margin-bottom: 36px;
}

.offers-header h2 {
  font-size: 1.6rem;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.offers-header p {
  color: var(--muted);
  font-size: 14px;
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.offer-card {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.offer-card__logo-wrap {
  background: #fff;
  width: 280px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
}

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

.offer-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-card__name {
  font-size: 1.15rem;
  color: #ffd700;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-card__bonus {
  color: #e0e0e0;
  font-size: 13px;
  line-height: 1.45;
  word-break: break-word;
}

.offer-card__terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.offer-card__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.offer-cta {
  margin-top: auto;
  padding: 12px 20px;
  background: linear-gradient(135deg, #C9A227, #D4AF37);
  color: #1A1A1F;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}

.offer-cta:hover {
  opacity: 0.9;
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.5);
}

.info-section {
  padding: 56px 24px;
  border-top: 1px solid var(--border);
  position: relative;
}

.info-section:nth-child(odd) {
  background: var(--surface);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.info-section h2 {
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  margin-bottom: 16px;
  background: linear-gradient(120deg, var(--text), var(--muted));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.info-text {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 680px;
}

.decor-frame {
  max-width: 500px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.decor-frame img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  width: 100%;
}

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

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

.info-2-card {
  padding: 20px;
  background: linear-gradient(145deg, rgba(190, 18, 60, 0.15), rgba(31, 10, 14, 0.8));
  border: 1px solid var(--border);
  border-radius: 8px;
}

.info-2-card strong {
  display: block;
  color: var(--secondary);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.info-2-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

.info-3-band {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.info-3-band .decor-frame {
  flex-shrink: 0;
  max-width: 280px;
}

.info-4-quote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 20px 0;
  background: linear-gradient(90deg, rgba(190, 18, 60, 0.12), transparent);
  font-style: italic;
  color: var(--muted);
}

.info-5-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.info-5-panel {
  padding: 24px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.08), rgba(31, 10, 14, 0.6));
  border: 1px solid var(--border);
}

.info-5-panel h3 {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.info-5-panel p {
  font-size: 0.9rem;
  color: var(--muted);
}

.info-6-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.info-6-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.info-6-step-num {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent);
  min-width: 32px;
}

.info-6-step p {
  font-size: 0.9rem;
  color: var(--muted);
}

.info-7-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.info-7-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.info-7-tag {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #9f1239);
  color: var(--text);
}

.info-8-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.info-8-col {
  padding: 24px;
  border-radius: 10px;
}

.info-8-col--low {
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.12), rgba(31, 10, 14, 0.5));
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.info-8-col--high {
  background: linear-gradient(160deg, rgba(190, 18, 60, 0.15), rgba(31, 10, 14, 0.5));
  border: 1px solid rgba(190, 18, 60, 0.25);
}

.info-8-col h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.info-8-col--low h3 {
  color: var(--accent);
}

.info-8-col--high h3 {
  color: var(--primary);
}

.info-8-col p {
  font-size: 0.9rem;
  color: var(--muted);
}

.info-9-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.info-9-tier {
  text-align: center;
  padding: 24px 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.1), rgba(18, 6, 9, 0.8));
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-9-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(250, 204, 21, 0.15);
}

.info-9-tier-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.info-9-tier h3 {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.info-9-tier p {
  font-size: 0.8rem;
  color: var(--muted);
}

.info-10-banner {
  margin-top: 24px;
  padding: 28px;
  border-radius: 12px;
  background-image: linear-gradient(135deg, rgba(190, 18, 60, 0.2), rgba(34, 197, 94, 0.1));
  border: 1px solid var(--border);
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.info-10-banner .decor-frame {
  max-width: 300px;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  max-width: 320px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--muted);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.footer-badges img {
  height: 48px;
  width: auto;
}

.footer-no-disclaimer {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(253, 164, 175, 0.75);
  margin-bottom: 20px;
}

.footer-no-disclaimer p {
  margin-bottom: 10px;
}

.footer-no-disclaimer a {
  color: var(--muted);
  text-decoration: underline;
}

.footer-bottom {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.7;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(18, 6, 9, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.is-hidden {
  display: none;
}

.modal {
  max-width: 440px;
  width: 100%;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.modal__title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modal__text {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), #9f1239);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(190, 18, 60, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-inner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
}

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

.legal-page {
  padding: 48px 24px 64px;
}

.legal-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.legal-card h1 {
  font-size: 1.75rem;
  margin-bottom: 24px;
  color: var(--text);
}

.legal-card h2 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--secondary);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.legal-card ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

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

.contact-form.is-hidden {
  display: none;
}

.contact-form label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
}

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

.field-error {
  font-size: 13px;
  color: var(--primary);
  display: none;
}

.field-error.is-visible {
  display: block;
}

.form-success {
  display: none;
  padding: 24px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(31, 10, 14, 0.8));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

.redirect-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
}

.redirect-card {
  max-width: 480px;
  text-align: center;
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.ad-flag {
  display: inline-block;
  font-weight: 800;
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.redirect-card h1 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.redirect-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.redirect-meta {
  font-size: 0.85rem;
}

.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.page-404 h1 {
  font-size: 4rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.page-404 p {
  color: var(--muted);
  margin-bottom: 24px;
}

.page-404 a {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary), #9f1239);
  color: var(--text);
  border-radius: 6px;
  font-weight: 700;
}

.subpage-header {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}

.subpage-header .brand-link img {
  height: 32px;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .nav-burger {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    background: var(--surface);
  }

  .info-1-grid,
  .info-5-grid,
  .info-7-split,
  .info-8-compare,
  .info-9-tiers,
  .info-2-cards {
    grid-template-columns: 1fr;
  }

  .info-3-band {
    flex-direction: column;
  }

  .legal-card {
    padding: 24px;
  }

  .offer-card__logo-wrap {
    width: 240px;
    height: 100px;
  }

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

@media (max-width: 375px) {
  .hero-decor,
  .decor-frame {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-decor img,
  .decor-frame img {
    max-width: 100%;
    max-height: 220px;
    width: 100%;
    height: auto;
  }

  .info-3-band .decor-frame {
    max-width: 100%;
  }

  .offer-card__bonus {
    font-size: 12px;
  }
}
