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

:root {
  --bg: #120609;
  --surface: #1F0A0E;
  --text: #FFF1F2;
  --muted: #FDA4AF;
  --primary: #BE123C;
  --secondary: #FACC15;
  --accent: #22C55E;
  --border: rgba(255, 241, 242, 0.14);
  --sidebar-w: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

h1,
h2,
h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  line-height: 1.25;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.disclosure-banner {
  width: 100%;
  background: #FFF1F2;
  color: #7F1D1D;
  font-size: 12px;
  text-align: center;
  padding: 8px 16px 14px;
  line-height: 1.45;
  position: relative;
}

.disclosure-banner p {
  max-width: 960px;
  margin: 0 auto;
}

.disclosure-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 14px;
  display: block;
  fill: var(--bg);
}

.sidebar-nav {
  display: none;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.mobile-header .logo-link img {
  height: 32px;
  width: auto;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

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

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

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

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(18, 6, 9, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-overlay a {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  color: var(--text);
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.mobile-nav-overlay a:hover {
  color: var(--secondary);
}

.page-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.page-shell main {
  flex: 1;
}

.hero {
  position: relative;
  padding: 32px 20px;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: -12px;
  background: url('/images/decorative/decor_1.webp') center/cover no-repeat;
  filter: blur(6px) brightness(0.45);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #fff;
  margin-bottom: 14px;
}

.hero p {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

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

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 36px;
  color: var(--text);
}

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

.offers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 6, 9, 0.88);
}

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

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

.offer-card {
  background: #fff;
  color: #1e293b;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 6px 8px 16px rgba(0, 0, 0, 0.35);
  transform: rotate(-1deg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:nth-child(even) {
  transform: rotate(1.5deg);
}

.offer-card:nth-child(3n) {
  transform: rotate(-0.5deg);
}

.offer-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 8px 12px 20px rgba(0, 0, 0, 0.4);
}

.offer-card-logo {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.offer-bonus {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 600;
  color: #0f172a;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.offer-terms {
  font-size: 0.7rem;
  color: #64748b;
  display: block;
  margin-top: 2px;
}

.offer-desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

.offer-cta {
  display: inline-block;
  margin-top: auto;
  padding: 10px 20px;
  background: #14B8A6;
  color: #020617;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.2s;
}

.offer-cta:hover {
  background: #0d9488;
  color: #020617;
  transform: translateY(-1px);
}

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

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

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

.info-1-grid h2 {
  font-size: 1.65rem;
  margin-bottom: 16px;
  color: var(--secondary);
}

.info-1-grid p {
  color: var(--muted);
}

.info-1-visual {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 500px;
  margin: 0 auto;
}

.info-1-visual img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.info-2-band {
  background: linear-gradient(135deg, rgba(190, 18, 60, 0.15), rgba(31, 10, 14, 0.9));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.info-2-band h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  flex-shrink: 0;
  width: 200px;
  color: var(--text);
}

.info-2-band p {
  color: var(--muted);
  flex: 1;
}

.info-2-thumb {
  flex-shrink: 0;
  max-width: 180px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.info-3-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  border-left: 4px solid var(--primary);
  border-right: 4px solid var(--primary);
}

.info-3-quote h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.info-3-quote p {
  font-size: 1.05rem;
  color: var(--muted);
  font-style: italic;
}

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

.info-4-steps {
  list-style: none;
  counter-reset: step;
}

.info-4-steps li {
  counter-increment: step;
  padding: 12px 0 12px 48px;
  position: relative;
  color: var(--muted);
  border-bottom: 1px dashed var(--border);
}

.info-4-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 10px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.info-4-content h2 {
  font-size: 1.55rem;
  margin-bottom: 14px;
}

.info-4-content p {
  color: var(--muted);
}

.info-4-img-wrap {
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.info-5-card {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

.info-5-card h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--secondary);
}

.info-5-card p {
  color: var(--muted);
}

.info-5-media {
  flex-shrink: 0;
  max-width: 280px;
  max-height: 320px;
  border-radius: 12px;
  overflow: hidden;
}

.info-6-columns {
  columns: 2;
  column-gap: 48px;
}

.info-6-columns h2 {
  column-span: all;
  font-size: 1.55rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text);
}

.info-6-columns p {
  color: var(--muted);
  margin-bottom: 16px;
  break-inside: avoid;
}

.info-6-float {
  float: right;
  max-width: 220px;
  margin: 0 0 16px 24px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.info-7-timeline {
  position: relative;
  padding-left: 32px;
  max-width: 720px;
  margin: 0 auto;
}

.info-7-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.info-7-timeline h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-left: 16px;
}

.info-7-timeline p {
  color: var(--muted);
  padding: 16px 0 16px 24px;
  position: relative;
}

.info-7-timeline p::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 22px;
  width: 12px;
  height: 12px;
  background: var(--secondary);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

.info-7-aside {
  max-width: 500px;
  margin: 24px auto 0;
  border-radius: 10px;
  overflow: hidden;
}

.info-8-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-8-checklist h2 {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.info-8-checklist ul {
  list-style: none;
}

.info-8-checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.info-8-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

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

.info-9-panel {
  background: linear-gradient(to bottom, var(--surface), var(--bg));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 860px;
  margin: 0 auto;
}

.info-9-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 12px;
  display: inline-block;
}

.info-9-panel p {
  color: var(--muted);
}

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

.info-10-mosaic h2 {
  font-size: 1.55rem;
  margin-bottom: 14px;
  color: var(--accent);
}

.info-10-mosaic p {
  color: var(--muted);
}

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

.info-10-tags span {
  background: rgba(190, 18, 60, 0.25);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--muted);
}

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

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

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

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

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

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-badges img {
  height: 44px;
  width: auto;
  opacity: 0.9;
}

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

.footer-disclosure {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-notice {
  font-size: 0.78rem;
  color: rgba(253, 164, 175, 0.7);
  line-height: 1.5;
}

.footer-notice p {
  margin-bottom: 6px;
}

.age-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(18, 6, 9, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-modal.visible {
  display: flex;
}

.age-modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 420px;
  text-align: center;
}

.age-modal-box h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.age-modal-box p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--text);
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #9f1239;
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
}

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

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

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

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

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

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

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-page .legal-updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
}

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

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

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

