/* Палитра №7 — Ретро-гламур (золото, чёрный, бордо, изумрудный акцент) */
:root {
  --bg-primary: #0c0a0b;
  --bg-secondary: #1a1014;
  --bg-card: rgba(45, 28, 35, 0.9);
  --text-primary: #f0e6dc;
  --text-secondary: #b8a090;
  --accent: #10b981;
  --gold: #d4af37;
  --gold-dim: rgba(212, 175, 55, 0.2);
  --burgundy: #5c2932;
  --burgundy-light: rgba(92, 41, 50, 0.5);
  --accent-dim: rgba(16, 185, 129, 0.15);
  --accent-border: var(--gold);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(212, 175, 55, 0.08);
  --shadow-card-inner: inset 0 2px 12px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(212, 175, 55, 0.15);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, #251a1f 100%);
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
h3 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(12, 10, 11, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--gold);
  z-index: 1000;
  padding: 0.85rem 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35), 0 1px 0 var(--gold-dim);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.logo-link:hover {
  opacity: 0.9;
}
.logo-img {
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: none;
  letter-spacing: -0.02em;
}

/* Desktop: normal nav inline; Mobile: burger */
.burger-checkbox {
  display: none;
}

.burger-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 32px;
  height: 26px;
  position: relative;
  z-index: 1001;
  padding: 4px;
}

.burger-label span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--gold);
  margin-bottom: 5px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}
.burger-label span:last-child {
  margin-bottom: 0;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-checkbox:checked ~ .burger-label span:nth-child(2) {
  opacity: 0;
}
.burger-checkbox:checked ~ .burger-label span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation — desktop: horizontal bar */
.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  border: none;
  transform: none;
  overflow: visible;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
  border-bottom: none;
  border-radius: var(--radius-sm);
}
.nav-link:hover {
  color: var(--gold);
  background: var(--gold-dim);
}

/* Age Verification Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 2.5rem 3rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
  text-align: center;
  max-width: 400px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 var(--gold-dim), 0 0 0 1px rgba(0,0,0,0.2);
}

.age-modal-content h2 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-age-yes,
.btn-age-no {
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 600;
}

.btn-age-yes {
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  color: var(--bg-primary);
}

.btn-age-no {
  background: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
  color: white;
}

.btn-age-yes:hover,
.btn-age-no:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 16, 20, 0.98);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--gold);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: none;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  color: var(--bg-primary);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Hero: bento grid */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--burgundy) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 50%,
      var(--gold-dim) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(92, 41, 50, 0.25) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "head media"
    "copy media";
  gap: 2rem 4rem;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-head {
  grid-area: head;
}

.hero-copy {
  grid-area: copy;
}

.hero-media {
  grid-area: media;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}

.hero-media:hover img {
  transform: scale(1.05);
}

.hero-media-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    var(--gold-dim) 0%,
    transparent 70%
  );
  animation: glow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-title {
  background: linear-gradient(135deg, var(--gold) 0%, #f5e6c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  color: var(--accent);
  font-size: clamp(1.15rem, 3vw, 1.7rem);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-badges {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-badges li span {
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  color: var(--gold);
}

.hero-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #cccccc;
}

.hero-disclaimer {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 193, 7, 0.2);
  border: 2px solid rgba(255, 193, 7, 0.5);
  border-radius: var(--radius-sm);
  color: #ffc107;
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-play {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  color: var(--bg-primary);
  padding: 1rem 2.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 2rem;
  transition: all 0.25s ease;
  text-align: center;
  box-shadow: 0 2px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.hero-warning {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 193, 7, 0.2);
  border: 2px solid rgba(255, 193, 7, 0.5);
  border-radius: 10px;
  color: #ffc107;
  font-size: 0.95rem;
  line-height: 1.5;
}

.warning-text {
  color: #ffc107;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 193, 7, 0.15);
  border: 2px solid rgba(255, 193, 7, 0.4);
  border-radius: 10px;
  margin: 1.5rem 0;
}

.warning-section {
  margin-top: 2rem;
  text-align: center;
}

.btn-play-now-overlay {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  color: var(--bg-primary);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-play-now-overlay:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-play-now-inline {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  color: var(--bg-primary);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-play-now-inline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.warning-text-footer {
  color: #ffc107;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.8rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  margin-top: 1rem;
}


@keyframes glow {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.2);
  }
}

/* Section Styles */
section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, #f5e6c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Overview: panel + blockquote + figure */
.overview {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.overview-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.overview-body p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.overview-lead {
  font-size: 1.15rem;
  font-weight: 500;
}

.overview-quote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--gold);
  background: var(--gold-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--gold);
  font-style: normal;
}

.overview-fig {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold);
}

