:root {
  --font-heading: 'Bebas Neue', cursive, sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
  
  --bg-dark: #0a0402;
  --bg-surface: #160a04;
  --bg-card: #221107;
  --bg-card-hover: #2f190c;
  --bg-glass: rgba(34, 17, 7, 0.85);
  
  --primary-orange: #ea580c;
  --primary-orange-glow: rgba(234, 88, 12, 0.35);
  --primary-red: #dc2626;
  --accent-gold: #f59e0b;
  --accent-gold-light: #fbbf24;
  --accent-gold-glow: rgba(245, 158, 11, 0.3);
  
  --text-main: #fff8f0;
  --text-muted: #cdb09e;
  --text-dim: #997864;
  
  --border-color: #452414;
  --border-glow: #7c3512;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-fire: 0 0 25px rgba(234, 88, 12, 0.25);
  
  --max-width: 1240px;
  --header-height: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-main);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--primary-orange);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-main);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--accent-gold-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-orange);
}

.title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.subpage-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--accent-gold-light);
}

.subpage-copy {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 850px;
  margin-bottom: 24px;
}

.compliance-banner {
  background-color: #1a0802;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
}

.compliance-badge {
  background: var(--primary-orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

[data-site-header] {
  min-height: var(--header-height);
  contain: layout;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #0a0402;
  border-bottom: 1px solid var(--border-color);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--primary-orange-glow);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  color: var(--text-main);
  display: block;
  line-height: 1;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--accent-gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
  background-color: rgba(234, 88, 12, 0.15);
  border-bottom: 2px solid var(--primary-orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-guest {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-pill {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--accent-gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.auth-pill.ghost {
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
}

.auth-pill.ghost:hover {
  color: var(--primary-red);
  border-color: var(--primary-red);
}

button, .fire-button, .outline-button, .gold-button {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25 ease;
  border: none;
  text-decoration: none;
}

.fire-button {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: #ffffff;
  box-shadow: var(--shadow-fire);
}

.fire-button:hover {
  background: linear-gradient(135deg, #ef4444, #f97316);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5);
  color: #fff;
}

.gold-button {
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
  color: #0a0402;
  font-weight: bold;
}

.gold-button:hover {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-gold-glow);
}

.outline-button {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border-glow);
}

.outline-button:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.08);
}

.hero {
  position: relative;
  padding: 60px 0 80px;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.brand-mark-sm {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary-orange);
  box-shadow: 0 0 10px var(--primary-orange-glow);
  flex-shrink: 0;
}

.brand-mark-sm.brand-mark-sm--lg {
  width: 64px;
  height: 64px;
}

.brand-mark-sm--center {
  margin: 0 auto 16px;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 620px;
}

.page-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.page-badge {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--accent-gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 20px;
}

.hero-meta {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

.hero-panel {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.shot-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.shot-stack img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: border-color 0.15s ease;
}

.shot-stack img:hover {
  border-color: var(--accent-gold);
}

.spark-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.spark {
  position: absolute;
  bottom: -10px;
  width: 4px;
  height: 4px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-orange);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-600px) translateX(var(--drift));
    opacity: 0;
  }
}

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

.section-tight {
  padding: 50px 0;
  border-bottom: 1px solid var(--border-color);
}

.subpage-hero {
  padding: 60px 0;
  background-color: #120603;
  border-bottom: 1px solid var(--border-color);
}

.section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.content-card, .feature-card, .review-card, .demo-card, .legal-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.content-card:hover, .feature-card:hover, .review-card:hover {
  border-color: var(--border-glow);
  background-color: var(--bg-card-hover);
}

.card-icon-badge {
  width: 48px;
  height: 48px;
  background: rgba(234, 88, 12, 0.15);
  border: 1px solid var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-gold-light);
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.card-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--accent-gold-light);
}

.review-stars {
  color: var(--accent-gold);
  letter-spacing: 2px;
}

.game-card {
  background: linear-gradient(145deg, var(--bg-card), #190a03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-card:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.25), 0 0 1px 1px var(--primary-orange);
  transform: translateY(-4px);
}

.game-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border-glow);
  background-color: var(--bg-dark);
  box-shadow: var(--shadow-sm);
}

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

.game-card:hover .game-media img {
  transform: scale(1.03);
}

.thumb-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.thumb-strip img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
  cursor: pointer;
}

.thumb-strip img:hover {
  border-color: var(--accent-gold);
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--accent-gold-glow);
}

.demo-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, #2b1307, #190903);
  border: 1px solid var(--border-glow);
}

