*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #1E3A6E;
  --navy-mid: #2A4E8A;
  --navy-bg: #EEF4FF;
  --navy-border: #BDD0F5;
  --accent: #2563EB;
  --accent-light: #EFF6FF;
  --accent-border: #BFDBFE;
  --bg: #FFFFFF;
  --bg2: #F7F9FC;
  --border: #E2E8F0;
  --text: #1E3A6E;
  --text2: #3D5080;
  --text3: #8090B0;
  --green: #0D7A3A;
  --green-bg: #EDFAF3;
  --green-border: #A7DFC0;
  --shadow-md: 0 2px 8px rgba(15,31,61,0.08), 0 8px 32px rgba(15,31,61,0.06);
  --r: 12px;
}
html { scroll-behavior: smooth; }
body { background: var(--bg2); color: var(--text); font-family: 'DM Sans', sans-serif; font-weight: 400; line-height: 1.6; }

/* nav styles live in nav.css */

/* ============================================
   HERO — NEW LAYOUT: poster left, info right
   ============================================ */
.event-hero-wrap {
  max-width: 1100px; margin: 32px auto 0; padding: 0 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

/* Poster image — full height, no cropping */
.poster-col { position: sticky; top: 84px; }
.poster-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy);
  border: 1px solid var(--border);
}
.poster-wrap img {
  width: 100%; height: 520px; display: block;
  object-fit: contain;
  background: var(--navy);
}
.poster-badges {
  padding: 12px 14px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.poster-badge {
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  background: var(--navy-bg); color: var(--navy);
  border: 1px solid var(--navy-border); font-weight: 500;
}
.poster-badge.warning {
  background: #FFF7ED; color: #C2410C;
  border-color: #FED7AA;
}

/* Info column */
.info-col {}
.detail-tag { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.detail-title { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -1px; line-height: 1.1; margin-bottom: 10px; }
.detail-sub { font-size: 14px; color: var(--text2); line-height: 1.65; margin-bottom: 20px; }

/* Quick meta strip */
.meta-strip { display: flex; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; background: var(--bg); margin-bottom: 16px; }
.meta-item { flex: 1; padding: 12px 14px; border-right: 1px solid var(--border); }
.meta-item:last-child { border-right: none; }
.ml { font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text3); margin-bottom: 3px; }
.mv { font-size: 13px; font-weight: 500; color: var(--text); }

/* Going row */
.going-row { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.avs { display: flex; }
.av { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -7px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; }
.av:first-child { margin-left: 0; }
.av1{background:linear-gradient(135deg,#1E3A6E,#2A4E8A);}
.av2{background:linear-gradient(135deg,#0D7A3A,#0A5028);}
.av3{background:linear-gradient(135deg,#6D28D9,#4C1D95);}
.av4{background:linear-gradient(135deg,#B45309,#92400E);}
.av5{background:var(--bg2);color:var(--text3);font-size:9px;}
.going-text { font-size: 13px; color: var(--text2); margin-left: 10px; }
.going-text strong { color: var(--text); font-weight: 600; }
.going-btn { font-size: 12px; padding: 7px 14px; border-radius: 8px; border: 1px solid var(--green); background: var(--green-bg); color: var(--green); cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.going-btn.on { background: var(--green); color: #fff; }

/* Ticket card inline (in info col) */
.ticket-inline {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px; margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}
.t-from { font-size: 11px; color: var(--text3); margin-bottom: 2px; }
.t-price { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.5px; }
.price-tiers { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.price-tier { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; background: var(--bg2); border-radius: 8px; border: 1px solid var(--border); transition: all 0.2s; cursor: pointer; }
.price-tier:hover { border-color: var(--navy-border); background: var(--navy-bg); }
.pt-label { font-size: 12px; font-weight: 500; color: var(--text); }
.pt-note { font-size: 10px; color: var(--text3); }
.pt-price { font-size: 14px; font-weight: 700; color: var(--navy); }
.buy-btn { width: 100%; padding: 13px; background: var(--navy); color: #fff; border: none; border-radius: 10px; font-size: 14px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; margin-bottom: 7px; transition: background 0.2s, transform 0.15s; }
.buy-btn:hover { background: var(--navy-mid); transform: translateY(-1px); }
.more-btn { width: 100%; padding: 10px; background: transparent; color: var(--text); border: 1px solid var(--border); border-radius: 10px; font-size: 13px; font-family: 'DM Sans', sans-serif; cursor: pointer; margin-bottom: 12px; transition: all 0.2s; }
.more-btn:hover { background: var(--bg2); }

/* Share + notify in info col */
.share-row { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.share-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text3); flex: 1; }
.share-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; transition: all 0.2s; }
.share-btn:hover { background: var(--navy-bg); border-color: var(--navy-border); }
.share-block { background: var(--bg); border: 1.5px solid var(--navy-border); border-radius: var(--r); padding: 18px 16px; margin-bottom: 16px; }
.share-block-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.share-block-sub { font-size: 12px; color: var(--text3); margin-bottom: 14px; line-height: 1.5; }
.share-block-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.share-block-btns .sb-wa { grid-column: 1 / -1; }
.sb { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 14px; border-radius: 10px; border: none; font-size: 13px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.18s; text-decoration: none; }
.sb:hover { transform: translateY(-1px); }
.sb-wa { background: #25D366; color: #fff; }
.sb-wa:hover { background: #1ebe5d; }
.sb-fb { background: #1877F2; color: #fff; }
.sb-fb:hover { background: #0e6fd8; }
.sb-tw { background: #000; color: #fff; }
.sb-tw:hover { background: #222; }
.sb-copy { background: var(--bg2); color: var(--text2); border: 1px solid var(--border) !important; }
.sb-copy:hover { background: var(--navy-bg); border-color: var(--navy-border) !important; color: var(--navy); }
.sb-icon { font-size: 16px; line-height: 1; }

.divider { height: 1px; background: var(--border); margin: 14px 0; }
.det-row { display: flex; gap: 10px; margin-bottom: 10px; }
.det-icon { width: 28px; height: 28px; background: var(--navy-bg); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.det-label { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: var(--text3); margin-bottom: 2px; }
.det-val { font-size: 12px; color: var(--text); font-weight: 500; line-height: 1.3; }

.notify-box { background: var(--navy-bg); border: 1px solid var(--navy-border); border-radius: var(--r); padding: 13px; }
.n-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.n-sub { font-size: 12px; color: var(--text3); margin-bottom: 10px; line-height: 1.4; }
.n-row { display: flex; gap: 6px; }
.n-input { flex: 1; padding: 8px 12px; border: 1px solid var(--navy-border); border-radius: 8px; font-size: 12px; font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); outline: none; }
.n-input:focus { border-color: var(--navy); }
.n-btn { padding: 8px 14px; background: var(--navy); color: #fff; border: none; border-radius: 8px; font-size: 12px; cursor: pointer; font-family: 'DM Sans', sans-serif; white-space: nowrap; transition: background 0.2s; }
.n-btn:hover { background: var(--navy-mid); }

/* ============================================
   BOTTOM CONTENT — full width below hero
   ============================================ */
.content-wrap {
  max-width: 1100px; margin: 0 auto; padding: 32px 40px 0;
  display: grid; grid-template-columns: 1fr 340px; gap: 32px;
}

.sec { margin-bottom: 28px; }
.sec-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); letter-spacing: -0.3px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.sec-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.body-text { font-size: 14px; line-height: 1.75; color: var(--text2); }
.body-text p { margin-bottom: 12px; }
.body-text p:last-child { margin-bottom: 0; }

/* Artist card */
.artist-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 16px; display: flex; gap: 14px; }
.artist-av { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; color: #fff; flex-shrink: 0; }
.artist-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.artist-bio { font-size: 13px; color: var(--text2); line-height: 1.55; }
.a-tags { display: flex; gap: 5px; margin-top: 8px; flex-wrap: wrap; }
.a-tag { font-size: 10px; padding: 2px 8px; border-radius: 100px; background: var(--navy-bg); color: var(--navy); border: 1px solid var(--navy-border); }

/* Info notice */
.info-box { background: var(--accent-light); border: 1px solid var(--accent-border); border-radius: var(--r); padding: 13px 16px; display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.info-icon { font-size: 18px; }
.info-text { font-size: 13px; color: var(--navy); line-height: 1.5; }
.global-notice { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.global-notice .info-box { margin-bottom: 0; }

/* Videos */
.vid-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vid { aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; cursor: pointer; position: relative; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; background: var(--navy); }
.vid:hover { transform: scale(1.02); }
.vshine { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 40%, rgba(37,99,235,0.25), transparent 60%); }
.vid-em { font-size: 28px; position: relative; z-index: 1; }
.vid-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; background: rgba(15,31,61,0.3); }
.play-btn { width: 40px; height: 40px; background: rgba(255,255,255,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.vid-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 10px; background: linear-gradient(transparent,rgba(15,31,61,0.85)); color: #fff; font-size: 10px; z-index: 3; }
.vid-note { font-size: 12px; color: var(--text3); margin-top: 7px; font-style: italic; }
.vid-wrap { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 16/9; background: var(--navy); }
.vid-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.vid-unmute { position: absolute; bottom: 10px; right: 10px; z-index: 10; background: rgba(0,0,0,0.75); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 5px 12px; border-radius: 100px; font-size: 11px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; }
.vid-unmute:hover { background: rgba(0,0,0,0.9); }
.vid-label-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 10px; background: linear-gradient(transparent,rgba(15,31,61,0.85)); color: #fff; font-size: 10px; pointer-events: none; }

/* Transport */
.transport-list { display: flex; flex-direction: column; gap: 8px; }
.t-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 13px 15px; display: flex; gap: 12px; }
.t-icon { width: 36px; height: 36px; background: var(--navy-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.t-icon img { width: 22px; height: 22px; display: block; }
.t-title { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 2px; }
.t-desc { font-size: 12px; color: var(--text2); line-height: 1.5; }
.t-pill { display: inline-block; font-size: 10px; margin-top: 4px; padding: 2px 8px; border-radius: 100px; background: var(--green-bg); color: var(--green); border: 1px solid var(--green-border); }

/* Facilities */
.facility-list { display: flex; flex-direction: column; gap: 8px; }
.facility-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 13px 15px; display: flex; gap: 12px; }
.facility-card[onclick] { cursor: pointer; transition: border-color .2s ease, transform .2s ease; }
.facility-card[onclick]:hover { border-color: var(--gold); transform: translateY(-1px); }
.facility-icon { width: 36px; height: 36px; background: var(--navy-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.facility-title { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 2px; }
.facility-desc { font-size: 12px; color: var(--text2); line-height: 1.5; }

/* Map */
.map-box { width: 100%; background: linear-gradient(135deg, var(--bg), var(--navy-bg)); border: 1px solid var(--navy-border); border-radius: var(--r); padding: 18px; display: grid; grid-template-columns: 46px minmax(0, 1fr) auto; align-items: center; gap: 14px; cursor: pointer; transition: all 0.2s; margin-bottom: 8px; }
.map-box:hover, .map-box:focus-visible { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-2px); outline: none; }
.map-icon { width: 46px; height: 46px; background: var(--navy); color: #fff; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.map-content { flex: 1; min-width: 0; }
.map-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.map-address { font-size: 12px; color: var(--text2); line-height: 1.5; }
.map-action { background: var(--navy); color: #fff; border-radius: 9px; padding: 10px 13px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.map-action span { margin-left: 3px; }

/* Restaurants */
.resto-list { display: flex; flex-direction: column; gap: 8px; }
.resto-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 12px 14px; display: flex; align-items: flex-start; gap: 10px; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.resto-card:hover { border-color: var(--navy-border); background: var(--navy-bg); transform: translateX(3px); }
.resto-em { font-size: 20px; width: 36px; height: 36px; background: var(--bg2); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.resto-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.resto-detail { font-size: 12px; color: var(--text2); margin-bottom: 3px; }
.resto-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rdist { font-size: 10px; color: var(--accent); }
.rrating { font-size: 10px; color: var(--text3); }
.rstars { color: #E8A00C; }
.ropen { font-size: 10px; color: var(--green); background: var(--green-bg); border: 1px solid var(--green-border); padding: 1px 7px; border-radius: 100px; }
.rarrow { color: var(--text3); font-size: 14px; flex-shrink: 0; }
.resto-card:hover .rarrow { color: var(--accent); }

/* Bottom sidebar — venue details */
.bottom-sidebar {}
.venue-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 16px; margin-bottom: 14px; }
.venue-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.venue-detail { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 12px; }
.venue-summary-title { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text3); margin-bottom: 6px; font-weight: 800; }
.venue-summary { color: var(--text); margin-bottom: 6px; }
.venue-summary-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 10px; color: var(--text3); margin-bottom: 12px; }
.venue-summary-meta a { color: var(--navy); font-weight: 700; text-decoration: none; }
.venue-row { display: flex; gap: 8px; margin-bottom: 8px; align-items: flex-start; }
.venue-icon { width: 26px; height: 26px; background: var(--navy-bg); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.venue-text { font-size: 12px; color: var(--text2); }
.venue-facilities { border-top: 1px solid var(--border); margin-top: 12px; padding-top: 12px; }
.venue-facilities-title { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text3); margin-bottom: 8px; font-weight: 800; }
.seating-map { width: 100%; border-radius: 10px; border: 1px solid var(--border); display: block; margin-top: 12px; cursor: pointer; transition: opacity 0.2s; }
.seating-map:hover { opacity: 0.85; }

/* Related */
.related { max-width: 1100px; margin: 32px auto 0; padding: 32px 40px 60px; border-top: 1px solid var(--border); }
.rel-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.rel-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.4px; }
.rel-title span { color: var(--accent); }
.see-all { font-size: 13px; color: var(--accent); border-bottom: 1px solid var(--accent-border); cursor: pointer; text-decoration: none; }
.rel-scroll { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.rel-scroll::-webkit-scrollbar { height: 3px; }
.rel-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.rel-card { flex: 0 0 200px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; cursor: pointer; transition: all 0.25s; scroll-snap-align: start; text-decoration: none; display: block; }
.rel-card:hover { border-color: var(--navy-border); box-shadow: 0 4px 16px rgba(15,31,61,0.1); transform: translateY(-3px); }
.rel-thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 28px; position: relative; background: var(--navy); overflow: hidden; }
.rel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.rel-fallback { position: relative; z-index: 1; }
.rprice { position: absolute; bottom: 6px; left: 7px; background: rgba(15,31,61,0.75); color: rgba(255,255,255,0.9); font-size: 10px; padding: 2px 8px; border-radius: 100px; }
.rcity { position: absolute; top: 6px; right: 7px; background: rgba(255,255,255,0.92); color: var(--text2); font-size: 10px; padding: 2px 7px; border-radius: 100px; }
.rel-body { padding: 10px 12px 12px; }
.rel-promoter { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); opacity: 0.85; margin-bottom: 4px; }
.rel-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 6px; }
.rel-mrow { font-size: 11px; color: var(--text2); margin-bottom: 2px; }

/* Animations */
.fade-up { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.vis { opacity: 1; transform: translateY(0); }

/* Mobile */
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .event-hero-wrap { grid-template-columns: 1fr; padding: 0 16px; margin-top: 20px; gap: 20px; }
  .poster-col { position: static; }
  .poster-wrap img { height: auto; max-height: none; }
  .content-wrap { grid-template-columns: 1fr; padding: 20px 16px 0; }
  .bottom-sidebar { display: none; }
  .map-box { background: var(--bg); border-color: var(--border); padding: 13px 15px; display: flex; gap: 12px; }
  .map-box:hover, .map-box:focus-visible { border-color: var(--navy-border); background: var(--navy-bg); box-shadow: none; transform: translateX(3px); }
  .map-icon { width: 38px; height: 38px; background: var(--navy-bg); color: inherit; border-radius: 9px; font-size: 18px; }
  .map-name { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
  .map-address { line-height: 1.45; }
  .map-action { background: transparent; color: var(--accent); border-radius: 0; padding: 0; }
  .detail-title { font-size: 24px; }
  .vid-grid { grid-template-columns: 1fr; }
  .related { padding: 24px 16px 40px; }
  .global-notice { padding: 0 16px; }
}
