:root {
  color-scheme: dark;
  --background: #121212;
  --foreground: #fafafa;
  --primary: #ff3399;
  --muted: #a6a6a6;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--foreground); font-family: ui-sans-serif, system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid white; outline-offset: 5px; }
.header { position: fixed; inset: 0 0 auto; z-index: 10; background: rgb(18 18 18 / 80%); backdrop-filter: blur(12px); border-bottom: 1px solid #333; }
.navigation { max-width: 1280px; margin-inline: auto; padding-inline: 32px; height: 80px; display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; }
.brand img { height: 64px; width: auto; filter: drop-shadow(0 0 20px #ffffff66) drop-shadow(0 0 40px #ec48994d); transition: transform .3s; }
.brand:hover img { transform: scale(1.05); }
.button { display: inline-flex; justify-content: center; align-items: center; background: var(--primary); color: #1a1a1a; border-radius: 12px; font-size: 14px; font-weight: 500; padding: 10px 16px; min-height: 40px; transition: transform .3s, background .3s; }
.button:hover { background: #ff4da6; }
.hero { position: relative; min-height: 100svh; display: flex; justify-content: center; align-items: center; overflow: hidden; background: linear-gradient(to bottom, rgb(18 18 18 / 40%), rgb(18 18 18 / 30%) 50%, rgb(18 18 18 / 70%)), url('assets/galaxy-background-CW2Fmyo4.png') center / cover; }
.hero-content { width: 100%; text-align: center; padding: 0 16px; }
h1 { margin: 0; font-size: inherit; }
.hero-logo { display: block; width: 100%; max-width: 1024px; height: auto; margin: 0 auto 24px; transition: max-width .5s; }
body.scrolled .hero-logo { max-width: 768px; }
.hero p { font-size: 24px; line-height: 32px; color: var(--muted); max-width: 672px; margin: 0 auto 32px; }
.hero-booking { padding: 16px 32px; border-radius: 8px; font-size: 16px; line-height: 24px; font-weight: 600; box-shadow: 0 0 30px rgb(255 51 153 / 40%); }
.hero-booking:hover { transform: scale(1.05); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; color: inherit; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: currentColor; margin: 5px 0; }
.mobile-menu { padding: 24px 16px; border-top: 1px solid #333; background: #1a1a1a; }
.mobile-menu .button { width: 100%; }
@media (max-width: 767px) {
  .navigation { padding-inline: 16px; }
  .js .header-booking { display: none; }
  .js .menu-toggle { display: block; }
  .hero p { font-size: 20px; line-height: 28px; }
  .hero-content { padding-block: 100px 32px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