.demo-media img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.section-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.promo-block {
  background: linear-gradient(90deg, #260d03, #3a1505, #260d03);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.faq-toggle:hover {
  background-color: rgba(234, 88, 12, 0.08);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(10, 4, 2, 0.4);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-copy {
  color: var(--text-muted);
  font-size: 1rem;
}

.burger-toggle {
  display: none;
}

.header-drawer {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1010px) {
  .site-header {
    position: relative;
    z-index: 1000;
  }

  .header-row {
    position: relative;
    z-index: 1001;
  }

  .burger-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 40px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    color: var(--accent-gold-light);
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  }

  .burger-toggle:hover, .burger-toggle.active {
    background-color: var(--primary-orange);
    color: #ffffff;
    border-color: var(--primary-orange);
  }

  .burger-icon {
    width: 24px;
    height: 24px;
    display: block;
  }

  .burger-line-top, .burger-line-mid, .burger-line-bot {
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: 12px 12px;
  }

  .burger-toggle.active .burger-line-top {
    transform: translateY(6px) rotate(45deg);
  }

  .burger-toggle.active .burger-line-mid {
    opacity: 0;
  }

  .burger-toggle.active .burger-line-bot {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0b0402;
    padding: 76px 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .header-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 360px;
    gap: 8px;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    font-size: 1.25rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: all 0.2s ease;
  }

  .nav-link:hover, .nav-link.active {
    background-color: rgba(234, 88, 12, 0.15);
    border-color: var(--primary-orange);
    color: var(--accent-gold-light);
  }

  .header-actions {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
  }

  .auth-guest, .auth-user {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .auth-guest button, .auth-user button, .auth-user .auth-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--accent-gold-light);
}

.field input, .field textarea, .field select {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold-glow);
}

.map-shell {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  height: 380px;
  width: 100%;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.org-info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
}

.org-title {
  font-size: 1.5rem;
  color: var(--accent-gold-light);
  margin-bottom: 12px;
}

.org-detail {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

.policy-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  line-height: 1.8;
  color: var(--text-muted);
}

.policy-card h2 {
  font-size: 2rem;
  color: var(--accent-gold-light);
  margin: 32px 0 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin: 24px 0 12px;
}

.policy-card p {
  margin-bottom: 18px;
}

.policy-card ul {
  margin: 0 0 20px 24px;
  list-style-type: disc;
}

.policy-card li {
  margin-bottom: 8px;
}

.site-footer {
  background-color: #070301;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-meta {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 16px 0;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.social-link:hover {
  color: var(--accent-gold-light);
  border-color: var(--accent-gold);
}

.social-svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--accent-gold-light);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(69, 36, 20, 0.5);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

#ck-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background-color: #170a04;
  color: #fffbf0;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  border-top: 3px solid var(--primary-orange);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
}

.ck-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ck-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#age-gate {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 4, 2, 0.97);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-align: center;
  padding: 24px;
}

.age-gate-card {
  max-width: 480px;
  width: 100%;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.auth-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-md);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.modal-tab {
  flex: 1;
  font-size: 1.1rem;
  padding: 8px 12px;
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-message {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--accent-gold);
  text-align: center;
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  background-color: var(--bg-card);
  border: 1.5px solid var(--accent-gold);
  color: var(--text-main);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: rgba(10, 4, 2, 0.4);
  border: 1px solid var(--border-color);
  padding: 14px;
  border-radius: var(--radius-sm);
}

.check-icon {
  width: 28px;
  height: 28px;
  background: var(--primary-orange);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.stat-box {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent-gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.slider-shell {
  position: relative;
}

.slider-stage {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.08), 0 0 26px rgba(234, 88, 12, 0.16);
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(12, 12, 12, 0.82);
  color: var(--accent-gold);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 0 0 1px rgba(234, 88, 12, 0.3), 0 0 20px rgba(234, 88, 12, 0.22);
}

.slider-arrow:hover {
  background: var(--primary-orange);
  color: #ffffff;
}

.slider-arrow.prev {
  left: 18px;
}

.slider-arrow.next {
  right: 18px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  transition: all 0.2s ease;
}

.slider-dot.active {
  background: var(--accent-gold);
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.6);
  width: 12px;
}

.contact-buttons-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.demo-iframe-shell {
  height: 620px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.demo-iframe-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-legal-card {
  margin-top: 24px;
}

.brand-mark-margin {
  margin-bottom: 12px;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .promo-block {
    flex-direction: column;
    text-align: center;
  }
  
  .demo-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 6px;
  }

  .section-lead {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .checklist {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stats-list {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  .slider-arrow.prev {
    left: 10px;
  }

  .slider-arrow.next {
    right: 10px;
  }

  .slider-dots {
    gap: 8px;
    margin-top: 14px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 768px) {
  .header-row {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 0;
  }
  
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    padding-top: 8px;
  }
  
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .footer-socials {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  #ck-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ck-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section-head {
    gap: 6px;
    margin-bottom: 18px;
  }

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

  .content-card, .feature-card, .review-card, .demo-card, .legal-card {
    padding: 20px 14px;
  }

  .check-item {
    padding: 12px;
    gap: 10px;
  }
  
  .title {
    font-size: 2.3rem;
  }
  
  .nav-link {
    font-size: 1.05rem;
    padding: 6px 10px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .fire-button, .outline-button, .gold-button {
    width: 100%;
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .slider-arrow.prev {
    left: 6px;
  }

  .slider-arrow.next {
    right: 6px;
  }

  .slider-dots {
    gap: 6px;
    margin-top: 10px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  
  .brand-text {
    font-size: 1.4rem;
  }
  
  .title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}