@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.is-aerial {
  background: #050a14;
  color: #d0e8f8;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Animated background ── */
.ae-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 30% 20%, #0a1a3a 0%, #050a14 60%);
  overflow: hidden;
}

/* rope line */
.ae-rope-line {
  position: absolute;
  top: 0; left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0,200,255,0.3) 20%, rgba(0,200,255,0.1) 80%, transparent);
  transform: translateX(-50%);
}

/* fog layers */
.ae-fog {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.06;
}
.ae-fog--1 {
  width: 600px; height: 400px;
  background: #0060ff;
  top: 10%; left: -10%;
  animation: drift1 18s ease-in-out infinite alternate;
}
.ae-fog--2 {
  width: 500px; height: 300px;
  background: #00c8ff;
  bottom: 20%; right: -5%;
  animation: drift2 22s ease-in-out infinite alternate;
}
@keyframes drift1 { from{transform:translate(0,0)} to{transform:translate(80px,40px)} }
@keyframes drift2 { from{transform:translate(0,0)} to{transform:translate(-60px,30px)} }

/* ── Wrapper ── */
.ae-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 2rem 1rem;
}

/* ── Glass card ── */
.glass-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,200,255,0.15);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 8px 48px rgba(0,100,200,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

/* ── Logo ── */
.ae-logo {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,200,255,0.6);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

/* ── Carabiner SVG ── */
.ae-carabiner {
  width: 60px;
  height: 80px;
  filter: drop-shadow(0 0 8px rgba(0,200,255,0.6));
  animation: sway 3s ease-in-out infinite;
}
@keyframes sway {
  0%,100%{transform:rotate(-4deg)} 50%{transform:rotate(4deg)}
}

.ae-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00c8ff;
}
.ae-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.ae-location { font-size: 0.9rem; color: rgba(208,232,248,0.55); }

.ae-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00c8ff, transparent);
  margin: 0.5rem auto;
}

/* ── Body text ── */
.ae-body { line-height: 1.8; text-align: left; font-size: 0.95rem; color: rgba(208,232,248,0.9); }
.ae-body p { margin-bottom: 0.8rem; }
.ae-body a { color: #00c8ff; }

/* ── Labels ── */
.ae-labels { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; margin-top: 0.5rem; }
.label-tag {
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.25);
  color: #7de8ff;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-decoration: none;
  transition: background 0.2s;
}
.label-tag:hover { background: rgba(0,200,255,0.2); }

@media (max-width: 380px) {
  .glass-card { padding: 2rem 1.2rem; }
  .ae-title { font-size: 2rem; }
}

/* ── Lightbox ── */
#lightbox{display:none;position:fixed;inset:0;background:rgba(0,0,0,.9);
  z-index:9999;align-items:center;justify-content:center;
  flex-direction:column;gap:.5rem}
#lightbox img{max-width:90vw;max-height:80vh;object-fit:contain}
.lb-close{position:fixed;top:1rem;right:1.5rem;font-size:2.5rem;
  color:#fff;cursor:pointer;line-height:1;opacity:.8}
.lb-close:hover{opacity:1}
.lb-nav{position:fixed;top:50%;transform:translateY(-50%);font-size:3rem;
  color:#fff;cursor:pointer;padding:.5rem;user-select:none;opacity:.7}
.lb-nav:hover{opacity:1}
.lb-prev{left:1rem}.lb-next{right:1rem}
.lb-caption{color:#ccc;font-size:.9rem;text-align:center;max-width:80vw}

/* ── Collection links ── */
nav.event-collections{display:flex;flex-wrap:wrap;gap:.5rem 1rem;padding:1rem 1.5rem;border-top:1px solid rgba(128,128,128,.2);font-family:var(--font-head,sans-serif);font-size:.82rem}
nav.event-collections .ec-link{color:var(--accent,#888);text-decoration:none;opacity:.8;transition:opacity .2s}
nav.event-collections .ec-link:hover{opacity:1}
