/* === AH base (your upload, not modified) === */
:root {
  --neon-blue: #31C5FF;
  --neon-pink: #FF52D6;
  --neon-red: #FF5A45;
  --neon-green: #39e09b;
  --ink: #E5E7EB;
  --ink-dim: #BFC6CE;
  --bg: #0b0b10;
  --line: rgba(255,255,255,.08);
}

/* Layout resets and base styles */
* { box-sizing: border-box }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none }

/* Header */
.ah-header { position: sticky; top: 0; background: #0d0d10; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo { height: 36px; width: auto; }
.logo-text { font-weight: 800; letter-spacing: .12em; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { opacity: .95 }
.book-btn { padding: 10px 16px; border-radius: 12px; background: #19baff; color: #051820; font-weight: 700; }

/* Mobile nav toggle */
.ah-nav-toggle { display: none; flex-direction: column; gap: 4px; background: transparent; border: 0; cursor: pointer; }
.ah-bar { width: 22px; height: 2px; background: #fff; display: block }

/* Hero */
.hero-section { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: center; padding: 36px 16px; max-width: 1120px; margin: 0 auto; }
.hero-text h1 { font-size: clamp(2rem, 3.5vw + 1rem, 4rem); margin: 0 0 12px }
.hero-text p { color: var(--ink-dim); margin: 0 0 16px }
.btn { display: inline-block; padding: 12px 16px; border-radius: 14px; font-weight: 700; }
.btn-primary { background: #19baff; color: #061a21; box-shadow: 0 0 24px rgba(25,186,255,.18) }
.btn-secondary { background: rgba(255,255,255,.08); }

/* Video card */
.hero-video video { width: 100%; height: auto; display: block; border-radius: 16px; background: linear-gradient(180deg,#13151a,#0b0b10); box-shadow: 0 10px 30px rgba(0,0,0,.35); }

/* Region */
.region { padding: 26px 16px; }
.region-card { max-width: 1120px; margin: 0 auto; background: rgba(255,255,255,.04); border: 1px solid var(--line); padding: 20px 22px; border-radius: 18px; text-align: center; color: var(--ink); }

/* Footer */
.footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 28px 16px 40px; background: rgba(0,0,0,.24) }
.footer .socials { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin: 12px 0 6px }
.footer .footer-links { text-align: center; margin-top: 10px; color: var(--ink-dim) }
.footer .footer-links a { color: var(--ink) }
.footer .footer-links a:hover { text-decoration: underline }
footer .sep { opacity: .4; margin: 0 8px }
.footer .copyright { text-align: center; color: var(--ink-dim); font-size: .95rem; margin-top: 6px }

/* Responsive */
@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .ah-nav-toggle { display: flex }
  .nav { position: absolute; inset: 64px 12px auto 12px; background: #0f1116; border: 1px solid var(--line); border-radius: 14px; padding: 14px; gap: 14px; display: none; flex-direction: column }
  .nav.open { display: flex }
  .book-btn { align-self: flex-start }
}