.contact-form {
  max-width: 560px;
  margin-top: 32px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

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

.email-error {
  display: none;
  color: #f87171;
  font-size: 0.85rem;
  margin-top: -12px;
  margin-bottom: 12px;
}

.contact-success {
  display: none;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
  color: var(--text);
  margin-top: 24px;
}

.error-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px;
}

.error-page h1 {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 12px;
}

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

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

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

.ad-label {
  display: inline-block;
  background: var(--primary);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

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

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

.redirect-box > p {
  color: var(--text);
  margin-bottom: 20px;
}

.redirect-compliance {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.redirect-compliance p {
  margin-bottom: 8px;
}

@media (min-width: 1024px) {
  .mobile-header {
    display: none;
  }

  .sidebar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-w);
    height: 100vh;
    background: var(--surface);
    border-right: 1px solid var(--border);
    z-index: 250;
    padding: 16px 0;
    gap: 4px;
  }

  .sidebar-logo {
    margin-bottom: 20px;
    padding: 8px;
  }

  .sidebar-logo img {
    width: 44px;
    height: auto;
  }

  .sidebar-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
  }

  .sidebar-link:hover {
    background: rgba(190, 18, 60, 0.2);
    color: var(--text);
  }

  .sidebar-link::after {
    content: attr(data-tip);
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg);
    color: var(--text);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    border: 1px solid var(--border);
    z-index: 300;
  }

  .sidebar-link:hover::after {
    opacity: 1;
  }

  .page-shell {
    margin-left: var(--sidebar-w);
  }

  .hero {
    padding: 60px 20px;
  }
}

@media (max-width: 1023px) {
  .info-1-grid,
  .info-4-split,
  .info-5-card,
  .info-8-checklist,
  .info-10-mosaic {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .info-2-band h2 {
    width: auto;
  }

  .info-6-columns {
    columns: 1;
  }

  .info-6-float {
    float: none;
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .info-5-card {
    flex-direction: column;
  }

  .info-5-media {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .offer-card:nth-child(even),
  .offer-card:nth-child(3n) {
    transform: none;
  }

  .offer-card-logo {
    width: 120px;
    height: 60px;
  }

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

  .info-1-visual,
  .info-2-thumb,
  .info-4-img-wrap,
  .info-5-media,
  .info-6-float,
  .info-7-aside {
    max-width: 100%;
    overflow: hidden;
  }

  .info-1-visual img,
  .info-2-thumb img,
  .info-4-img-wrap img,
  .info-5-media img,
  .info-6-float img,
  .info-7-aside img {
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
  }

  .hero {
    overflow: hidden;
  }

  .section-wrap {
    overflow-x: hidden;
  }
}
