/* Heart of Vegas CH — Shared Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── Accessibility: skip link ─── */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 2147483647;
  background: #DA1E3D;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 8px; color: #fff; outline: 3px solid #fff; }

/* ─── Accessibility: visible keyboard focus ─── */
:focus-visible {
  outline: 3px solid #F04060;
  outline-offset: 2px;
  border-radius: 6px;
}
/* Hide focus ring for pointer/mouse users only */
:focus:not(:focus-visible) { outline: none; }

/* ─── Respect reduced-motion preference ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

body {
  background: #00023C;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 40px 40px;
}

a { color: #DA1E3D; text-decoration: none; }
a:hover { color: #F04060; }
img { max-width: 100%; height: auto; display: block; }
p { text-wrap: pretty; }
h1, h2, h3, h4, h5 { font-family: 'Rajdhani', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(34px, 6vw, 62px); }
h2 { font-size: clamp(26px, 4vw, 44px); }
h3 { font-size: clamp(18px, 2.5vw, 26px); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Sticky header wrapper ─── */
.header-wrap { position: sticky; top: 0; z-index: 200; }

.disclaimer-ribbon {
  background: rgba(161, 0, 62, 0.14);
  border-bottom: 1px solid rgba(218, 30, 61, 0.2);
  padding: 7px 20px;
  text-align: center;
  font-size: 12px;
  color: #BBBCC5;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.site-header {
  background: rgba(0, 2, 60, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-link img {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ─── Navigation ─── */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  color: #BBBCC5;
  text-decoration: none;
  padding: 8px 11px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active { color: #fff; background: rgba(255,255,255,0.07); }

.nav-cta {
  margin-left: 8px !important;
  background: linear-gradient(135deg, #A1003E, #DA1E3D) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  box-shadow: 0 2px 16px rgba(218, 30, 61, 0.35) !important;
  transition: transform 0.15s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #C0004A, #F02040) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 24px rgba(218, 30, 61, 0.5) !important;
}

/* ─── Hamburger ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.15s;
  min-height: 48px;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: linear-gradient(135deg, #A1003E, #DA1E3D);
  color: #fff;
  box-shadow: 0 4px 24px rgba(218, 30, 61, 0.4);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(218, 30, 61, 0.6);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 40px; font-size: 17px; min-height: 56px; }

/* ─── Cards ─── */
.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(218, 30, 61, 0.35);
  box-shadow: 0 14px 48px rgba(218, 30, 61, 0.14);
}

/* ─── Eyebrow / Section tag ─── */
.eyebrow,
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #DA1E3D;
  margin-bottom: 12px;
}

/* ─── Layout Helpers ─── */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-bottom: 32px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 40px; font-weight: 700; color: #DA1E3D; line-height: 1.1; }
.stat-label { font-size: 13px; color: #BBBCC5; margin-top: 2px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* ─── Feature Lists ─── */
.feature-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; list-style: none; padding: 0; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(218,30,61,0.15); border: 1px solid rgba(218,30,61,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; color: #DA1E3D; }
.feature-text strong { font-size: 15px; display: block; color: #fff; }
.feature-text p { color: #BBBCC5; font-size: 14px; margin: 2px 0 0; }

/* ─── Badges ─── */
.badge-tag { background: rgba(218,30,61,0.06); border: 1px solid rgba(218,30,61,0.15); border-radius: 10px; padding: 12px 16px; display: inline-block; font-size: 13px; font-weight: 700; color: #DA1E3D; letter-spacing: 0.05em; }
.badge-corner { position: absolute; top: 14px; right: 14px; z-index: 10; background: #02043A; border: 1px solid rgba(218,30,61,0.5); border-radius: 8px; padding: 6px 14px; font-size: 12px; font-weight: 700; color: #DA1E3D; letter-spacing: 0.05em; box-shadow: 0 4px 14px rgba(0,0,0,0.5); pointer-events: none; }

/* ─── Check Lists ─── */
.check-list { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; padding-top: 16px; list-style: none; margin: 0; }
.check-item { font-size: 13px; color: #BBBCC5; display: flex; align-items: center; gap: 6px; }

/* ─── Slot Frame ─── */
.slot-frame { border-radius: 20px; overflow: hidden; border: 1px solid rgba(218,30,61,0.25); box-shadow: 0 10px 30px rgba(0,0,0,0.4); background: #02043A; position: relative; }
.slot-aspect { position: relative; width: 100%; aspect-ratio: 16/10; min-height: 480px; }
.slot-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; background: #02043A; }

/* ─── Text Alignment & Spacing ─── */
.text-center { text-align: center; }
.text-muted { color: #BBBCC5; }
.text-white { color: #ffffff; }
.text-accent { color: #DA1E3D; }
.max-w-md { max-width: 520px; margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 760px; margin-left: auto; margin-right: auto; }
.mt-10 { margin-top: 10px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mt-24 { margin-top: 24px; }

/* ─── Section ─── */
.section { padding: 88px 0; position: relative; }
.section-sm { padding: 56px 0; }

/* ─── Footer ─── */
.site-footer {
  background: #000228;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.footer-disclaimer {
  background: rgba(161, 0, 62, 0.07);
  border: 1px solid rgba(218, 30, 61, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #DA1E3D;
  color: #DA1E3D;
  font-weight: 700;
  font-size: 9px;
  font-family: 'Rajdhani', sans-serif;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: #BBBCC5;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.18s;
  line-height: 1.5;
}

.footer-col a:hover { color: #fff; }

.footer-col p { font-size: 13px; color: #BBBCC5; line-height: 1.6; margin-bottom: 9px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #BBBCC5;
}

/* ─── Forms ─── */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #BBBCC5;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(218, 30, 61, 0.5);
  box-shadow: 0 0 0 3px rgba(218, 30, 61, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(187, 188, 197, 0.45); }
.form-group textarea { min-height: 150px; resize: vertical; }

.form-group.invalid input,
.form-group.invalid textarea {
  border-color: #DA1E3D;
  box-shadow: 0 0 0 3px rgba(218, 30, 61, 0.15);
}
.field-error {
  margin-top: 6px;
  font-size: 13px;
  color: #F04060;
}

/* ─── FAQ ─── */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.025);
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s;
  gap: 16px;
  min-height: 44px;
}

.faq-question:hover { background: rgba(255, 255, 255, 0.05); }
.faq-question.open { background: rgba(218, 30, 61, 0.07); color: #fff; }

.faq-icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, border-color 0.25s;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.faq-question.open .faq-icon { transform: rotate(45deg); border-color: #DA1E3D; color: #DA1E3D; }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: #BBBCC5;
  font-size: 15px;
  line-height: 1.7;
}

.faq-answer.open { display: block; }

/* ─── Legal pages ─── */
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 22px; margin: 36px 0 12px; color: #fff; }
.legal-content h3 { font-size: 18px; margin: 24px 0 8px; color: #fff; }
.legal-content p { color: #BBBCC5; margin-bottom: 16px; font-size: 15px; line-height: 1.7; }
.legal-content ul, .legal-content ol { color: #BBBCC5; margin-bottom: 16px; padding-left: 24px; font-size: 15px; line-height: 1.7; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: #DA1E3D; }

/* ─── Scroll animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible { opacity: 1; transform: none; }
.fade-in.d1 { transition-delay: 0.1s; }
.fade-in.d2 { transition-delay: 0.2s; }
.fade-in.d3 { transition-delay: 0.3s; }
.fade-in.d4 { transition-delay: 0.4s; }

/* ─── Info disclaimer block ─── */
.info-block {
  background: rgba(218, 30, 61, 0.06);
  border: 1px solid rgba(218, 30, 61, 0.18);
  border-radius: 14px;
  padding: 24px 32px;
}

/* ─── Keyframes ─── */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes glowPulse { 0%, 100% { box-shadow: 0 0 30px rgba(218,30,61,0.3); } 50% { box-shadow: 0 0 60px rgba(218,30,61,0.6); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }
@keyframes ageIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
@keyframes slideUp { from { opacity: 0; transform: translateX(-50%) translateY(20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(0, 2, 54, 0.99);
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 2px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-nav.open { display: flex; }

  .site-nav a { padding: 13px 16px !important; font-size: 15px !important; border-radius: 10px !important; }
  .nav-cta { margin-left: 0 !important; text-align: center; width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 64px 0; }

  /* Buttons: allow text to wrap so they never overflow the screen */
  .btn { white-space: normal; text-align: center; }
  .btn-lg { padding: 15px 28px; font-size: 16px; }

  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

/* ─── Phones ─── */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 11px 16px; gap: 10px; }
  .disclaimer-ribbon { font-size: 11px; padding: 6px 14px; }
  .logo-text { font-size: 16px; }
  .section { padding: 52px 0; }
  .section-sm { padding: 40px 0; }

  /* Full-width, comfortably tappable CTA buttons */
  .btn { width: 100%; padding: 14px 20px; min-height: 50px; }
  .btn-lg { width: 100%; padding: 16px 22px; font-size: 16px; min-height: 54px; }

  /* Stack any button rows and let each button fill the row */
  .btn-row,
  .hero-actions { flex-direction: column; align-items: stretch; }

  /* Cards / blocks: tighter padding so content isn't cramped */
  .card { padding: 24px 20px !important; }
  .info-block { padding: 20px 18px; }
  .footer-disclaimer { padding: 14px 14px; gap: 8px 12px; }
  .faq-question { padding: 16px 18px; font-size: 15px; }
  .faq-answer { padding: 0 18px 18px; }
  .legal-content h2 { font-size: 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 44px 0; }
}
