/* gathered — Event-Seiten (programmatic SEO). Marken-Tokens = blog-styles.css. */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-card: #ffffff;
  --text: #111111;
  --text-muted: #52525b;
  --text-subtle: #a1a1aa;
  --primary: #ff6b00;
  --primary-soft: rgba(255, 107, 0, 0.10);
  --secondary: #ff8c33;
  --border: #ececec;
  --shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.04), 0 2px 8px rgba(17, 17, 17, 0.04);
  --shadow-md: 0 6px 24px rgba(17, 17, 17, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1080px;
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ── Nav ───────────────────────────────────────────────────────────────── */
.ev-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.ev-nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
.ev-logo { font-size: 22px; font-weight: 800; letter-spacing: -0.6px; }
.ev-nav-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--text-muted); }
.ev-nav-link:hover { color: var(--primary); }

/* ── Breadcrumbs ───────────────────────────────────────────────────────── */
.crumbs { font-size: 13px; color: var(--text-subtle); padding: 18px 0 4px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.crumbs a { color: var(--text-muted); font-weight: 500; }
.crumbs a:hover { color: var(--primary); }
.crumbs .sep { opacity: 0.5; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero { padding: 22px 0 8px; }
.hero h1 { font-size: clamp(30px, 6vw, 48px); font-weight: 800; letter-spacing: -1.4px; line-height: 1.08; }
.hero .lede { margin-top: 14px; font-size: clamp(16px, 2.4vw, 19px); color: var(--text-muted); max-width: 720px; }
.pill-live { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--primary); background: var(--primary-soft); padding: 5px 12px; border-radius: 100px; margin-bottom: 12px; }
.pill-live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 0 rgba(255,107,0,0.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,107,0,0.5); } 70% { box-shadow: 0 0 0 7px rgba(255,107,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); } }
@media (prefers-reduced-motion: reduce) { .pill-live::before { animation: none; } }

/* ── Sections ──────────────────────────────────────────────────────────── */
section.block { padding: 26px 0; }
.block h2 { font-size: clamp(21px, 3.4vw, 27px); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 4px; }
.block .sub { color: var(--text-subtle); font-size: 14px; margin-bottom: 18px; }

/* ── Category chips ────────────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 18px 0 4px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border: 1px solid var(--border); border-radius: 100px; font-size: 14px; font-weight: 600; background: var(--bg); transition: border-color .15s, transform .15s; }
.chip:hover { border-color: var(--primary); transform: translateY(-1px); }
.chip .n { color: var(--text-subtle); font-weight: 600; }
.chip-emoji { font-size: 15px; }

/* ── Event grid + card ─────────────────────────────────────────────────── */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-media { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(135deg, #ffe9d6, #fff4ea); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media .ph { width: 100%; height: 100%; display: grid; place-items: center; font-size: 40px; opacity: .6; }
.card-badge { position: absolute; top: 10px; left: 10px; font-size: 12px; font-weight: 700; color: #fff; padding: 4px 10px; border-radius: 100px; backdrop-filter: blur(4px); background: rgba(17,17,17,0.55); }
.card-price { position: absolute; top: 10px; right: 10px; font-size: 12px; font-weight: 700; color: var(--text); background: rgba(255,255,255,0.92); padding: 4px 10px; border-radius: 100px; }
.card-body { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-date { font-size: 13px; font-weight: 700; color: var(--primary); }
.card-title { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; line-height: 1.25; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 13px; color: var(--text-muted); padding-top: 6px; }
.card-venue { display: inline-flex; align-items: center; gap: 5px; min-width: 0; }
.card-venue span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-att { white-space: nowrap; font-weight: 600; color: var(--text-subtle); }

/* ── Stat block ────────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.stat { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 18px; }
.stat .k { font-size: 26px; font-weight: 800; letter-spacing: -0.8px; color: var(--text); }
.stat .l { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ── City tiles (country index) ────────────────────────────────────────── */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.tile { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); font-weight: 700; transition: border-color .15s, transform .15s; }
.tile:hover { border-color: var(--primary); transform: translateY(-2px); }
.tile .city { letter-spacing: -0.4px; }
.tile .cnt { font-size: 13px; color: var(--text-subtle); font-weight: 600; }
.tiles-dim .tile { opacity: .72; font-weight: 600; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq details { border-bottom: 1px solid var(--border); padding: 4px 0; }
.faq summary { cursor: pointer; list-style: none; padding: 16px 4px; font-weight: 700; font-size: 16px; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--primary); font-weight: 700; font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq .a { padding: 0 4px 16px; color: var(--text-muted); }

/* ── Nearby / link rows ────────────────────────────────────────────────── */
.linkrow { display: flex; flex-wrap: wrap; gap: 9px; }
.linkrow a { padding: 8px 14px; border: 1px solid var(--border); border-radius: 100px; font-size: 14px; font-weight: 600; color: var(--text-muted); transition: border-color .15s, color .15s; }
.linkrow a:hover { border-color: var(--primary); color: var(--primary); }

/* ── App CTA ───────────────────────────────────────────────────────────── */
.cta { margin: 30px 0 0; background: linear-gradient(135deg, #ff6b00 0%, #ff8c33 100%); border-radius: 24px; padding: 44px 28px; text-align: center; color: #fff; }
.cta h2 { font-size: clamp(24px, 4vw, 34px); font-weight: 800; letter-spacing: -0.8px; color: #fff; }
.cta p { margin-top: 8px; font-size: 16px; opacity: 0.95; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }
.store-btn { display: inline-flex; align-items: center; gap: 10px; background: #111; color: #fff; padding: 13px 20px; border-radius: 100px; font-weight: 700; font-size: 15px; transition: transform .15s, background .15s; }
.store-btn:hover { transform: translateY(-2px); background: #000; }
.store-btn .chev { opacity: .7; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.ev-footer { border-top: 1px solid var(--border); margin-top: 44px; padding: 32px 0; color: var(--text-subtle); font-size: 14px; }
.ev-footer .wrap { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.ev-footer a { color: var(--text-muted); font-weight: 500; }
.ev-footer a:hover { color: var(--primary); }
.ev-footer nav { display: flex; flex-wrap: wrap; gap: 16px; }

.notice { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 20px; color: var(--text-muted); font-size: 15px; }

/* ── GEO highlights (extractable answer list) ──────────────────────────── */
.answer { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.highlights { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.highlights li { padding: 12px 16px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 15px; color: var(--text-muted); }
.highlights li strong { color: var(--text); font-weight: 700; }
.updated { font-size: 13px; color: var(--text-subtle); margin-top: 10px; }

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .cta { border-radius: 18px; padding: 34px 20px; }
}
