:root {
  --bg-deep: #0c0709;
  --bg-mid: #1a0e12;
  --bg-panel: rgba(58, 24, 32, 0.55);
  --accent: #f59e0b;
  --accent-hover: #fbbf24;
  --accent-soft: rgba(245, 158, 11, 0.16);
  --crimson: #e11d48;
  --crimson-soft: rgba(225, 29, 72, 0.12);
  --gold: #fcd34d;
  --gold-muted: #b45309;
  --text: #fdf4f4;
  --muted: #c9a8a8;
  --border: rgba(244, 202, 153, 0.2);
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1000px 700px at 8% -8%, rgba(225, 29, 72, 0.14), transparent 52%),
    radial-gradient(800px 560px at 98% 15%, rgba(245, 158, 11, 0.12), transparent 48%),
    linear-gradient(168deg, #120709 0%, var(--bg-mid) 38%, #070405 100%);
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.65;
  overflow-x: clip;
}

a {
  color: var(--accent-hover);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.wrap {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.75rem);
  padding-inline-start: max(clamp(1rem, 4vw, 1.75rem), env(safe-area-inset-left));
  padding-inline-end: max(clamp(1rem, 4vw, 1.75rem), env(safe-area-inset-right));
  box-sizing: border-box;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(18, 8, 11, 0.82);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, #fbbf24, #b45309);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.38);
}

.nav-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(42, 15, 22, 0.65);
  font-size: 0.78rem;
  color: var(--muted);
}

.hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--crimson-soft);
  border: 1px solid rgba(251, 113, 133, 0.35);
  color: #fecdd3;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  max-width: 100%;
  line-height: 1.35;
  box-sizing: border-box;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 5.2vw + 0.6rem, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: clamp(0.98rem, 1.1vw + 0.85rem, 1.08rem);
  color: var(--muted);
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-sizing: border-box;
}

a.btn {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: linear-gradient(145deg, #fbbf24, #d97706);
  color: #1c070a;
  box-shadow: 0 12px 36px rgba(217, 119, 6, 0.42);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(217, 119, 6, 0.52);
  }
}

.btn-ghost {
  background: rgba(42, 18, 26, 0.72);
  color: var(--text);
  border: 1px solid var(--border);
}

@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover {
    border-color: rgba(251, 191, 36, 0.55);
  }
}

.hero-panel {
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-panel-inner {
  border-radius: calc(var(--radius) - 6px);
  padding: 1.25rem;
  background: linear-gradient(165deg, rgba(225, 29, 72, 0.09), rgba(245, 158, 11, 0.06));
  border: 1px dashed rgba(251, 191, 36, 0.28);
}

.hero-panel h2 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fecaca;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat {
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(12, 4, 8, 0.55);
  border: 1px solid rgba(251, 191, 36, 0.14);
}

.stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--gold);
}

.stat span {
  font-size: 0.78rem;
  color: var(--muted);
}

article.section {
  padding: 2.25rem 0;
}

.section-head {
  margin-bottom: 1.25rem;
}

.section-head h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 65ch;
}

.prose {
  columns: 2;
  column-gap: 2.25rem;
}

@media (max-width: 820px) {
  .prose {
    columns: 1;
  }
}

.prose p {
  margin: 0 0 1rem;
}

@media (min-width: 821px) {
  .prose p {
    text-align: justify;
    hyphens: auto;
  }
}

@media (max-width: 820px) {
  .prose p {
    text-align: left;
    hyphens: manual;
  }
}

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

.slot-strip {
  margin-top: 2rem;
}

.slot-strip .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.1rem;
}

.slot-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(42, 18, 26, 0.88);
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.slot-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #2d0f14, #140506);
}

.slot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slot-meta {
  padding: 1rem 1.05rem 1.15rem;
}

.slot-meta h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.slot-meta p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.note-band {
  margin: 2rem 0;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(251, 191, 36, 0.28);
  background: linear-gradient(95deg, rgba(251, 191, 36, 0.1), rgba(225, 29, 72, 0.07));
}

.note-band p {
  margin: 0;
  font-size: 0.95rem;
  color: #ffe4e6;
}

.site-footer {
  padding: 2rem 0 max(3rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.disclaimer-age {
  margin: 0;
  padding: 0.45rem 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
  border-bottom: 1px solid rgba(251, 191, 36, 0.15);
  background: rgba(12, 4, 8, 0.55);
}

.disclaimer-age strong {
  color: var(--gold);
  font-weight: 700;
}

.disclaimer-age--footer {
  border-bottom: none;
  border-top: 1px solid rgba(251, 191, 36, 0.15);
  font-size: 0.78rem;
}

.faq-section .faq-item {
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.faq-section .faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-section h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.faq-section .faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.redirect-banner {
  position: sticky;
  top: 0;
  z-index: 55;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(95deg, rgba(251, 191, 36, 0.95), rgba(225, 29, 72, 0.92));
  color: #23080f;
}

.redirect-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.35;
}

.redirect-banner-inner strong {
  font-size: 0.95rem;
}

.redirect-now {
  min-height: 42px;
  background: #2b0a12;
  color: #fff4f4;
  box-shadow: none;
}

.redirect-now:hover {
  background: #3c0f1a;
}

.skip-link:focus {
  left: max(1rem, env(safe-area-inset-left));
  top: max(1rem, env(safe-area-inset-top));
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #1c070a;
}

@media (hover: hover) and (pointer: fine) {
  .slot-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.45);
  }
}

@media (max-width: 640px) {
  .redirect-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .redirect-now {
    width: 100%;
    justify-content: center;
  }

  .top-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0.55rem 0 0.75rem;
  }

  .brand {
    font-size: 0.88rem;
  }

  .nav-chip {
    align-self: flex-start;
    max-width: 100%;
    white-space: normal;
    line-height: 1.45;
    padding: 0.4rem 0.75rem;
    font-size: 0.74rem;
  }

  .hero {
    padding: clamp(1.35rem, 4vw, 2rem) 0 1.35rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .stat {
    padding: 0.6rem 0.85rem;
  }

  .stat span {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  article.section {
    padding: 1.5rem 0;
  }

  .section-head h2 {
    line-height: 1.22;
  }

  .section-head p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .slot-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .slot-strip .section-head {
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .note-band {
    margin: 1.35rem 0;
    padding: 1rem 1.05rem;
  }

  .hero-panel,
  .hero-panel-inner {
    padding: 1rem 1.05rem;
  }
}
