/* ============================================================
   IWAN — Design System
   ============================================================ */
:root {
  --bg: #07100e;            /* page background — deep teal-tinted black */
  --surface: #0d1a17;       /* cards / panels */
  --surface-2: #12221e;     /* raised surfaces */
  --ink: #e6f0ee;           /* primary text */
  --ink-soft: #a3b8b3;      /* secondary text */
  --ink-faint: #5d7570;     /* muted text */
  --line: #223832;          /* borders */
  --brand: #35ac9a;         /* TicketSearch sales platform primary teal */
  --brand-dark: #2b9687;
  --brand-soft: rgba(53, 172, 154, 0.14);
  --deep: #000303;          /* near-black — sales platform header/menu */
  --deep-2: #0a1211;
  --accent: #22c9af;        /* bright mint — sales platform hover/filter */
  --ok: #2dd4a7;
  --ok-bg: rgba(45, 212, 167, 0.12);
  --warn-bg: rgba(251, 191, 36, 0.1);
  --warn-line: rgba(251, 191, 36, 0.35);
  --warn-ink: #fcd34d;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: "Sora", "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 15px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.2; letter-spacing: -0.02em; }
.eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand);
}
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); }
.section-head p { color: var(--ink-soft); margin-top: 6px; max-width: 560px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; transition: all 0.18s ease; white-space: nowrap;
}
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(53, 172, 154, 0.35); }
.btn-outline { border-color: var(--line); background: var(--surface); color: var(--ink); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: var(--deep); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-light { background: #fff; color: var(--deep); }
.btn-light:hover { background: var(--accent); color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

.nav-search-wrap { position: relative; }

/* ---------- Search panel (Klook-style) ---------- */
.search-panel {
  position: absolute; top: calc(100% + 12px); right: 0;
  width: 680px; max-width: calc(100vw - 60px);
  background: linear-gradient(180deg, rgba(53,172,154,0.12), var(--surface) 110px), var(--surface);
  border: 1px solid rgba(255,255,255,0.16); border-radius: 18px; box-shadow: 0 24px 70px rgba(0,0,0,0.7);
  z-index: 300; padding: 20px 20px 28px; color: var(--ink); text-align: left;
  max-height: 620px; overflow-y: auto;
}
@media (max-height: 800px) { .search-panel { max-height: calc(100vh - 110px); } }
.search-panel[hidden] { display: none; }
.search-panel::-webkit-scrollbar { width: 8px; }
.search-panel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.sp-section { margin-bottom: 18px; }
.sp-section:last-child { margin-bottom: 0; }
.sp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.sp-title { font-family: var(--display); font-weight: 700; font-size: 15px; }
.sp-col .sp-title { font-size: 12.5px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.08em; }
.sp-clear { border: none; background: none; color: var(--ink-faint); font-size: 15px; padding: 4px 7px; border-radius: 8px; line-height: 1; }
.sp-clear:hover { background: var(--bg); color: var(--ink); }
.sp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sp-chip {
  border: 1px solid var(--line); background: var(--bg); border-radius: 999px;
  padding: 8px 16px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); transition: all 0.15s;
}
.sp-chip:hover { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }

.sp-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; border-top: 1px solid var(--line); padding-top: 16px; }
.sp-ranks { display: grid; gap: 2px; }
.rank-item {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 7px 10px; border: none; background: none; border-radius: 12px; cursor: pointer;
  justify-content: space-between;
}
.rank-item:hover { background: var(--brand-soft); }
/* stacked variant for destination rows: tags flow under the name */
.rank-item-stack { align-items: flex-start; }
.rank-main { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.rank-main .rank-info { width: 100%; }
.rank-main .rank-tags { justify-content: flex-start; max-width: 100%; padding-top: 1px; }
.rank-thumb {
  position: relative; flex: 0 0 auto; width: 48px; height: 48px; border-radius: 10px;
  display: grid; place-items: center; font-size: 20px; overflow: hidden;
}
.rank-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rank-no {
  position: absolute; top: -4px; left: -4px; width: 18px; height: 18px; border-radius: 6px;
  background: var(--deep); color: #fff; font-size: 10.5px; font-weight: 700;
  display: grid; place-items: center; border: 2px solid #fff;
}
.rank-info { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.rank-info b { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rank-info span { font-size: 12px; color: var(--ink-soft); }
.rank-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; max-width: 170px; }
.rank-tags i {
  font-style: normal; font-size: 11px; font-weight: 600; color: var(--brand);
  background: var(--brand-soft); padding: 2px 8px; border-radius: 999px; white-space: nowrap;
}

/* live suggestions while typing */
.sp-live-list { display: grid; gap: 2px; }
.live-group { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); padding: 8px 10px 4px; }
.live-item {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 9px 10px; border: none; background: none; border-radius: 12px; cursor: pointer; font-size: 14px;
}
.live-item:hover { background: var(--brand-soft); }
.live-item b { font-weight: 600; }
.live-thumb {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center; font-size: 20px; overflow: hidden; position: relative;
}
.live-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.live-thumb-term { background: var(--bg); font-size: 15px; }
.live-seeall {
  display: block; width: 100%; margin-top: 10px; padding: 11px; text-align: center;
  border: 1px dashed var(--line); border-radius: 12px; background: none;
  font-weight: 600; font-size: 13.5px; color: var(--brand); cursor: pointer; transition: all 0.15s;
}
.live-seeall:hover { background: var(--brand-soft); border-color: var(--brand); }

.rank-item:focus-visible, .live-item:focus-visible, .sp-chip:focus-visible { outline: 2px solid var(--brand); outline-offset: -2px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0, 3, 3, 0.92); backdrop-filter: blur(14px);
  color: #fff; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav { display: flex; align-items: center; gap: 28px; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.12; }
.logo-name { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; }
.logo-tag { font-family: var(--font); font-weight: 500; font-size: 11px; letter-spacing: 0.08em; color: #8b93a7; white-space: nowrap; }
.logo img.logo-img { height: 30px; width: auto; }
.logo .ticket {
  width: 34px; height: 24px; border-radius: 6px; background: var(--brand);
  display: grid; place-items: center; font-size: 13px; color: #fff;
  box-shadow: 0 4px 14px rgba(53,172,154,0.5);
}
.nav-links { display: flex; gap: 4px; margin-left: 8px; }
.nav-links a { padding: 9px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: #d7dbe6; transition: all 0.15s; }
.nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-links a.active { background: rgba(255,255,255,0.14); color: #fff; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-search {
  display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 5px 5px 5px 16px; width: 430px;
}
.nav-search input { background: none; border: none; outline: none; color: #fff; flex: 1; min-width: 0; font-size: 14px; padding: 5px 0; line-height: 1.2; }
.nav-search input::placeholder { color: #8b93a7; }
.ns-icon { font-size: 14px; opacity: 0.85; }
.ns-btn {
  border: none; background: var(--brand); color: #fff; font-weight: 700; font-size: 13.5px;
  padding: 10px 18px; border-radius: 999px; white-space: nowrap; transition: background 0.15s;
}
.ns-btn:hover { background: var(--brand-dark); }
@media (max-width: 1150px) { .nav-search { width: 350px; } }
.nav-cart { position: relative; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.1); font-size: 17px; }
.nav-cart .count {
  position: absolute; top: -4px; right: -4px; min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--brand); color: #fff; border-radius: 999px; font-size: 11px; font-weight: 700;
  display: grid; place-items: center; border: 2px solid var(--deep);
}
/* header location / language (Fantopia-style) */
.nav-burger { display: none; background: none; border: none; color: #fff; font-size: 22px; }
.nav-loc { display: flex; align-items: center; gap: 12px; }
.loc-pill, .lang-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 7px 12px;
}
.loc-pill select, .lang-pill select {
  background: none; border: none; outline: none; color: #fff; font-size: 13px; font-weight: 600;
  cursor: pointer; appearance: none; -webkit-appearance: none; padding-right: 16px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23aab8c2' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right center;
}
.loc-pill .loc-ico { font-size: 13px; opacity: 0.9; }
@media (max-width: 1180px) { .nav-loc { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(53,172,154,0.55), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(34,201,175,0.28), transparent 55%),
    linear-gradient(160deg, var(--deep) 0%, var(--deep-2) 60%, #101a18 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 26px 26px; mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.hero .container { position: relative; z-index: 1; padding: 84px 22px 96px; }
.hero-visual { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); width: 330px; }
.hero-ticket {
  background: var(--surface); color: var(--ink); border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5); transform: rotate(3deg); animation: floaty 6s ease-in-out infinite;
}
.hero-ticket .ht-head { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 700; color: var(--ink-faint); letter-spacing: 0.1em; margin-bottom: 12px; }
.hero-ticket .ht-head .brand { color: var(--brand); }
.hero-ticket .ht-emoji { font-size: 34px; margin-bottom: 8px; }
.hero-ticket .ht-title { font-family: var(--display); font-weight: 800; font-size: 16.5px; line-height: 1.3; margin-bottom: 12px; }
.hero-ticket .ht-meta { display: grid; gap: 5px; font-size: 12.5px; color: var(--ink-soft); margin-bottom: 14px; }
.hero-ticket .ht-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1.5px dashed var(--line); padding-top: 12px; }
.hero-ticket .ht-foot .price { font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--brand); }
.hero-ticket .ht-foot .btn { padding: 8px 16px; font-size: 13px; }
.hero-ticket .ht-perf { width: 52px; height: 52px; border-radius: 8px; display: grid; place-items: center; font-size: 24px; }
@keyframes floaty { 0%,100% { transform: rotate(3deg) translateY(0); } 50% { transform: rotate(3deg) translateY(-12px); } }
.hero-ticket-back {
  position: absolute; inset: 14px -14px -14px 14px; border-radius: 18px; opacity: 0.55; filter: blur(2px); z-index: -1;
}
@media (max-width: 1080px) { .hero-visual { display: none; } }
.hero h1 { font-size: clamp(34px, 5vw, 56px); max-width: 640px; margin: 16px 0 18px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p.lead { font-size: 17.5px; color: #c9cfdd; max-width: 540px; margin-bottom: 30px; }
.hero-stats { display: flex; gap: 40px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stats .stat b { font-family: var(--display); font-size: 17px; letter-spacing: 0.08em; color: #fff; }
.hero-stats .stat span { color: #9aa8b4; font-size: 13.5px; }

/* trust badges (mirrors myticket.asia) */
.trust-bar { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.trust-item { background: var(--surface); padding: 26px 28px; display: flex; gap: 16px; align-items: flex-start; }
.trust-item .icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); font-size: 20px;
}
.trust-item h3 { font-size: 15.5px; margin-bottom: 4px; }
.trust-item p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Event cards (Fantopia-style poster cards) ---------- */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(236px, 1fr)); gap: 18px; }
.event-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.55), 0 0 0 1px rgba(53,172,154,0.28); }
.event-thumb { position: relative; aspect-ratio: 1/1; display: grid; place-items: center; font-size: 44px; }
.art-emoji { font-size: 50px; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35)); }
.onsale-badge {
  position: absolute; top: 0; left: 0;
  background: linear-gradient(135deg, #ff5f3d, #ff9d2e);
  color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 11px; border-radius: 0 0 10px 0;
  box-shadow: 0 6px 16px rgba(255, 90, 50, 0.35); z-index: 2;
}
.event-thumb .cat-pill {
  position: absolute; top: 11px; right: 11px; background: rgba(0,3,3,0.72); color: #fff;
  font-size: 10px; font-weight: 600; padding: 4px 9px; border-radius: 999px; backdrop-filter: blur(4px);
}
.event-body { padding: 13px 15px 15px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.event-body h3 { font-size: 14px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.event-meta-line { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: #aec4be; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.event-meta-line .m-ico { font-size: 12px; opacity: 0.85; flex: 0 0 auto; }
.event-body .price { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px dashed rgba(255,255,255,0.14); }
.event-body .price b { font-family: var(--display); font-size: 15px; color: var(--brand); }
.event-body .price span { font-size: 11.5px; color: var(--ink-soft); }
.link-arrow { font-size: 12px; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 5px; }
.link-arrow:hover { gap: 9px; transition: gap 0.15s; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-deep { background: var(--deep); color: #fff; }

/* categories */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; padding: 26px 22px; color: #fff;
  min-height: 130px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform 0.2s;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card .emoji { font-size: 30px; margin-bottom: 8px; }
.cat-card h3 { font-size: 18px; }
.cat-card span { font-size: 13px; opacity: 0.85; }

/* ---------- Event detail page ---------- */
.event-hero { position: relative; color: #fff; }
.event-hero .cover { position: absolute; inset: 0; }
.event-hero .cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,3,3,0.94) 0%, rgba(0,3,3,0.45) 60%, rgba(0,3,3,0.55) 100%); }
.event-hero .container { position: relative; z-index: 1; padding: 110px 22px 56px; }
.event-hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 48px; align-items: center; }
.event-hero .crumbs { font-size: 13px; color: #c9cfdd; margin-bottom: 18px; }
.event-hero .crumbs a:hover { color: #fff; }
.event-hero h1 { font-size: clamp(28px, 4.4vw, 46px); max-width: 760px; margin: 12px 0 18px; }
.event-meta { display: flex; flex-wrap: wrap; gap: 12px 26px; font-size: 14.5px; color: #dfe3ee; }
.event-meta .m { display: flex; align-items: center; gap: 8px; }

/* hero poster (main visual on the right) */
.event-poster { position: relative; justify-self: end; width: min(100%, 340px); }
.event-poster img {
  display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.event-poster .poster-fallback {
  display: grid; place-items: center; width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.28); box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.event-poster .poster-fallback span { font-size: 64px; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35)); }
.event-poster .poster-price {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(0,3,3,0.85); backdrop-filter: blur(6px); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 14px;
  padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.22);
}

.event-layout { display: grid; grid-template-columns: 1fr 400px; gap: 34px; padding: 46px 0 70px; align-items: start; }
.event-article h2 { font-size: 22px; margin: 30px 0 12px; }
.event-article p { color: var(--ink-soft); font-size: 15.5px; }
.event-article .lead-p { color: var(--ink); font-size: 16.5px; }

/* ticket box */
.ticket-box {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); position: sticky; top: 88px; overflow: hidden;
}
.ticket-box .box-head { background: var(--deep); color: #fff; padding: 16px 22px; font-family: var(--display); font-weight: 700; font-size: 17px; }
.ticket-row { padding: 16px 22px; border-bottom: 1px dashed var(--line); }
.ticket-row:last-of-type { border-bottom: none; }
.ticket-row .t-name { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.ticket-row .t-name b { font-size: 15.5px; }
.ticket-row .t-name .t-price { color: var(--brand); font-family: var(--display); font-weight: 700; font-size: 16px; }
.ticket-row .t-note { font-size: 12.5px; color: var(--ink-faint); margin: 3px 0 10px; }
.qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: 999px; width: fit-content; }
.qty button { width: 34px; height: 34px; background: none; border: none; font-size: 17px; color: var(--ink); border-radius: 50%; }
.qty button:hover { background: var(--brand-soft); color: var(--brand); }
.qty .val { min-width: 34px; text-align: center; font-weight: 700; font-size: 15px; }
.ticket-total { padding: 18px 22px; background: var(--bg); display: flex; justify-content: space-between; align-items: center; }
.ticket-total .lbl { font-size: 13.5px; color: var(--ink-soft); }
.ticket-total .amt { font-family: var(--display); font-size: 26px; font-weight: 800; color: var(--brand); }
.ticket-box .box-foot { padding: 0 22px 22px; display: grid; gap: 10px; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12.5px; color: var(--ink-faint); padding-top: 2px; }

/* share (mirrors myticket.asia share row) */
.share-row { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.share-btn {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); background: var(--surface); font-size: 16px; transition: all 0.15s;
}
.share-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--ink); }
.share-row.dark .share-btn { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.38); color: #fff; backdrop-filter: blur(4px); }
.share-row.dark .share-btn:hover { background: rgba(255,255,255,0.24); border-color: #fff; }

/* info grid */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 8px; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; }
.info-card .lbl { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin-bottom: 5px; }
.info-card .val { font-size: 14.5px; font-weight: 600; }

/* ---------- Events listing ---------- */
.page-head { padding: 34px 0 4px; }
.page-head h1 { font-size: clamp(26px, 3.4vw, 38px); }
.page-head .eyebrow { margin-bottom: 6px; display: inline-block; }
.filter-bar {
  background: var(--surface); border-bottom: 1px solid var(--line);
  position: sticky; top: 68px; z-index: 40; padding: 14px 0;
}
.filter-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.page-search-wrap { position: relative; flex: 1 1 auto; min-width: 260px; display: flex; }
.page-search-wrap .search-box { width: 100%; }
.search-panel--left { right: auto; left: 0; }
.search-box {
  flex: 1; min-width: 260px; display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 5px 5px 18px; background: var(--surface);
  box-shadow: 0 1px 2px rgba(16,24,40,0.04);
}
.search-box input { border: none; outline: none; background: none; flex: 1; min-width: 0; padding: 9px 0; }
.search-box input::placeholder { color: var(--ink-faint); }
.fs-btn {
  border: none; background: var(--brand); color: #fff; font-weight: 700; font-size: 14px;
  padding: 11px 24px; border-radius: 999px; white-space: nowrap; transition: background 0.15s;
}
.fs-btn:hover { background: var(--brand-dark); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface);
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft); transition: all 0.15s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.results-info { color: var(--ink-faint); font-size: 13.5px; margin: 26px 0 18px; }
.query-bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 26px 0 14px; }
.query-bar[hidden] { display: none; }
.query-bar .q-label { font-size: 13.5px; color: var(--ink-faint); }
.q-chip {
  display: inline-flex; align-items: center; gap: 9px; background: var(--brand-soft); color: var(--brand);
  border-radius: 999px; padding: 8px 14px; font-weight: 700; font-size: 13.5px;
}
.q-chip button { border: none; background: none; color: var(--brand); font-size: 14px; line-height: 1; padding: 2px 4px; border-radius: 50%; }
.q-chip button:hover { background: rgba(53,172,154,0.2); }
.query-bar .related { display: flex; gap: 8px; flex-wrap: wrap; margin-left: auto; }
.query-bar .related .chip { padding: 8px 15px; font-size: 12.5px; background: var(--surface); }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink); outline: none; transition: border 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); }
.field .hint { font-size: 12px; color: var(--ink-faint); margin-top: 5px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.field.error input { border-color: var(--brand); }
.field .err-msg { display: none; font-size: 12px; color: var(--brand); margin-top: 5px; }
.field.error .err-msg { display: block; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 34px; padding: 44px 0 70px; align-items: start; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; margin-bottom: 22px; }
.panel h3 { font-size: 18px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.panel h3 .step {
  width: 26px; height: 26px; border-radius: 50%; background: var(--deep); color: #fff; font-size: 13px;
  display: grid; place-items: center; font-family: var(--display);
}
.pay-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.pay-tab {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 14px 10px; text-align: center;
  background: var(--surface); font-size: 13px; font-weight: 600; color: var(--ink-soft); transition: all 0.15s;
}
.pay-tab .pay-icon { font-size: 22px; display: block; margin-bottom: 5px; }
.pay-tab.active { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }
.pay-panel { display: none; }
.pay-panel.active { display: block; }
.bank-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bank { border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px; text-align: center; font-weight: 600; font-size: 12.5px; background: var(--surface); transition: all 0.15s; }
.bank:hover { border-color: var(--ink); }
.bank.selected { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }
.ewallet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ewallet { border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 14px 8px; text-align: center; font-size: 12.5px; font-weight: 600; background: var(--surface); }
.ewallet .pay-icon { font-size: 24px; display: block; margin-bottom: 6px; }
.ewallet.selected { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }

/* order summary */
.summary-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.summary-item:last-of-type { border-bottom: none; }
.summary-item .s-thumb { width: 68px; height: 52px; border-radius: 8px; flex: 0 0 auto; display: grid; place-items: center; font-size: 24px; }
.summary-item .s-info { flex: 1; }
.summary-item .s-info b { font-size: 14px; display: block; line-height: 1.35; }
.summary-item .s-info span { font-size: 12.5px; color: var(--ink-faint); }
.summary-item .s-price { font-weight: 700; font-size: 14px; white-space: nowrap; }
.summary-lines { margin-top: 12px; }
.summary-lines .row { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; color: var(--ink-soft); }
.summary-lines .row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-size: 16px; font-weight: 800; color: var(--ink); }

/* ---------- Confirmation / e-ticket ---------- */
.confirm-wrap { max-width: 620px; margin: 0 auto; padding: 56px 22px 80px; text-align: center; }
.confirm-icon { width: 84px; height: 84px; border-radius: 50%; background: var(--ok-bg); color: var(--ok); display: grid; place-items: center; font-size: 40px; margin: 0 auto 22px; }
.confirm-wrap h1 { font-size: 30px; margin-bottom: 10px; }
.confirm-wrap .sub { color: var(--ink-soft); margin-bottom: 30px; }
.eticket {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; text-align: left; margin-bottom: 26px;
}
.eticket .e-head { background: var(--deep); color: #fff; padding: 16px 22px; display: flex; justify-content: space-between; align-items: center; }
.eticket .e-head b { font-family: var(--display); font-size: 16px; }
.eticket .e-body { padding: 22px; display: flex; gap: 22px; align-items: center; }
.qr {
  width: 108px; height: 108px; flex: 0 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 8px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
}
.qr i { background: var(--deep); border-radius: 1px; }
.e-details { flex: 1; }
.e-details .e-event { font-family: var(--display); font-weight: 700; font-size: 16.5px; margin-bottom: 8px; }
.e-details .e-line { font-size: 13.5px; color: var(--ink-soft); display: flex; gap: 7px; align-items: center; margin-bottom: 5px; }
.e-details .e-ticket-type { display: inline-block; margin-top: 6px; background: var(--brand-soft); color: var(--brand); font-weight: 700; font-size: 12.5px; padding: 4px 12px; border-radius: 999px; }
.eticket .e-foot { border-top: 1px dashed var(--line); padding: 13px 22px; font-size: 12.5px; color: var(--ink-faint); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.email-note {
  background: var(--warn-bg); border: 1px solid var(--warn-line); border-radius: var(--radius-sm);
  padding: 14px 18px; font-size: 13.5px; color: var(--warn-ink); text-align: left; margin-bottom: 28px;
}
.email-note b { display: block; margin-bottom: 3px; }

/* ---------- CTA / partner ---------- */
.partner-cta { display: grid; grid-template-columns: 1fr 1.35fr; gap: 40px; align-items: stretch; }
.partner-cta h2 { font-size: clamp(24px, 3vw, 34px); margin: 12px 0 14px; }
.partner-cta p { color: #c9cfdd; margin-bottom: 24px; max-width: 520px; }
.partner-left { display: flex; flex-direction: column; }
.feature-list { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; color: #dfe3ee; font-size: 14.5px; }
.feature-list .tick { color: var(--accent); font-weight: 800; }

/* Partner application form (dark section) */
.partner-form .partner-form-intro { color: #c9cfdd; font-size: 13.5px; margin-bottom: 14px; }
.form-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.partner-col {
  min-width: 0; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); padding: 16px 16px 18px;
  display: flex; flex-direction: column;
}
.partner-left .client-box { flex: 1; }
.partner-col .partner-form-alt {
  margin-top: auto; padding-top: 16px; color: #9aa3b5; font-size: 12.5px; line-height: 1.6;
}
.partner-col .partner-form-alt a { color: var(--accent); }
.partner-col .field-group-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); margin: 0 0 14px; padding-bottom: 8px; border-bottom: 1px dashed rgba(255,255,255,0.15);
}
.partner-col .field label { color: #e6eaf3; }
.partner-col .field input, .partner-col .field select, .partner-col .field textarea {
  background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.26); color: #fff;
  line-height: 1.4;
}
.partner-col .field input::placeholder, .partner-col .field textarea::placeholder { color: #9fb0bf; }
.partner-col .field select option { color: var(--ink); background: var(--surface); }
.partner-col .field input:focus, .partner-col .field select:focus, .partner-col .field textarea:focus { border-color: var(--accent); }
.partner-col .field .hint { color: #9aa3b5; }
.partner-col .field.error input, .partner-col .field.error select { border-color: #f87171; }
.partner-col .field .err-msg { color: #fca5a5; }
.partner-col input[type="date"] { color-scheme: dark; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep); color: #c9cfdd; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: 14.5px; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; font-size: 14px; }
.site-footer ul a:hover { color: #fff; }
.footer-about p { font-size: 13.5px; margin: 14px 0 18px; max-width: 300px; }
.socials { display: flex; gap: 10px; justify-content: flex-start; }
.socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; font-size: 15px; transition: all 0.15s; }
.socials a:hover { background: var(--brand); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 13px; color: #8b93a7; }
.pay-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badges span { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 5px 12px; border-radius: 6px; font-size: 11.5px; font-weight: 600; color: #dfe3ee; }

/* ---------- Legal pages (T&C / Privacy) ---------- */
.legal-meta { color: var(--ink-faint); font-size: 13px; margin-top: 8px; }
.legal-wrap { max-width: 860px; margin: 0 auto; padding: 10px 22px 90px; }
.legal-prose { font-size: 15px; line-height: 1.8; color: var(--ink-soft); }
.legal-prose h2 {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--display); font-size: 20px; color: var(--ink);
  margin: 44px 0 12px; padding-top: 28px; border-top: 1px solid var(--line);
}
.legal-prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-prose .n { font-size: 13.5px; font-weight: 800; color: var(--brand); flex: 0 0 auto; }
.legal-prose p + p { margin-top: 12px; }
.legal-prose ul { margin: 12px 0 4px; padding: 0; list-style: none; display: grid; gap: 9px; }
.legal-prose li { position: relative; padding-left: 22px; }
.legal-prose li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.legal-prose a { color: var(--brand); text-decoration: underline; }
.legal-prose .back-link { display: inline-block; margin-top: 44px; text-decoration: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .event-layout, .checkout-layout, .partner-cta, .footer-grid { grid-template-columns: 1fr; }
  .event-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .event-poster { justify-self: center; width: min(100%, 320px); }
  .ticket-box { position: static; }
  .trust-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-search { display: none; }
  .nav-burger { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--deep); padding: 14px 22px 20px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 640px) {
  .section { padding: 46px 0; }
  .hero .container { padding: 60px 22px 70px; }
  .field-grid { grid-template-columns: 1fr; }
  .form-cols { grid-template-columns: 1fr; gap: 18px; }
  .partner-cta { gap: 28px; }
  .pay-tabs { grid-template-columns: 1fr; }
  .eticket .e-body { flex-direction: column; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Poster visuals (BOBMAN 2026) ---------- */
.event-thumb .event-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* home hero: poster e-ticket */
.hero-ticket-img { display: block; padding: 0; overflow: hidden; }
.hero-ticket-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-ticket-img .ht-cap {
  position: absolute; inset: auto 0 0 0; padding: 52px 20px 16px; text-align: left;
  background: linear-gradient(to top, rgba(0,3,3,0.94) 0%, rgba(0,3,3,0.35) 60%, transparent 100%);
}
.hero-ticket-img .ht-cap b { font-family: var(--display); font-size: 17px; display: block; }
.hero-ticket-img .ht-cap span { font-size: 12px; color: #c9cfdd; display: block; margin-top: 3px; }
.hero-ticket-img .ht-price {
  position: absolute; top: 14px; right: 14px; background: var(--brand); color: #fff;
  font-family: var(--display); font-weight: 800; font-size: 13px; padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(53,172,154,0.5);
}
.hero-ticket-img .ht-book {
  position: absolute; bottom: 14px; right: 14px;
}

/* seat plan */
.seatplan-wrap { position: relative; margin: 16px 0 14px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); cursor: zoom-in; }
.seatplan-img { width: 100%; height: auto; display: block; }
.zoom-hint {
  position: absolute; top: 12px; right: 12px; background: rgba(0,3,3,0.72); color: #fff;
  font-size: 12px; padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.legend { display: flex; flex-wrap: wrap; gap: 10px; margin: 2px 0 6px; }
.legend-chip {
  display: inline-flex; align-items: center; gap: 7px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 600;
}
.legend-chip i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }

/* fan benefits */
.fan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 16px; }
.fan-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.fan-thumb { position: relative; cursor: zoom-in; }
.fan-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.fan-no {
  position: absolute; top: 12px; left: 12px; background: var(--brand); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px;
}
.fan-body { padding: 18px 20px 20px; }
.fan-body h3 { font-size: 16.5px; margin-bottom: 10px; }
.fan-body ul { list-style: none; display: grid; gap: 8px; }
.fan-body li { position: relative; padding-left: 20px; font-size: 14px; color: var(--ink-soft); }
.fan-body li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.elig-note {
  margin-top: 16px; background: var(--warn-bg); border: 1px solid var(--warn-line);
  border-radius: var(--radius-sm); padding: 14px 18px; font-size: 13.5px; color: var(--warn-ink);
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(0,3,3,0.92);
  display: grid; place-items: center; padding: 30px;
  opacity: 0; visibility: hidden; transition: opacity 0.2s ease, visibility 0.2s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 88vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lb-close {
  position: absolute; top: 18px; right: 22px; color: #fff; font-size: 24px; cursor: pointer;
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.12);
}

@media (max-width: 640px) { .fan-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Glassmorphism (2026-09-02)
   ============================================================ */
:root {
  --glass-blur: blur(18px) saturate(160%);
  --glass-hi: inset 0 1px 0 rgba(255,255,255,0.07);
}

/* ambient colour field — fixed, so frosted panels always have depth behind them */
body {
  background:
    radial-gradient(1200px 560px at 88% -6%, rgba(53,172,154,0.17), transparent 62%),
    radial-gradient(900px 560px at -14% 14%, rgba(47,132,180,0.13), transparent 58%),
    radial-gradient(1100px 620px at 12% 108%, rgba(34,201,175,0.12), transparent 60%),
    radial-gradient(900px 520px at 96% 74%, rgba(121,86,196,0.10), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

/* frosted sticky header — content blurs as it scrolls underneath */
.site-header {
  background: rgba(5, 11, 9, 0.5);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 10px 34px rgba(0,0,0,0.28), var(--glass-hi);
}

/* events listing filter bar */
.filter-bar {
  background: rgba(7, 16, 14, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom-color: rgba(255,255,255,0.10);
}

/* search panel */
.search-panel {
  background:
    radial-gradient(340px 150px at 88% -20%, rgba(53,172,154,0.14), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015) 34%),
    rgba(9, 18, 15, 0.84);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  backdrop-filter: blur(26px) saturate(170%);
  box-shadow: 0 26px 80px rgba(0,0,0,0.6), var(--glass-hi);
}

/* event cards */
.event-card {
  background:
    linear-gradient(165deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018) 42%),
    rgba(12, 24, 21, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  backdrop-filter: blur(18px) saturate(155%);
  border-color: rgba(255,255,255,0.11);
  box-shadow: 0 16px 44px rgba(0,0,0,0.34), var(--glass-hi);
}
.event-card:hover {
  box-shadow: 0 22px 56px rgba(0,0,0,0.5), 0 0 0 1px rgba(53,172,154,0.30), var(--glass-hi);
}

/* emoji thumbnails get a soft plate so cards still read as frosted */
.event-thumb {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(53,172,154,0.10), transparent 65%),
    rgba(255,255,255,0.02);
}

/* hero floating ticket */
.hero-ticket {
  background:
    linear-gradient(165deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025) 46%),
    rgba(11, 22, 19, 0.5);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 28px 70px rgba(0,0,0,0.45), var(--glass-hi);
}

/* pricing / buy box */
.ticket-box {
  background:
    linear-gradient(165deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015) 40%),
    rgba(11, 22, 19, 0.6);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  backdrop-filter: blur(20px) saturate(155%);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 22px 60px rgba(0,0,0,0.4), var(--glass-hi);
}
.ticket-box .box-head {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

/* info + fan cards */
.info-card, .fan-card {
  background:
    linear-gradient(160deg, rgba(255,255,255,0.075), rgba(255,255,255,0.02) 45%),
    rgba(12, 24, 21, 0.5);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border-color: rgba(255,255,255,0.13);
  box-shadow: var(--glass-hi);
}

/* trust band under the hero — translucent so the frosted cards read as glass */
.trust-bar { background: rgba(7, 16, 14, 0.35); }
.trust-item {
  background:
    linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015) 50%),
    rgba(13, 26, 23, 0.45);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  box-shadow: var(--glass-hi);
}

/* fallback: near-opaque surfaces where backdrop-filter is unsupported */
@supports not ((backdrop-filter: blur(4px)) or (-webkit-backdrop-filter: blur(4px))) {
  .site-header, .filter-bar, .search-panel, .event-card, .hero-ticket, .ticket-box, .info-card, .fan-card, .trust-item {
    background: var(--surface-2);
  }
}

/* ============================================================
   Header — responsive ratio fixes (2026-09-03)
   Fixes: header content used to exceed the 1180px container, so
   nav links wrapped, the search bar dominated and pills squeezed.
   Now: fluid search, graceful pill removal, clean mobile layout.
   ============================================================ */
.nav { gap: 20px; height: 72px; }
.logo { flex: 0 0 auto; }
.nav-links { flex: 0 0 auto; white-space: nowrap; margin-left: 0; }
.nav-links a { white-space: nowrap; padding: 9px 13px; }
.nav-right { flex: 0 0 auto; }
.nav-search-wrap { position: relative; flex: 1 1 auto; min-width: 0; display: flex; justify-content: flex-end; }
.nav-search { width: clamp(240px, 24vw, 330px); min-width: 0; padding: 4px 4px 4px 16px; }
.ns-btn { padding: 9px 16px; }

/* smaller laptops: slim the search + link padding before anything squeezes */
@media (max-width: 1280px) {
  .nav-links a { padding: 8px 12px; font-size: 14px; }
  .nav-search { width: clamp(220px, 23vw, 300px); }
}
@media (max-width: 1080px) {
  .nav-links a { padding: 8px 11px; font-size: 13.5px; }
  .nav-search { width: min(320px, 44vw); }
}

/* phones / small tablets (<=980): two-row header
   row 1: logo + burger   row 2: full-width search   menu = panel row */
@media (max-width: 980px) {
  .site-header .container { padding: 0 16px; }
  .nav { flex-wrap: wrap; height: auto; padding: 12px 0; row-gap: 12px; }
  .nav-right { margin-left: auto; }
  .nav-burger { font-size: 24px; padding: 6px; line-height: 1; }
  .nav-search-wrap { order: 4; flex: 1 0 100%; justify-content: stretch; margin-left: 0; }
  .nav-search { display: flex; width: 100%; min-width: 0; }
  .nav-links.open {
    display: flex; flex-direction: column; position: static; order: 5;
    width: 100%; margin: 2px 0 0; padding: 10px 8px 14px; gap: 2px;
    background: rgba(8, 17, 14, 0.88);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.10); border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.5);
  }
  .nav-links.open a { padding: 12px 16px; font-size: 15px; border-radius: 10px; color: var(--ink); }
  .nav-links.open a:hover, .nav-links.open a.active { background: rgba(255,255,255,0.10); }
}
@media (max-width: 640px) {
  .nav { gap: 14px; row-gap: 10px; padding: 10px 0; }
  .logo img.logo-img { height: 26px; }
  .logo-name { font-size: 18px; }
  .logo-tag { font-size: 10px; }
  .search-panel { right: 0; }
  .sp-cols { grid-template-columns: 1fr; gap: 14px; }
}
