/* VegasSlot — Crimson Noir */
:root {
  --bg: #080404;
  --bg-2: #100707;
  --bg-elev: #160A0A;
  --bg-panel: #1C0E0E;
  --red: #C8102E;
  --red-bright: #EF233C;
  --red-deep: #7A0A1C;
  --red-soft: rgba(200, 16, 46, 0.22);
  --cream: #F3EDE6;
  --cream-dim: #C4B8AE;
  --text: #F7F2EE;
  --text-muted: #A89996;
  --border: rgba(200, 16, 46, 0.28);
  --border-soft: rgba(243, 237, 230, 0.12);
  --radius: 4px;
  --max: 1100px;
  --header-h: 78px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.0625rem;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-bright); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cream); }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: .4rem; }

/* Atmosphere */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(200, 16, 46, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(122, 10, 28, 0.25), transparent 50%),
    var(--bg);
}

.bg-mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(8, 4, 4, 0.92) 0%, rgba(8, 4, 4, 0.35) 70%, transparent 100%);
  border-bottom: none;
}

.site-header .wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.55));
}

.logo span { display: none; }

.header-cta { display: flex; gap: .6rem; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: .8rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red-bright);
}

.btn-primary:hover {
  background: var(--red-bright);
  color: #fff;
}

.btn-gold,
.btn-gold:hover {
  background: var(--cream);
  color: #1A0808;
  border-color: var(--cream);
}

.btn-outline {
  background: transparent;
  border-color: rgba(243, 237, 230, 0.45);
  color: var(--cream);
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(243, 237, 230, 0.08);
  color: #fff;
}

.btn-lg {
  padding: 1.05rem 1.75rem;
  font-size: .95rem;
}

.btn-block { width: 100%; }

/* Layout */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(22, 10, 10, 0.7), transparent);
}

.section-head { margin-bottom: 2rem; max-width: 720px; }

.section-head h2,
.prose > h1,
.prose h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: .85rem;
  border-left: 3px solid var(--red);
  padding-left: .65rem;
}

/* ========== HERO — full-bleed ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.04); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(8, 4, 4, 0.94) 0%, rgba(8, 4, 4, 0.78) 42%, rgba(8, 4, 4, 0.35) 68%, rgba(122, 10, 28, 0.25) 100%),
    linear-gradient(0deg, rgba(8, 4, 4, 0.97) 0%, rgba(8, 4, 4, 0.45) 38%, transparent 62%);
  pointer-events: none;
}

.hero-veil::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-bright) 40%, transparent 100%);
  animation: lineSweep 2.4s ease-out both;
}

@keyframes lineSweep {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 3rem) 1.25rem 4.5rem;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero-logo {
  width: min(420px, 88vw);
  height: auto;
  margin-bottom: 1.35rem;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.65));
  animation: fadeUp .75s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
  max-width: 16ch;
  line-height: 1.05;
  animation: fadeUp .75s ease .1s both;
}

.hero-lead {
  color: var(--cream-dim);
  font-size: 1.1rem;
  max-width: 34rem;
  margin-bottom: 1.85rem;
  font-weight: 400;
  animation: fadeUp .75s ease .18s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  animation: fadeUp .75s ease .26s both;
}

.hero-brand,
.hero-visual,
.update-badge { display: none; }

/* Trust band — below hero fold */
.trust-band {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 1.15rem 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.75rem;
  justify-content: center;
  padding: 0;
  border: none;
  margin: 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--red-bright);
  flex-shrink: 0;
}

/* Page banner (inner) */
.page-banner {
  position: relative;
  padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-2);
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(200, 16, 46, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(8, 4, 4, 0.2), var(--bg-2));
  pointer-events: none;
}

.page-banner .wrap { position: relative; z-index: 1; }

.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: .85rem;
  max-width: 18ch;
}

.page-banner h1 .accent { color: var(--red-bright); }

.page-banner .update-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1rem;
}

.page-banner .update-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

/* Legal */
.legal-note {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: 1rem 0 1rem 1rem;
  background: transparent;
  border-left: 3px solid var(--red);
  border-radius: 0;
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.legal-note strong { color: var(--red-bright); }

/* Prose */
.prose h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin: 2.75rem 0 1rem;
  color: var(--cream);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 1.85rem 0 .7rem;
  color: var(--red-bright);
}

.prose h4 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 1.35rem 0 .55rem;
  color: var(--cream);
}

.prose p { margin-bottom: 1rem; color: var(--text-muted); }
.prose p strong,
.prose li strong { color: var(--text); }
.prose ul, .prose ol { margin-bottom: 1.15rem; color: var(--text-muted); }
.prose li::marker { color: var(--red-bright); }

