:root {
  --void: #07040f;
  --ink: #0c0718;
  --panel: #160c28;
  --panel-2: #1d1234;
  --pink: #ff4fd8;
  --hot: #ff2ea6;
  --magenta: #ff6ad5;
  --yellow: #ffe14a;
  --gold: #ffc53d;
  --cyan: #3cf0ff;
  --aqua: #7dffef;
  --lime: #7cff4a;
  --orange: #ff8a3d;
  --cream: #fff6e8;
  --muted: #c9b8d8;
  --line: rgba(255, 110, 220, 0.18);
  --glass: rgba(16, 8, 32, 0.55);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font-script: "Pacifico", cursive;
  --font-display: "Teko", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--void);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.wrap { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }

/* Atmospheric mesh + grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(255, 47, 166, 0.28), transparent 55%),
    radial-gradient(800px 480px at 110% 10%, rgba(60, 240, 255, 0.16), transparent 50%),
    radial-gradient(700px 500px at 50% 120%, rgba(255, 225, 74, 0.08), transparent 50%),
    linear-gradient(180deg, #12081f 0%, #07040f 40%, #0a0614 100%);
  animation: mesh 18s ease-in-out infinite alternate;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
@keyframes mesh {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(18deg); }
}

.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.16), transparent 62%);
  mix-blend-mode: screen;
}

.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 12px; background: #fff; color: #000; padding: 8px 12px; z-index: 80; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(1.3);
  background: rgba(7, 4, 15, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
}
.brand-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 79, 216, 0.55));
  animation: pulse-logo 3.2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.brand-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    conic-gradient(
      from 0deg,
      #ffe14a 0deg,
      #fff3a0 28deg,
      rgba(255,225,74,0) 48deg,
      rgba(255,225,74,0) 180deg,
      #ffc53d 188deg,
      rgba(255,225,74,0) 220deg
    );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2.2px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2.2px));
  filter: drop-shadow(0 0 6px #ffe14a);
  animation: spin-ring 4.8s linear infinite;
}
.brand-ring::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 225, 74, 0.28);
  animation: spin-ring 18s linear infinite reverse;
}
.brand-name {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name b {
  font-family: var(--font-script);
  font-size: 22px;
  font-weight: 400;
  color: var(--yellow);
  text-shadow: 0 0 10px rgba(255, 225, 74, 0.55);
}
.brand-name small {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--cyan);
}
@keyframes pulse-logo {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255,79,216,.5)); }
  50% { filter: drop-shadow(0 0 16px rgba(60,240,255,.65)); }
}
@keyframes spin-ring {
  to { transform: rotate(360deg); }
}
.nav-links {
  display: flex; gap: 22px; align-items: center;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.nav-links a:not(.cta):hover { color: var(--cyan); }
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(180deg, #ff7ae0, var(--hot));
  color: #1a0610; font-weight: 800;
  border-radius: 999px; padding: 11px 18px; letter-spacing: 0.06em;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 8px 30px rgba(255,46,166,.35);
  text-transform: uppercase; font-size: 13px;
}
.cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
.cta.ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: none;
}
.cta.cyan {
  background: linear-gradient(180deg, #7dffef, #3cf0ff);
  color: #041018;
  box-shadow: 0 8px 30px rgba(60,240,255,.28);
}
.menu-toggle {
  display: none; background: none; border: 0; color: #fff; font-size: 28px; cursor: pointer;
}

/* Neon type */
.neon-script {
  font-family: var(--font-script);
  font-weight: 400;
  color: #ff8ae0;
  text-shadow:
    0 0 6px #ff4fd8,
    0 0 18px #ff2ea6,
    0 0 36px rgba(255,46,166,.6);
  animation: flicker 5.5s infinite;
}
.neon-yellow {
  font-family: var(--font-script);
  color: var(--yellow);
  text-shadow: 0 0 8px #ffe14a, 0 0 22px rgba(255,197,61,.55);
}
.neon-cyan {
  color: var(--cyan);
  text-shadow: 0 0 8px #3cf0ff, 0 0 20px rgba(60,240,255,.45);
}
@keyframes flicker {
  0%, 19%, 21%, 23%, 80%, 100% { opacity: 1; }
  20%, 22% { opacity: 0.72; }
  81% { opacity: 0.88; }
}

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cyan);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px; font-weight: 700; margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  box-shadow: 0 0 8px var(--pink);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(var(--vh, 1vh) * 92);
  display: grid;
  place-items: end start;
  overflow: hidden;
}
.hero-media, .hero-media video, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-media img { filter: saturate(1.12) contrast(1.04); object-position: center 55%; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,4,15,.15) 0%, rgba(7,4,15,.28) 40%, rgba(7,4,15,.92) 100%),
    radial-gradient(circle at 78% 18%, rgba(255,79,216,.22), transparent 42%);
}
.hero-copy { position: relative; z-index: 2; padding: 0 0 64px; }
.hero h1 {
  font-family: var(--font-script);
  font-size: clamp(52px, 10vw, 118px);
  line-height: 0.86;
  margin: 0 0 8px;
  color: var(--yellow);
  -webkit-text-stroke: 0.55px rgba(20,8,20,.55);
  paint-order: stroke fill;
  text-shadow:
    0 1px 0 rgba(10,4,16,.45),
    0 0 8px #ffe14a,
    0 0 22px rgba(255,225,74,.65),
    0 0 40px rgba(255,79,216,.35);
}
.hero h1 span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.42em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 10px #3cf0ff;
  margin-top: 6px;
}
.hero .lead {
  max-width: 640px;
  font-size: clamp(18px, 2.2vw, 22px);
  color: #f3e4ff;
  margin: 14px 0 26px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.meta-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,6,20,.45);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  color: var(--muted);
}
a.pill:hover { border-color: var(--cyan); color: #fff; }
.pill strong { color: #fff; font-weight: 700; }
.pill svg { width: 14px; height: 14px; flex: 0 0 14px; color: var(--cyan); }

/* Ticker */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 46, 166, 0.08);
  padding: 10px 0;
}
.ticker-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 22px;
  color: var(--yellow);
}
.ticker-track span { white-space: nowrap; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 88px 0; position: relative; }
.section.tight { padding: 48px 0; }
h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.9;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.sub { color: var(--muted); max-width: 640px; margin: 0 0 36px; }

