@font-face {
  font-family: 'Poiret One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/poiret-one-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poiret One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/poiret-one-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Pirata One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/pirata-one-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Pirata One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/pirata-one-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --neon-glow-1: #f0abfc;
  --neon-glow-2: #a21caf;
  --neon-glow-3: #7e22ce;
  --gold: #f0b824;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #000;
}

body {
  --page-pad-y: clamp(1.5rem, 4vh, 3rem);
  --page-pad-x: 1.25rem;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2.5vh, 1.75rem);
  padding: var(--page-pad-y) var(--page-pad-x) clamp(3rem, 6vh, 4rem);
  text-align: center;
  color: #f2f2f2;
  font-family: 'Lora', serif;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  width: calc(100% + 2 * var(--page-pad-x));
  margin: calc(-1 * var(--page-pad-y)) calc(-1 * var(--page-pad-x)) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  background: transparent;
  border: 1px solid rgba(242, 242, 242, 0.35);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.3s ease;
}

.burger:hover,
.burger:focus-visible {
  border-color: var(--gold);
}

.burger-bar {
  width: 1.3rem;
  height: 2px;
  background: #f2f2f2;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.burger:hover .burger-bar,
.burger:focus-visible .burger-bar {
  background: var(--gold);
  box-shadow: 0 0 6px rgba(240, 184, 36, 0.6);
}

.burger[aria-expanded="true"] .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger-bar:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] .burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.menu.is-visible {
  opacity: 1;
}

.menu-link {
  color: #f2f2f2;
  text-decoration: none;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(242, 242, 242, 0.35);
  border-radius: 999px;
  padding: 0.35em 1.1em;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.menu-link:hover,
.menu-link:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
  text-shadow: 0 0 10px rgba(240, 184, 36, 0.6);
  box-shadow: 0 0 16px rgba(240, 184, 36, 0.35);
}

.menu-link--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: none;
  border-radius: 50%;
}

.menu-link--icon svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: currentColor;
  filter: drop-shadow(0 0 0 rgba(240, 184, 36, 0));
  transition: filter 0.3s ease;
}

.menu-link--icon:hover,
.menu-link--icon:focus-visible {
  box-shadow: none;
}

.menu-link--icon:hover svg,
.menu-link--icon:focus-visible svg {
  filter: drop-shadow(0 0 8px rgba(240, 184, 36, 0.85));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar-brand {
  display: none;
}

.topbar.nav-compact {
  justify-content: space-between;
}

.topbar.nav-compact .topbar-brand {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  margin-right: 0.75rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: 'Pirata One', cursive;
  font-size: 1.1rem;
  color: #f2f2f2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
}

.topbar.nav-compact .burger {
  display: flex;
  flex-shrink: 0;
}

.topbar.nav-compact .menu {
  position: absolute;
  top: 100%;
  right: 1rem;
  left: 1rem;
  flex-direction: column;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(242, 242, 242, 0.2);
  border-radius: 14px;
  padding: 0.75rem;
  gap: 0.5rem;
  max-height: 60vh;
  overflow: auto;
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}

.topbar.nav-compact .menu.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.topbar.nav-compact .menu-link {
  min-width: 0;
  font-size: 0.85rem;
}

.topbar.nav-compact .menu-link--icon {
  align-self: stretch;
  flex-direction: row;
  width: auto;
  height: auto;
  gap: 0.5em;
  padding: 0.35em 1.1em;
  border: 1px solid rgba(242, 242, 242, 0.35);
  border-radius: 999px;
}

.topbar.nav-compact .menu-link--icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.topbar.nav-compact .menu-link--icon .visually-hidden {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-glow {
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 65%);
  filter: blur(18px);
  animation: breathe 6s ease-in-out infinite;
  pointer-events: none;
}

.logo {
  position: relative;
  z-index: 1;
  width: min(140px, 26vw, 16vh);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
  animation: logo-glow 6s ease-in-out infinite;
}

.brand {
  margin: 0;
  font-family: 'Pirata One', cursive;
  font-weight: 400;
  font-size: clamp(1.2rem, min(5vw, 5.5vh), 2.5rem);
  color: #f2f2f2;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.25);
  letter-spacing: 0.02em;
}

h1.title {
  margin: 0;
  font-family: 'Poiret One', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, min(8vw, 6vh), 3.5rem);
  letter-spacing: 0.1em;
  color: #f2f2f2;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.25);
}

.neon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.neon-sign {
  font-family: 'Poiret One', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, min(11vw, 10vh), 6.5rem);
  line-height: 1.2;
  letter-spacing: 0.08em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90vw;
}

.neon-sign .letter {
  display: inline-block;
  color: #f9d9ff;
  opacity: 0;
  text-shadow:
    0 0 2px #fff,
    0 0 5px #fff,
    0 0 10px var(--neon-glow-1),
    0 0 20px var(--neon-glow-2),
    0 0 38px var(--neon-glow-3),
    0 0 60px var(--neon-glow-3);
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.neon-sign .letter.space {
  width: 0.3em;
  text-shadow: none;
}

.neon-sign--lines {
  flex-direction: column;
  align-items: center;
}

.neon-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.neon-wrap.is-lit {
  animation: ambient-flicker 6.5s ease-in-out infinite;
}

@keyframes ignite-a {
  0% { opacity: 0; }
  3% { opacity: 1; }
  6% { opacity: 0.2; }
  9% { opacity: 1; }
  12% { opacity: 0.15; }
  16% { opacity: 1; }
  19% { opacity: 0.4; }
  24% { opacity: 1; }
  28% { opacity: 0.1; }
  33% { opacity: 1; }
  100% { opacity: 1; }
}

@keyframes ignite-b {
  0% { opacity: 0; }
  4% { opacity: 1; }
  8% { opacity: 0.3; }
  13% { opacity: 1; }
  17% { opacity: 0.1; }
  22% { opacity: 1; }
  27% { opacity: 0.35; }
  31% { opacity: 1; }
  100% { opacity: 1; }
}

@keyframes ignite-c {
  0% { opacity: 0; }
  2% { opacity: 0.8; }
  5% { opacity: 0.1; }
  10% { opacity: 1; }
  14% { opacity: 0.25; }
  18% { opacity: 1; }
  23% { opacity: 0.15; }
  29% { opacity: 1; }
  34% { opacity: 0.3; }
  38% { opacity: 1; }
  100% { opacity: 1; }
}

@keyframes ambient-flicker {
  0%, 89%, 92%, 100% { opacity: 1; }
  90% { opacity: 0.82; }
  91% { opacity: 1; }
  95% { opacity: 0.9; }
  96% { opacity: 1; }
  97.5% { opacity: 0.75; }
  98.5% { opacity: 1; }
}

.info-card {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: clamp(0.5rem, 1.5vh, 1rem);
  font-size: clamp(0.9rem, min(3.4vw, 2.6vh), 1.1rem);
  color: #f2f2f2;
  opacity: 0.95;
  line-height: 1.6;
  text-align: left;
}

.info-card p {
  margin: 0;
}

@keyframes breathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.16)); }
  50% { filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.32)); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-glow, .logo { animation: none; }
  .neon-wrap.is-lit { animation: none; }
  .neon-sign .letter { animation: none !important; opacity: 1; }
}