.overview-fig img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.overview-fig:hover img {
  transform: scale(1.05);
}

.highlight {
  color: var(--gold);
  font-weight: 600;
}

/* Image Placeholders */
.image-placeholder {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--bg-secondary) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    var(--gold-dim) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

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

.image-text {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 1;
  text-align: center;
}

/* Features: bento grid */
.features {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 200, 255, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.features-intro {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 400;
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.bento-cell {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-card), var(--shadow-card-inner);
}

.bento-cell:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-hover), var(--shadow-card-inner), 0 0 20px var(--gold-dim);
}

.bento-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  font-size: 2.25rem;
  color: var(--gold);
  filter: drop-shadow(0 0 12px var(--gold-dim));
}

.bento-cell h3 {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.bento-cell p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.bento-cell-cta {
  grid-column: span 2;
  padding: 0;
  overflow: hidden;
}

.bento-cta-fig {
  margin: 0;
  position: relative;
  height: 100%;
  min-height: 280px;
}

.bento-cta-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.4s ease;
}

.bento-cell-cta:hover .bento-cta-fig img {
  transform: scale(1.05);
}

.bento-cta-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(12, 10, 11, 0.95) 0%,
    var(--burgundy-light) 50%,
    transparent 100%
  );
  padding: 2.5rem;
  margin: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.bento-cta-caption h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.bento-cta-caption p {
  color: var(--text-primary);
  margin: 0 0 1rem 0;
}

/* Progress: horizontal roadmap */
.progress {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 50% 20%,
      var(--gold-dim) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 80%,
      var(--burgundy-light) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.progress-intro {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.roadmap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.roadmap-item {
  flex: 1 1 200px;
  max-width: 260px;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card), var(--shadow-card-inner);
}

.roadmap-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover), var(--shadow-card-inner);
}

.roadmap-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.roadmap-item-done .roadmap-num {
  background: var(--accent-dim);
  color: var(--accent);
}

.roadmap-item-current .roadmap-num {
  background: var(--gold);
  color: var(--bg-primary);
  animation: badge-pulse 2s ease-in-out infinite;
}

.roadmap-item-next .roadmap-num {
  background: rgba(102, 102, 102, 0.3);
  color: var(--text-secondary);
}

.roadmap-label {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold);
  background: var(--gold-dim);
}

.roadmap-item h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.roadmap-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.roadmap-warning {
  text-align: center;
  margin: 0;
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 10px var(--gold-dim);
  }
  50% {
    box-shadow: 0 0 20px var(--gold-dim);
  }
}

/* CTA stripe */
.cta-stripe {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--bg-secondary) 100%);
  border-top: 2px solid var(--gold-dim);
  border-bottom: 2px solid var(--gold-dim);
}

.cta-stripe-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-stripe-text h2 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.cta-stripe-text p {
  font-size: 1.15rem;
  margin: 0;
  color: var(--text-primary);
}

.cta-stripe-action {
  flex-shrink: 0;
}

.btn-contact {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  color: var(--bg-primary);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Media block: figure + caption (угол) */
.media-block {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.media-block-fig {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.media-block-fig img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.media-block-fig:hover img {
  transform: scale(1.05);
}

.media-block-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: auto;
  max-width: 400px;
  margin: 0;
  padding: 1.5rem;
  background: rgba(12, 10, 11, 0.9);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-block-fig:hover .media-block-caption {
  opacity: 1;
}

.media-block-caption h3 {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.media-block-caption p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* Benefits: 2x2 grid */
.benefits {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.benefit-tile {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card), var(--shadow-card-inner);
}

.benefit-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover), var(--shadow-card-inner);
}

.benefit-tile h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.benefit-tile p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.benefit-tile-cta {
  background: linear-gradient(
    135deg,
    var(--gold-dim) 0%,
    var(--burgundy-light) 100%
  );
  border-color: var(--gold);
}

/* FAQ: dl/dt/dd */
.faq {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.faq-dl {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0;
}

.faq-pair {
  background: var(--bg-card);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card), var(--shadow-card-inner);
}

.faq-pair:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover), var(--shadow-card-inner);
}

.faq-pair dt {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding: 0;
}

.faq-pair dd {
  margin: 0;
  padding: 0;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Contact: form first, then address */
.contact {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-col {
  order: 1;
}

.contact-address-col {
  order: 2;
}

.contact-address-col h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-address {
  margin-top: 1.5rem;
  font-style: normal;
}

.contact-address p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-address strong {
  color: var(--gold);
}

.contact-address a {
  color: var(--gold);
  text-decoration: none;
}

.contact-address a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--bg-card);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-card), var(--shadow-card-inner);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  background: rgba(12, 10, 11, 0.9);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-dim);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-group a {
  color: var(--gold);
  text-decoration: none;
}