.prose > h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--cream);
}

/* Feature rail */
.feature-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  overflow: visible;
  margin: 2.5rem 0;
}

.feature-rail article {
  background: transparent;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--border-soft);
  transition: background .25s;
}

.feature-rail article:last-child { border-right: none; }
.feature-rail article:hover { background: var(--red-soft); }

.feature-rail h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .45rem;
}

.feature-rail p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Steps */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  border-radius: 0;
  margin: 0;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--red-bright);
  line-height: 1;
}

.steps li strong { display: block; color: var(--text); margin-bottom: .2rem; }
.steps li span { color: var(--text-muted); font-size: .95rem; }

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.75rem;
  border: 1px solid var(--border);
  border-radius: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  min-width: 480px;
}

th, td {
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}

th {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--bg-elev);
}

td { color: var(--text-muted); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(200, 16, 46, 0.06); }

/* Checklist */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  border-top: 1px solid var(--border);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
  margin: 0;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: .15rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EF233C' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Category blocks */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 1.75rem 0 2rem;
  border: 1px solid var(--border);
}

.cat-block {
  padding: 1.5rem 1.4rem;
  background: var(--bg-elev);
  border-top: none;
  border-radius: 0;
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.cat-block:nth-child(2n) { border-right: none; }
.cat-block:nth-last-child(-n+2) { border-bottom: none; }

.cat-block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 .55rem;
}

.cat-block p {
  font-size: .92rem;
  color: var(--text-muted);
  margin: 0;
}

/* CTA band */
.cta-band {
  margin: 3rem 0;
  padding: 3rem 1.75rem;
  text-align: left;
  position: relative;
  background: var(--bg-elev);
  border: none;
  border-left: 4px solid var(--red);
  border-radius: 0;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(200, 16, 46, 0.18), transparent 55%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: .55rem;
  position: relative;
  color: var(--cream);
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  position: relative;
  max-width: 420px;
  margin-left: 0;
  margin-right: 0;
}

.cta-band .btn { position: relative; }

/* FAQ */
.faq { margin: 1.5rem 0 2rem; border-top: 1px solid var(--border); }

.faq-item { border-bottom: 1px solid var(--border-soft); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red-bright);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item .faq-a {
  padding: 0 0 1.2rem;
  color: var(--text-muted);
  font-size: .98rem;
}

/* Cross links */
.cross-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin: .35rem 0;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: .88rem;
  color: var(--cream);
}

.cross-link::before { content: "→"; color: var(--red-bright); }

/* Form placeholder */
.form-placeholder {
  margin: 1.5rem 0;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: 0;
  color: var(--text-muted);
  background: var(--bg-elev);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: .85rem;
}

/* Media bands — full-bleed content images */
.content-img,
.media-band {
  margin: 2.5rem 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.content-img img,
.media-band img {
  width: 100%;
  height: clamp(220px, 38vw, 420px);
  object-fit: cover;
  object-position: center;
}

.content-img::after,
.media-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 4, 4, 0.55), transparent 40%, rgba(8, 4, 4, 0.35));
  pointer-events: none;
}

.content-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.5rem 0;
}

/* Sticky CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  background: rgba(8, 4, 4, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 3.5rem 0 2rem;
  border-top: 3px solid var(--red);
  background: #050202;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo img { height: 56px; max-width: 200px; }
.footer-brand p {
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 300px;
}

.footer-nav h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: .55rem 1.25rem;
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: var(--text-muted);
  font-size: .92rem;
  font-weight: 500;
}

.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--text-muted);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--red);
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Inner pages: header over dark banner */
body:not(:has(.hero)) .site-header {
  position: absolute;
  background: linear-gradient(180deg, rgba(8, 4, 4, 0.95), transparent);
}

/* Responsive */
@media (max-width: 900px) {
  .feature-rail { grid-template-columns: 1fr 1fr; }
  .feature-rail article:nth-child(2n) { border-right: none; }
  .feature-rail article:nth-child(-n+2) { border-bottom: 1px solid var(--border-soft); }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-block { border-right: none !important; }
  .cat-block:not(:last-child) { border-bottom: 1px solid var(--border-soft); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .logo img { height: 40px; }
  .btn { padding: .7rem 1rem; font-size: .78rem; }
  .header-cta .btn-outline { display: none; }
  .section { padding: 3rem 0; }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .hero { min-height: 92vh; }
  .hero-content { padding-bottom: 3rem; }
  .hero-logo { width: min(280px, 78vw); }
  .feature-rail { grid-template-columns: 1fr; }
  .feature-rail article {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }
  .cta-band { padding: 2rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg img { transform: none; animation: none; }
}