.grid-3, .grid-2, .grid-4 { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card, .glass {
  background: linear-gradient(180deg, rgba(40,20,70,.55), rgba(16,8,32,.72));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 28px;
}
.card p { margin: 0; color: var(--muted); }

.tilt {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.18s ease;
  transform-style: preserve-3d;
}

.scene {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,79,216,.2);
  background: #10081c;
}
.scene img { width: 100%; height: auto; display: block; object-fit: contain; }
.scene figcaption {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(7,4,15,.62);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Illustrated icon tiles */
.ico {
  width: 72px; height: 72px; margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(60,240,255,.45));
}

/* Menu neon sign — lifted from the bar-screen animation */
.neon-sign {
  margin: 8px 0 36px;
  padding: 10px;
  border-radius: 28px;
  background: #12081c;
  border: 3px solid #3cf0ff;
  box-shadow:
    0 0 0 1px rgba(60,240,255,.25),
    0 0 28px rgba(60,240,255,.35),
    inset 0 0 40px rgba(60,240,255,.08);
  animation: neon-pulse 3.6s ease-in-out infinite;
}
.neon-sign-inner {
  text-align: center;
  padding: clamp(22px, 4vw, 40px) 16px 28px;
}
.ns-title {
  font-family: var(--font-script);
  font-size: clamp(42px, 8vw, 76px);
  color: #ff8ae0;
  margin: 0;
  line-height: .95;
  text-shadow:
    0 0 8px #ff4fd8,
    0 0 24px #ff4fd8,
    0 0 48px rgba(255,79,216,.7);
}
.ns-sub {
  margin: 10px 0 6px;
  font-family: var(--font-script);
  font-size: clamp(22px, 4vw, 34px);
  color: #ff8ae0;
  text-shadow: 0 0 12px #ff4fd8;
}
.ns-sub span {
  color: #3cf0ff;
  text-shadow: 0 0 10px #3cf0ff, 0 0 24px #3cf0ff;
}
.ns-glasses {
  width: min(240px, 70vw);
  height: auto;
  margin: 8px auto 4px;
  display: block;
  filter: drop-shadow(0 0 10px #3cf0ff);
}
.ns-deal {
  font-family: var(--font-script);
  font-size: clamp(26px, 4.4vw, 40px);
  color: #ff8ae0;
  margin: 6px 0 0;
  text-shadow: 0 0 10px #ff4fd8, 0 0 28px #ff4fd8;
}
@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(60,240,255,.25), 0 0 28px rgba(60,240,255,.35), inset 0 0 40px rgba(60,240,255,.08); }
  45% { box-shadow: 0 0 0 1px rgba(60,240,255,.4), 0 0 42px rgba(60,240,255,.55), inset 0 0 50px rgba(60,240,255,.12); }
  52% { box-shadow: 0 0 0 1px rgba(60,240,255,.12), 0 0 12px rgba(60,240,255,.18), inset 0 0 20px rgba(60,240,255,.04); }
}

