
:root {
  --purple: #7a3cff;
  --neon-green: #00ff9c;
  --ink: #101018;
  --bg: #0b0014;
  --card: #160028;
  --muted: #c9b3ff;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; background: var(--bg); color: #fff; font-family: "Verdana", "Trebuchet MS", system-ui, -apple-system, sans-serif; }
a { color: var(--neon-green); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1200px; margin: 0 auto; padding: 16px; }

/* Y2K vibes */
.banner {
  background: linear-gradient(135deg, var(--purple), #3a0066 40%, #0f0020);
  border: 4px double var(--neon-green);
  box-shadow: 0 0 24px rgba(0,255,156,0.4), inset 0 0 24px rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}
.sparkle {
  position: absolute; inset: 0;
  background: repeating-linear-gradient( 60deg, rgba(255,255,255,0.07) 0 2px, rgba(255,255,255,0.0) 2px 6px );
  pointer-events: none;
  animation: slide 12s linear infinite;
}
@keyframes slide { to { transform: translateX(200px); } }

.hero {
  position: relative;
  margin: 16px 0 8px;
  border: 4px double var(--purple);
  border-radius: 12px;
  overflow: hidden;
}
.hero img { width: 100%; height: auto; display: block; filter: contrast(1.05) saturate(1.2); }
.ribbon {
  position: absolute; left: 0; right: 0; top: 16px;
  text-align: center; font-weight: 900; letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #000, -2px -2px 0 #000;
  font-size: clamp(28px, 6vw, 72px);
  color: var(--neon-green);
}
.badges {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; align-items: center;
}
.badge {
  padding: 10px 14px; border-radius: 999px;
  border: 2px solid var(--neon-green);
  background: rgba(0,255,156,0.08);
  font-weight: 700; font-size: 14px;
}

/* quick actions for bookers */
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 12px 0 0; }
.btn {
  display: inline-block; padding: 12px 16px; border-radius: 12px;
  border: 2px solid var(--neon-green);
  background: linear-gradient(180deg, rgba(0,255,156,0.2), rgba(0,255,156,0.06));
  font-weight: 800; letter-spacing: 0.5px;
  box-shadow: 0 6px 0 #008f66, 0 0 18px rgba(0,255,156,0.35);
}
.btn:active { transform: translateY(2px); box-shadow: 0 4px 0 #008f66; }
.btn.secondary { border-color: var(--muted); box-shadow: 0 6px 0 #4a3d87, 0 0 18px rgba(122,60,255,0.35); }

.section {
  margin: 28px 0;
  background: linear-gradient(180deg, rgba(122,60,255,0.08), rgba(0,0,0,0));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
}
.section h2 {
  margin: 0 0 8px; font-size: 24px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px dashed rgba(255,255,255,0.15);
  padding-bottom: 6px;
}
.grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--card);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px;
  box-shadow: inset 0 0 18px rgba(122,60,255,0.15);
}

.footer {
  opacity: 0.8; font-size: 12px; margin: 28px 0 12px; text-align:center;
}

.embed { aspect-ratio: 16/9; width: 100%; border: 3px ridge var(--muted); border-radius: 8px; overflow: hidden; }
.embed iframe { width: 100%; height: 100%; border: 0; }

/* Print: Hide embeds for PDF cleanliness */
@media print {
  .embed, .actions .btn.secondary { display: none !important; }
  body { background: #fff; color: #000; }
  .banner, .hero { border-color: #000; box-shadow: none; }
  a { color: #000; }
  .footer { text-align: left; }
  .qr { display: inline-block !important; }
}