.btn-submit {
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  color: var(--bg-primary);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
  box-shadow: 0 2px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 40%, #251a1f 100%);
  border-top: 2px solid var(--gold);
  padding: 0;
  margin-top: 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.8;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 3rem 0 2.5rem;
  text-align: left;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
  width: fit-content;
}
.footer-logo-link:hover {
  opacity: 0.9;
}
.footer-logo-img {
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer-brand .logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin: 0;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  margin-top: 0;
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav-list li,
.footer-legal-list li {
  margin-bottom: 0.6rem;
}
.footer-nav-list a,
.footer-legal-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-nav-list a:hover,
.footer-legal-list a:hover {
  color: var(--gold);
}

.footer-legal-block {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.footer-legal-block p {
  margin: 0 0 0.4rem 0;
  font-size: inherit;
}
.footer-legal-block a {
  color: var(--gold);
  text-decoration: none;
}
.footer-legal-block a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--gold-dim);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7c8a;
}
.footer-bottom .copyright {
  color: var(--text-secondary);
}
.ssl-notice {
  font-size: 0.8rem !important;
  color: var(--gold) !important;
}
.footer-age-notice {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 0.5rem !important;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.warning-text-footer {
  max-width: 640px;
  margin: 0.75rem auto 0 !important;
  font-size: 0.8rem !important;
  color: #b8860b !important;
  line-height: 1.4 !important;
}

/* Trust bar (responsible gambling) */
.trust-bar {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 4rem 0;
}

.trust-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.trust-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.trust-logos li a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.trust-logos li a:hover {
  opacity: 0.85;
}

.trust-logos img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "head"
      "copy"
      "media";
    gap: 2rem;
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .overview-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-fig {
    order: -1;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-col {
    order: 1;
  }

  .contact-address-col {
    order: 2;
  }

  /* Mobile: show burger, nav becomes overlay */
  .burger-label {
    display: flex;
  }

.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 100%);
  height: 100vh;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 5rem 1.5rem 2rem;
  gap: 0;
  border-left: 2px solid var(--gold);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
}

  .burger-checkbox:checked ~ .nav {
    transform: translateX(0);
  }

.nav-link {
  padding: 1rem 1rem;
  font-size: 1.1rem;
  border-radius: 0;
  border-bottom: 1px solid var(--gold-dim);
}
.nav-link:hover {
  background: var(--gold-dim);
  transform: none;
}

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-tagline {
    max-width: none;
    text-align: center;
  }
  .footer-col {
    text-align: center;
  }
  .footer-col h4 {
    margin-bottom: 1rem;
  }
  .footer-nav-list,
  .footer-legal-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1.5rem;
  }
  .footer-nav-list li,
  .footer-legal-list li {
    margin-bottom: 0.5rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .trust-logos {
    gap: 1.5rem;
  }
  .trust-logos img {
    width: 100px;
    height: 50px;
  }
  .footer-legal-block {
    font-size: 0.85rem;
  }

  .features-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .bento-cell-cta {
    grid-column: span 2;
  }

  .bento-cta-fig {
    min-height: 220px;
  }

  .bento-cta-caption {
    padding: 1.5rem;
  }

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

  .roadmap-item {
    max-width: none;
  }

  .cta-stripe-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-stripe-action {
    width: 100%;
    display: flex;
    justify-content: center;
  }

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

  .media-block-caption {
    max-width: none;
    right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .bento-cell {
    padding: 1.5rem;
  }

  .bento-icon {
    width: 52px;
    height: 52px;
    font-size: 1.75rem;
  }

  .bento-cta-fig {
    min-height: 180px;
  }

  .bento-cta-caption h3 {
    font-size: 1.2rem;
  }

  .bento-cta-caption p {
    font-size: 0.9rem;
  }

  .age-modal-content {
    padding: 2rem;
    margin: 1rem;
  }

  .age-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Legal Pages Styles */
.legal-page {
  background: linear-gradient(135deg, var(--bg-primary) 0%, #1a2332 100%);
  min-height: 100vh;}
.legal-page .page-content {
  padding-top: 5rem; /* space under fixed header */
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-container h1 {
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, #f5e6c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-container .last-updated {
  text-align: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.legal-container section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-card-inner);
}

.legal-container h2 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.legal-container h3 {
  color: var(--gold);
  margin: 1.5rem 0 1rem 0;
  font-size: 1.3rem;
}

.legal-container p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.legal-container ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-container li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.legal-container a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-container a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.legal-page-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.legal-page-footer a {
  color: var(--gold);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 3rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: #ffffff;
  transform: translateX(-5px);
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.show {
  display: flex !important;
}

.loading-lazy {
  loading: lazy;
}