/* Happy hour banner */
.hh {
  position: relative;
  border-radius: 32px;
  padding: clamp(28px, 5vw, 48px);
  overflow: hidden;
  background:
    radial-gradient(500px 220px at 90% 20%, rgba(60,240,255,.18), transparent 50%),
    linear-gradient(135deg, #241038, #0e0820 55%, #152038);
  border: 1px solid rgba(60,240,255,.28);
  box-shadow: 0 0 50px rgba(60,240,255,.08);
}
.hh h2 { color: var(--cyan); text-shadow: 0 0 16px rgba(60,240,255,.45); }
.hh .deal {
  font-family: var(--font-script);
  font-size: clamp(28px, 4vw, 42px);
  color: #ff8ae0;
  margin: 8px 0 0;
}

/* Menu */
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 28px;
}
.menu-tabs button {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px; font-weight: 700;
}
.menu-tabs button.on, .menu-tabs button:hover {
  color: #140814;
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 18px rgba(255,225,74,.35);
}
.menu-panel { display: none; }
.menu-panel.on { display: block; animation: rise 0.45s ease; }
.drink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.drink {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(36,18,58,.8), rgba(12,6,24,.86));
  border: 1px solid var(--line);
  overflow: hidden;
}
.drink::before {
  content: "";
  position: absolute; inset: auto -20% -40% auto;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,79,216,.16), transparent 70%);
}
.drink h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
}
.drink p { margin: 0; color: var(--muted); font-size: 14px; }
.price {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--yellow);
  text-shadow: 0 0 10px rgba(255,225,74,.4);
}
.fav {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #140814;
  background: var(--pink);
  border-radius: 999px;
  padding: 3px 8px;
  font-weight: 800;
}
.fine {
  margin-top: 22px;
  font-size: 12px;
  color: #8f7aa3;
}

/* Sports badges */
.sport-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.sport {
  aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(12,8,24,.6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sport img {
  width: 72%;
  height: 56%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.12));
}
.sport::after {
  content: "";
  position: absolute;
  width: 160%; height: 40px;
  background: linear-gradient(90deg, transparent, rgba(60,240,255,.55), transparent);
  transform: rotate(-18deg) translateX(-120%);
  animation: slash 3.8s ease-in-out infinite;
}
.sport:nth-child(2)::after { animation-delay: .4s; background: linear-gradient(90deg, transparent, rgba(255,79,216,.5), transparent); }
.sport:nth-child(3)::after { animation-delay: .8s; }
.sport:nth-child(4)::after { animation-delay: 1.2s; background: linear-gradient(90deg, transparent, rgba(255,60,60,.55), transparent); }
.sport:nth-child(5)::after { animation-delay: 1.6s; }
@keyframes slash {
  0%, 55% { transform: rotate(-18deg) translateX(-120%); }
  80%, 100% { transform: rotate(-18deg) translateX(80%); }
}

/* Equalizer */
.eq {
  display: flex; align-items: flex-end; gap: 5px; height: 46px;
}
.eq i {
  display: block; width: 6px; border-radius: 99px;
  background: linear-gradient(180deg, var(--pink), var(--cyan));
  box-shadow: 0 0 8px var(--pink);
  animation: eq 1s ease-in-out infinite;
  height: 40%;
}
.eq i:nth-child(2) { animation-delay: .1s; }
.eq i:nth-child(3) { animation-delay: .2s; }
.eq i:nth-child(4) { animation-delay: .05s; }
.eq i:nth-child(5) { animation-delay: .25s; }
.eq i:nth-child(6) { animation-delay: .15s; }
.eq i:nth-child(7) { animation-delay: .3s; }
@keyframes eq {
  0%, 100% { height: 28%; }
  50% { height: 100%; }
}

/* FAQ */
.faq details {
  border-top: 1px solid var(--line); padding: 16px 0;
}
.faq summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--muted); margin: 8px 0 0; }

footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 70px;
  color: var(--muted);
  font-size: 14px;
  background: linear-gradient(180deg, transparent, rgba(255,46,166,.05));
}
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 24px; }
footer a:hover { color: var(--cyan); }
.tiny { font-size: 12px; opacity: 0.8; }

.page-hero { padding: 56px 0 12px; }
.page-hero h1 {
  font-family: var(--font-script);
  font-size: clamp(46px, 8vw, 86px);
  line-height: 0.92;
  margin: 0 0 10px;
  color: var(--yellow);
  text-shadow: 0 0 12px rgba(255,225,74,.45);
}

.map-frame {
  border: 0; width: 100%; min-height: 380px; border-radius: 24px;
  filter: saturate(0.85) contrast(1.05);
  box-shadow: var(--shadow);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-24px); }
[data-reveal="right"] { transform: translateX(24px); }
[data-reveal="left"].in, [data-reveal="right"].in { transform: none; }

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* Floating palm silhouettes */
.palms {
  position: absolute; inset: auto 0 -40px 0; height: 180px; pointer-events: none; opacity: 0.18;
  background:
    radial-gradient(circle at 10% 100%, #000 18%, transparent 19%),
    radial-gradient(circle at 88% 100%, #000 22%, transparent 23%);
}

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 78px; left: 0; right: 0;
    background: rgba(8,4,16,.96);
    padding: 18px 22px 22px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .menu-toggle { display: block; }
  .grid-3, .grid-2, .grid-4, .foot-grid, .sport-row { grid-template-columns: 1fr 1fr; }
  .sport-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .grid-4, .foot-grid, .sport-row { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .brand-name { display: none; }
  .hero h1 {
    -webkit-text-stroke: 0.7px rgba(20,8,20,.6);
    text-shadow:
      0 1px 0 rgba(10,4,16,.5),
      0 0 8px #ffe14a,
      0 0 20px rgba(255,225,74,.6);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
