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

:root {
  --bg: #FAF5FF;
  --surface: #FFFFFF;
  --text: #2E1065;
  --muted: #7C3AED;
  --primary: #8B5CF6;
  --secondary: #DDD6FE;
  --accent: #C084FC;
  --border: rgba(46, 16, 101, 0.08);
  --nav-bg: #0a0a0a;
  --white: #ffffff;
  --black: #000000;
  --warning: #f59e0b;
  --font-stack: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

main {
  flex: 1 0 auto;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.disclosure-banner {
  background: #fffef9;
  border-left: 4px solid var(--warning);
  padding: 10px 16px 10px 20px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  color: var(--text);
}

.disclosure-banner a {
  color: var(--primary);
  word-break: break-all;
}

.ticker-wrap {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 3px solid var(--primary);
}

.ticker-track {
  display: inline-block;
  animation: ticker 28s linear infinite;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
}

.ticker-track span {
  padding: 0 40px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.nav-burger {
  display: none;
  background: none;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 12px;
  cursor: pointer;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--nav-bg);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 14px;
  padding: 6px 14px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/images/decorative/decor_1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  text-shadow: 3px 3px 0 var(--black), -1px -1px 0 var(--primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--white);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

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

.offers-section {
  padding: 64px 0;
  background-image: url('/images/offers_bg/offers_bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

.offers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 245, 255, 0.88);
}

.offers-section .section-wrap {
  position: relative;
  z-index: 1;
}

.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--text);
}

.section-heading-outline {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.offer-card {
  background: var(--surface);
  border: 3px solid var(--black);
  box-shadow: 6px 6px 0 var(--primary);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.15s;
}

.offer-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--accent);
}

.offer-logo-wrap {
  width: 220px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f3f0ff;
  border: 2px dashed var(--border);
  padding: 12px;
}

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

.offer-name {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.offer-bonus {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.45;
}

.offer-terms-note {
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-desc {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.5;
}

.offer-cta {
  display: inline-block;
  margin-top: auto;
  padding: 12px 20px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
}

.offer-cta:hover {
  background: var(--primary);
  color: var(--white);
}

.info-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

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

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

.layout-split-reverse {
  direction: rtl;
}

.layout-split-reverse > * {
  direction: ltr;
}

.tape-img {
  position: relative;
  max-width: 500px;
  max-height: 320px;
  margin: 0 auto;
}

.tape-img img {
  border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--secondary);
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  width: 100%;
}

.tape-img::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 20%;
  width: 80px;
  height: 24px;
  background: rgba(255, 255, 240, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.15);
  transform: rotate(-3deg);
  z-index: 2;
}

.vertical-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.1em;
  line-height: 1;
}

.layout-band {
  background: var(--black);
  color: var(--white);
  padding: 48px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  border: 4px solid var(--primary);
}

.layout-band p {
  font-size: 1rem;
  line-height: 1.7;
}

.brutal-box {
  border: 4px solid var(--black);
  padding: 32px;
  background: var(--secondary);
  position: relative;
}

.brutal-box::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--primary);
  z-index: -1;
}

.brutal-box h2 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  -webkit-text-stroke: 1px var(--text);
}

.layout-glitch-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.glitch-img {
  overflow: hidden;
  max-width: 500px;
  max-height: 320px;
}

.glitch-img img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  width: 100%;
  border: 3px solid var(--black);
  transition: filter 0.2s, transform 0.2s;
}

.glitch-img:hover img {
  filter: contrast(1.4) hue-rotate(20deg);
  transform: skewX(-2deg) scale(1.02);
}

.layout-quote {
  border-left: 6px solid var(--primary);
  padding: 24px 32px;
  background: var(--surface);
  box-shadow: 8px 8px 0 var(--secondary);
}

.layout-quote h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.layout-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.layout-grid-2 .grid-cell {
  padding: 24px;
  border: 2px solid var(--text);
  background: var(--bg);
}

.layout-grid-2 h2 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--primary);
}

.layout-marquee-head {
  margin-bottom: 24px;
}

.layout-marquee-head .mini-ticker {
  background: var(--primary);
  color: var(--white);
  padding: 6px 0;
  overflow: hidden;
  margin-bottom: 16px;
}

