
:root {
  --pink: #ff2dac;
  --pink-strong: #ff149d;
  --pink-deep: #9b005f;
  --gold: #ffd46b;
  --silver: #f4f4f6;
  --ice: #7ee7ff;
  --ink: #050505;
  --panel: rgba(10, 10, 16, .78);
  --panel-solid: #0c0b12;
  --text: #fff7fe;
  --muted: #d9c8d7;
  --line: rgba(255,255,255,.18);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.18), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(255,45,172,.15), transparent 22%),
    radial-gradient(circle at 50% 90%, rgba(255,214,102,.10), transparent 26%),
    radial-gradient(circle at 12% 78%, rgba(126,231,255,.08), transparent 24%),
    #050505;
  overflow-x: hidden;
}
body::before, body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}
body::before {
  z-index: -2;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255,45,172,.55) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255,215,120,.45) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255,255,255,.2) 0 5px, transparent 5.5px);
  background-size: 90px 90px, 140px 140px, 210px 210px, 310px 310px;
  opacity: .28;
  animation: premium-sparkle-drift 18s linear infinite;
}
body::after {
  z-index: -3;
  background:
    radial-gradient(ellipse at top, rgba(255,45,172,.09), transparent 54%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,0) 24%);
}
@keyframes premium-sparkle-drift { from { transform: translate3d(0,0,0); } to { transform: translate3d(-70px, -90px, 0); } }
@keyframes shimmer-sweep { 0%, 60% { transform: translateX(-70%); } 100% { transform: translateX(70%); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 30px rgba(255,45,172,.22), 0 0 60px rgba(255,255,255,.08); } 50% { box-shadow: 0 0 46px rgba(255,45,172,.34), 0 0 82px rgba(255,255,255,.13); } }
.site-shell { position: relative; z-index: 1; }
a { color: #fff; text-underline-offset: 4px; }
a:hover { color: #ffe4f7; }
main { width: min(100% - 28px, var(--max)); margin: 0 auto; }
.hero { padding: clamp(10px, 2vw, 22px) 0 clamp(32px, 6vw, 72px); display: grid; gap: clamp(22px, 3vw, 34px); }
.hero-copy { text-align: center; max-width: 920px; margin: 0 auto; padding: clamp(12px, 2vw, 24px); }
.eyebrow, .guest-banner__eyebrow { margin: 0 0 8px; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 900; color: #ffd8f1; }
h1, h2, h3 { line-height: 1.06; margin: 0 0 14px; }
h1 { font-size: clamp(2.4rem, 8vw, 5.9rem); letter-spacing: -.055em; text-shadow: 0 0 28px rgba(255,45,172,.45); }
h2 { font-size: clamp(1.75rem, 4vw, 3.2rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { margin: 0 0 14px; color: var(--muted); }
strong { color: #fff; }
.metallic-neon-silver {
  color: #d8d8d8;
  background: linear-gradient(90deg, #8f8f8f, #ffffff, #bfc3c7, #f6f6f6, #7f7f7f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 6px rgba(255,255,255,.55), 0 0 18px rgba(210,220,230,.38);
  letter-spacing: .02em;
  font-size: clamp(1.08rem, 2.4vw, 1.6rem);
  font-weight: 800;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }
.button, .guest-banner__button, .back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.25);
  transition: transform .22s ease, box-shadow .22s ease;
}
.button:hover, .guest-banner__button:hover, .back-link:hover { transform: translateY(-2px); color: inherit; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--pink), #e00086); box-shadow: 0 10px 28px rgba(255,45,172,.28); }
.button-secondary, .back-link { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); }
.image-frame {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
  border-radius: clamp(20px, 4vw, 38px);
  padding: clamp(6px, 1vw, 10px);
  background: linear-gradient(135deg, rgba(255,45,172,.9), rgba(255,255,255,.62), rgba(255,45,172,.72));
  box-shadow: 0 0 32px rgba(255,45,172,.42), 0 0 86px rgba(255,45,172,.16);
  overflow: hidden;
}
.image-frame img, .visual-stack img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.image-frame img { border-radius: calc(clamp(20px, 4vw, 38px) - 10px); background: #060606; }
.hero-main-image, .hero img:first-child { display: block; width: 100%; height: auto; margin-left: auto; margin-right: auto; object-fit: contain; object-position: center center; }
.premium-shimmer { position: relative; overflow: hidden; animation: pulse-glow 6s ease-in-out infinite; }
.premium-shimmer::after {
  content: "";
  position: absolute;
  inset: -42%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.34) 50%, transparent 62%);
  transform: translateX(-60%);
  animation: shimmer-sweep 7s ease-in-out infinite;
}
.visual-intro { padding-bottom: clamp(34px, 6vw, 72px); }
.secondary-frame { width: min(100%, 1080px); }
.section { margin: 0 auto clamp(38px, 7vw, 86px); }
.card-section, .text-panel, .legal-card {
  background: linear-gradient(180deg, rgba(18,16,24,.88), rgba(8,7,12,.82));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: clamp(22px, 4vw, 36px);
  box-shadow: 0 20px 90px rgba(0,0,0,.36), 0 0 42px rgba(255,45,172,.08);
  backdrop-filter: blur(14px);
}
.card-section { padding: clamp(18px, 4vw, 46px); }
.text-panel { padding: clamp(22px, 4vw, 50px); max-width: 990px; }
.section-heading { text-align: center; max-width: 920px; margin: 0 auto clamp(24px, 4vw, 46px); }
.visual-stack { display: grid; gap: clamp(18px, 4vw, 34px); }
.neon-card-img, .feature-strip, .icon-tile, .pillars-grid img {
  border-radius: 22px;
  box-shadow: 0 0 22px rgba(255,45,172,.12), 0 16px 45px rgba(0,0,0,.32);
}
.event-intro-img, .event-options-stack { width: min(100%, 980px); margin: 0 auto; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 2.5vw, 24px); align-items: start; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 2.5vw, 24px); align-items: start; }
.icon-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 2.5vw, 24px); align-items: start; }
.guest-banner {
  width: min(100%, 1040px);
  margin: 0 auto clamp(38px, 7vw, 88px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(16px, 3vw, 26px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border-radius: clamp(24px, 5vw, 42px);
  background: linear-gradient(135deg, #ff4fbb, #e31594 45%, #ff86d3);
  box-shadow: 0 18px 70px rgba(255,45,172,.31), inset 0 0 30px rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.32);
}
.guest-banner__icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); color: #fff; font-size: 2rem; box-shadow: inset 0 0 20px rgba(255,255,255,.14); }
.guest-banner h2 { margin-bottom: 4px; }
.guest-banner p { color: rgba(255,255,255,.91); }
.guest-banner__lead { font-size: 1.12rem; font-weight: 900; }
.guest-banner__button { color: #d3138e; background: #fff; box-shadow: 0 8px 24px rgba(255,255,255,.22); white-space: nowrap; }
.legal-page { max-width: 1040px; padding-bottom: 60px; }
.legal-card { padding: clamp(22px, 4vw, 58px); margin-top: 18px; }
.legal-card h1 { font-size: clamp(2.1rem, 5vw, 4rem); }
.legal-card h2 { margin-top: 30px; font-size: clamp(1.25rem, 2.5vw, 1.8rem); color: #fff; }
.legal-card ul { color: var(--muted); padding-left: 1.4rem; }
.legal-card li { margin: 0 0 8px; }
.back-link { margin: 8px 0 12px; }
.site-footer {
  width: min(100% - 28px, var(--max));
  margin: clamp(34px, 7vw, 80px) auto 0;
  padding: clamp(24px, 4vw, 42px) 20px;
  text-align: center;
  color: rgba(255,255,255,.85);
  background: linear-gradient(180deg, rgba(8,8,12,.98), rgba(0,0,0,.95));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -12px 55px rgba(255,45,172,.10);
}
.site-footer p { margin: 6px auto; max-width: 940px; color: rgba(255,255,255,.76); }
.footer-brand { color: #fff !important; font-weight: 800; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 10px; margin: 14px auto; line-height: 1.35; }
.footer-links a { text-decoration: none; font-weight: 800; color: #fff; }
#events, #about-us, #code-of-conduct, #guest-list { scroll-margin-top: 150px; }
@media (max-width: 960px) { .pillars-grid, .icon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) {
  main { width: min(100% - 20px, var(--max)); }
  h1 { font-size: clamp(2.3rem, 13vw, 4rem); }
  .hero { padding-top: 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .feature-grid, .pillars-grid, .icon-grid { grid-template-columns: 1fr; }
  .guest-banner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .guest-banner__button { width: 100%; }
  .text-panel, .card-section, .legal-card { border-radius: 24px; }
  #events, #about-us, #code-of-conduct, #guest-list { scroll-margin-top: 230px; }
  .footer-links { gap: 6px 9px; }
  .footer-links a { overflow-wrap: anywhere; }
}
@media (max-width: 480px) {
  .hero-copy { padding-left: 0; padding-right: 0; }
  .image-frame { border-radius: 22px; padding: 5px; }
  .site-footer { width: min(100% - 20px, var(--max)); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
