/* Container */
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

/* Hero */
.event-hero { position: relative; margin-bottom: 22px; }
.hero-media { position: relative; height: clamp(320px, 50vw, 560px); overflow: hidden; border-radius: 16px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.05) contrast(1.02); }
.hero-vignette { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.6)); }

.hero-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 18px 20px; color: #fff;
  display: grid; gap: 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.45) 48%, rgba(0,0,0,.6) 100%);
}
.event-title { font-size: clamp(26px, 3.2vw, 44px); margin: 0; line-height: 1.1; }
.event-sub { opacity: 0.95; display:flex; flex-wrap:wrap; gap:8px; align-items:center; font-size:1rem; }
.event-when.tbd { opacity: 0.85; font-style: italic; }
.dot { opacity: 0.8; }

.hero-actions { display:flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.btn { display:inline-flex; align-items:center; gap:8px; padding:10px 14px; border-radius:12px; border:1px solid #444; background:#191919; color:#f2f2f2; text-decoration:none; cursor:pointer; }
.btn:hover { background:#222; }
.btn.primary { background:#5a7cff; border-color:#5a7cff; color:#fff; }
.btn.primary:hover { filter: brightness(1.05); }
.btn.outline { background:transparent; }
.btn.ghost { background:transparent; border-style:dashed; }
.btn.soldout { background:#333; border-color:#555; color:#bbb; cursor:default; }
.btn.small { padding:6px 10px; font-size: 0.95rem; }
.btn.full { width: 100%; justify-content:center; }

/* Countdown */
.countdown { margin-top: 6px; background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 10px; max-width: 520px; }
.cd-label { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; opacity:.9; margin-bottom:6px; }
.cd-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:8px; }
.cd-val { font-size:1.3rem; font-weight:800; display:block; }
.cd-unit { font-size:.8rem; opacity:.8; }

/* Sticky buy bar */
.sticky-buy { position: sticky; top: 0; z-index: 20; margin-top: 12px; }
.sticky-inner { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:10px 12px; border:1px solid #333; border-radius:14px; background:rgba(18,18,18,0.85); backdrop-filter: blur(6px); }
.sticky-whenwhere { color:#eee; display:flex; gap:8px; align-items:center; }
.sticky-actions { display:flex; gap:8px; }

/* Body */
.event-body { margin: 20px 0 40px; }
.event-columns { display:grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; }
@media (max-width: 980px){ .event-columns { grid-template-columns: 1fr; } }

.event-info-cards { display:grid; gap:12px; grid-template-columns: 1fr 1fr; }
@media (max-width: 700px){ .event-info-cards { grid-template-columns: 1fr; } }

.info-card { background:#141414; border:1px solid #2b2b2b; border-radius:12px; padding:12px; color:#ddd; }
.info-card h3 { margin:0 0 6px; font-size:1.05rem; }

/* Side panels */
.panel { background:#151515; border:1px solid #2b2b2b; border-radius:12px; padding:12px; margin-bottom:12px; }
.panel h3 { margin:0 0 8px; }
.venue-name { font-weight:700; margin-bottom:4px; }
.muted { color:#aaa; }
.share-row { display:flex; gap:8px; flex-wrap:wrap; }