.layout-marquee-head .mini-ticker-inner {
  display: inline-block;
  animation: ticker 18s linear infinite;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.layout-outline-center {
  text-align: center;
}

.layout-outline-center h2 {
  font-size: 2rem;
  font-weight: 900;
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.layout-outline-center p {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.layout-bg-box {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  background-image: url('/images/decorative/decor_4.webp');
  background-size: cover;
  background-position: center;
  border: 4px solid var(--black);
}

.layout-bg-box-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46, 16, 101, 0.92), rgba(46, 16, 101, 0.4));
}

.layout-bg-box-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.layout-bg-box-content h2 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.layout-numbered {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.layout-numbered .num {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  -webkit-text-stroke: 2px var(--black);
  flex-shrink: 0;
}

.layout-numbered h2 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.info-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

.site-footer {
  background: var(--nav-bg);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 32px;
}

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

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  height: 40px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  transition: color 0.2s;
}

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

.footer-orgs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
}

.footer-orgs a {
  display: block;
}

.footer-orgs img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-orgs a:hover img {
  opacity: 1;
}

.footer-disclosure {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 900px;
}

.footer-disclosure a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-copy {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.overlay.is-visible {
  display: flex;
}

.age-modal {
  background: var(--surface);
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--primary);
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.age-modal h2 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.age-modal p {
  margin-bottom: 24px;
  font-size: 0.95rem;
}

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

.btn-primary {
  padding: 12px 28px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--black);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

.btn-secondary {
  padding: 12px 28px;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 4px solid var(--primary);
  padding: 20px 24px;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.is-visible {
  display: block;
}

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

.cookie-inner p {
  font-size: 13px;
  flex: 1;
  min-width: 240px;
}

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

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

.legal-content {
  max-width: 800px;
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 4px solid var(--primary);
  padding-bottom: 12px;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 28px 0 12px;
  text-transform: uppercase;
}

.legal-content p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.legal-content ul {
  margin: 0 0 14px 20px;
}

.legal-content li {
  margin-bottom: 6px;
}

.contact-form {
  margin-top: 32px;
  padding: 32px;
  border: 3px solid var(--black);
  background: var(--secondary);
}

.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--text);
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 16px;
  background: var(--surface);
}

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

.contact-form .input-error {
  border-color: #dc2626;
}

.form-error {
  color: #dc2626;
  font-size: 13px;
  margin-top: -12px;
  margin-bottom: 12px;
}

.contact-success {
  display: none;
  padding: 32px;
  border: 3px solid var(--primary);
  background: var(--surface);
  text-align: center;
  margin-top: 32px;
}

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

.contact-success h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

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

.page-404 h1 {
  font-size: 6rem;
  font-weight: 900;
  -webkit-text-stroke: 3px var(--text);
  color: transparent;
  line-height: 1;
}

.page-404 p {
  margin: 16px 0 24px;
  font-size: 1.1rem;
}

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

.redirect-box {
  max-width: 480px;
  text-align: center;
  border: 4px solid var(--black);
  padding: 40px 32px;
  background: var(--surface);
  box-shadow: 6px 6px 0 var(--primary);
}

.redirect-box h1 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

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

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

.ad-label {
  display: inline-block;
  background: var(--warning);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.redirect-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.5;
}

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

  .nav-burger {
    display: block;
  }

  .layout-split,
  .layout-glitch-wrap,
  .layout-grid-2 {
    grid-template-columns: 1fr;
  }

  .layout-split-reverse {
    direction: ltr;
  }

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

  .vertical-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .hero {
    min-height: 250px;
    background-attachment: scroll;
  }
}

@media (max-width: 600px) {
  .layout-numbered {
    flex-direction: column;
  }

  .layout-numbered .num {
    font-size: 3rem;
  }

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

  .tape-img,
  .glitch-img {
    max-width: 100%;
  }

  .tape-img img,
  .glitch-img img {
    max-width: 100%;
  }

  .offer-logo-wrap {
    width: 220px;
    height: 80px;
  }

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

@media (max-width: 375px) {
  .section-wrap {
    overflow-x: hidden;
  }

  .tape-img,
  .glitch-img,
  .layout-bg-box {
    max-width: 100%;
    overflow: hidden;
  }

  .tape-img img,
  .glitch-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .layout-bg-box {
    min-height: 220px;
    background-size: cover;
    background-position: center;
  }
}
