:root {
  --slate: #76767c;
  --slate-dark: #5e5e65;
  --navy: #182b49;
  --blue: #315d86;
  --blue-soft: #dfe8ef;
  --ink: #17181c;
  --ink-soft: #30333b;
  --paper: #f6f7f9;
  --warm: #f3f0e9;
  --white: #fff;
  --gold: #d4b46a;
  --gold-dark: #a88339;
  --plum: #381052;
  --green: #24745a;
  --green-soft: #e3f2ec;
  --red: #a63f4c;
  --red-soft: #f8e7e9;
  --orange: #a4651f;
  --border: #dedee2;
  --border-dark: #c8c8cd;
  --muted: #6a6c74;
  --shadow: 0 24px 70px rgba(23, 24, 28, .12);
  --shadow-small: 0 10px 35px rgba(23, 24, 28, .08);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Segoe UI', Inter, Arial, sans-serif;
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.public-page { background: #fbfbfc; }
html[lang="zh-CN"] body { font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", var(--sans); }
html[lang="zh-CN"] h1, html[lang="zh-CN"] h2, html[lang="zh-CN"] h3, html[lang="zh-CN"] h4 { font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", var(--sans); letter-spacing: -.02em; }
html[lang="zh-CN"] .eyebrow, html[lang="zh-CN"] .tag { letter-spacing: .08em; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .5; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; line-height: 1.05; }
h3, h4 { line-height: 1.2; }
p { color: var(--muted); }
.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 850px; }
.narrow-wide { max-width: 1080px; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -80px; padding: 10px 15px; background: var(--white); color: var(--ink); border-radius: 6px; }
.skip-link:focus { top: 12px; }
.eyebrow { display: block; margin-bottom: 14px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: #cdd9e5; }
.section { padding: 104px 0; }
.section-heading { margin-bottom: 46px; }
.section-heading h2 { margin: 0; font-size: clamp(40px, 5vw, 66px); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); align-items: end; gap: 60px; }
.split-heading > p { margin: 0 0 8px; font-size: 17px; }
.centered-heading { max-width: 750px; text-align: center; }
.centered-heading p { max-width: 620px; margin: 18px auto 0; font-size: 18px; }
.fine-print { font-size: 12px; line-height: 1.6; }
.fine-print.light { color: #cbd0d7; }
.tag { display: inline-flex; align-items: center; padding: 4px 8px; color: var(--blue); background: var(--blue-soft); border-radius: 100px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border: 1px solid transparent; border-radius: 7px; font-weight: 750; line-height: 1; transition: .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20, 25, 34, .16); }
.button-small { min-height: 38px; padding: 9px 16px; font-size: 13px; }
.button-large { min-height: 56px; padding-inline: 28px; }
.button-full { width: 100%; }
.button-dark { color: var(--white); background: var(--navy); }
.button-light { color: var(--ink); background: var(--white); }
.button-gold { color: #201b10; background: var(--gold); }
.button-outline { color: var(--ink); background: transparent; border-color: var(--border-dark); }
.button-ghost-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.38); }
.button-danger { color: var(--white); background: var(--red); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button-row.centered { justify-content: center; }
.text-link, .text-button { padding: 0; border: 0; color: var(--blue); background: none; font-weight: 750; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.centered-link { display: block; margin-top: 18px; text-align: center; }
.count-chip { display: inline-flex; padding: 7px 12px; color: var(--slate-dark); background: #ececef; border-radius: 100px; font-size: 12px; font-weight: 800; }

/* Header and navigation */
.site-header { position: sticky; z-index: 100; top: 0; height: 78px; color: var(--ink); background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(222,222,226,.8); transition: .2s ease; backdrop-filter: blur(18px); }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(23,24,28,.08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-seal { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--slate); border-radius: 50%; color: var(--slate-dark); font-family: var(--serif); font-size: 24px; font-weight: 700; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-family: var(--serif); font-size: 22px; letter-spacing: .1em; }
.brand-copy small { max-width: 260px; margin-top: 3px; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: 13px; font-weight: 650; }
.header-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.language-switch { display: inline-flex; align-items: center; gap: 3px; flex: 0 0 auto; padding: 3px; border: 1px solid rgba(23,119,160,.18); border-radius: 999px; background: rgba(228,246,248,.72); box-shadow: inset 0 1px 0 rgba(255,255,255,.9); }
.language-switch a { min-width: 34px; height: 28px; display: grid; place-items: center; padding-inline: 7px; color: #52727d; border-radius: 999px; font-size: 10px; font-weight: 850; letter-spacing: .04em; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.language-switch a:last-child { min-width: 42px; letter-spacing: 0; }
.language-switch a.active { color: #fff; background: linear-gradient(135deg, #0879bd, #035483); box-shadow: 0 4px 12px rgba(3,84,131,.22); }
.language-switch a:not(.active):hover { color: var(--navy); background: rgba(255,255,255,.72); }
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--blue); transition: right .2s ease; }
.main-nav > a:not(.button):hover::after { right: 0; }
.nav-form { display: inline-flex; }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); }
.flash { position: relative; z-index: 110; color: var(--ink); background: var(--blue-soft); border-bottom: 1px solid #c6d4df; }
.flash-error { color: #762b35; background: var(--red-soft); border-color: #edc4c9; }
.flash-success { color: #165843; background: var(--green-soft); border-color: #bcded1; }
.flash-inner { min-height: 48px; display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 650; }
.flash-inner button { border: 0; color: inherit; background: transparent; font-size: 22px; }

/* Public homepage */
.hero { position: relative; min-height: 730px; overflow: hidden; color: var(--white); background: radial-gradient(circle at 75% 15%, #466789 0, transparent 27%), linear-gradient(125deg, #111924 0%, #1d314c 57%, #76767c 130%); }
.hero::before { content: ''; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(30deg, transparent 24%, rgba(255,255,255,.3) 25%, transparent 26%), linear-gradient(150deg, transparent 24%, rgba(255,255,255,.25) 25%, transparent 26%); background-size: 85px 148px; }
.hero-grid { position: relative; z-index: 2; min-height: 730px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .72fr); align-items: center; gap: 78px; padding-block: 72px 90px; }
.hero-copy h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(52px, 6.2vw, 86px); }
.hero-lead { max-width: 650px; margin-bottom: 30px; color: #dbe3eb; font-size: 19px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; color: #cbd4dd; font-size: 12px; }
.trust-line span::before { content: '✓'; margin-right: 6px; color: var(--gold); }
.hero-visual { position: relative; }
.poster-frame { position: relative; width: min(420px, 100%); margin-left: auto; padding: 12px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); box-shadow: 0 40px 80px rgba(0,0,0,.3); transform: rotate(2deg); }
.poster-frame img { aspect-ratio: 1; object-fit: cover; filter: saturate(.75) contrast(1.03); }
.poster-note { position: absolute; left: -30px; bottom: 36px; min-width: 230px; padding: 16px 20px; color: var(--ink); background: var(--gold); box-shadow: var(--shadow-small); transform: rotate(-2deg); }
.poster-note span { display: block; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.poster-note strong { font-family: var(--serif); font-size: 20px; }
.date-card { position: absolute; right: -10px; bottom: -75px; width: 330px; padding: 24px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.date-card p { margin: 20px 0 0; font-size: 12px; }
.date-card p strong { color: var(--ink); font-size: 14px; }
.countdown { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--border); }
.countdown > div { padding: 12px 4px; text-align: center; border-right: 1px solid var(--border); }
.countdown > div:last-child { border: 0; }
.countdown strong { display: block; font-family: var(--serif); font-size: 28px; }
.countdown span { color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.hero-orbit-one { width: 480px; height: 480px; right: -130px; top: -200px; }
.hero-orbit-two { width: 650px; height: 650px; left: -400px; bottom: -400px; }
.stat-strip { color: var(--white); background: var(--slate); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-grid > div { padding: 32px 25px; border-right: 1px solid rgba(255,255,255,.18); text-align: center; }
.stat-grid > div:last-child { border: 0; }
.stat-grid strong { display: block; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.stat-grid span { color: #ececef; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.intro-section { background: #fbfbfc; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.intro-grid h2 { margin: 0; font-size: clamp(44px, 5vw, 68px); }
.prose-large p { color: var(--ink-soft); font-family: var(--serif); font-size: 23px; line-height: 1.6; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 80px; }
.feature-card { position: relative; min-height: 300px; padding: 30px; overflow: hidden; background: var(--warm); border-radius: var(--radius); }
.feature-card.feature-wide { grid-column: span 2; }
.feature-card h3 { max-width: 330px; margin-top: 95px; margin-bottom: 12px; font-family: var(--serif); font-size: 28px; font-weight: 500; }
.feature-card p { max-width: 380px; margin: 0; font-size: 14px; }
.feature-number { position: absolute; top: 24px; left: 28px; color: var(--slate); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.feature-dark { color: var(--white); background: var(--ink); }
.feature-dark p { color: #c9cbd0; }
.feature-blue { color: var(--white); background: var(--blue); }
.feature-blue p { color: #d8e3ed; }
.coin-stack { position: absolute; right: 28px; top: 35px; width: 180px; height: 120px; }
.coin-stack i { position: absolute; width: 105px; height: 105px; border: 2px solid var(--gold-dark); border-radius: 50%; box-shadow: inset 0 0 0 7px var(--warm), inset 0 0 0 8px var(--gold-dark); }
.coin-stack i:nth-child(1) { right: 0; top: 0; }
.coin-stack i:nth-child(2) { right: 35px; top: 8px; }
.coin-stack i:nth-child(3) { right: 70px; top: 16px; }
.event-band { color: var(--white); background: var(--navy); }
.event-band-grid { display: grid; grid-template-columns: 210px minmax(0, 1fr) 300px; gap: 60px; align-items: center; }
.event-date-block { padding-right: 50px; border-right: 1px solid rgba(255,255,255,.2); }
.event-date-block span, .event-date-block small { display: block; color: #b9c9d8; font-size: 13px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.event-date-block strong { display: block; font-family: var(--serif); font-size: 64px; line-height: 1; }
.event-band h2 { margin-bottom: 20px; font-size: 49px; }
.event-band p, .event-facts small { color: #c8d2dd; }
.event-facts { display: grid; gap: 24px; }
.event-facts span, .event-facts small { display: block; }
.event-facts span { margin-bottom: 4px; color: #95aac0; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.event-facts strong { display: block; }
.vendor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vendor-card { min-height: 290px; padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); transition: .25s ease; }
.vendor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-small); border-color: transparent; }
.vendor-monogram { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 35px; color: var(--navy); background: var(--blue-soft); border-radius: 50%; font-family: var(--serif); font-size: 21px; }
.booth { float: right; margin-top: -90px; color: var(--slate); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.vendor-card h3 { margin-bottom: 6px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.vendor-card > strong { color: var(--blue); font-size: 12px; }
.vendor-card p { margin: 15px 0 0; font-size: 13px; }
.floor-section { background: var(--warm); }
.floor-grid { display: grid; grid-template-columns: 330px 1fr; gap: 70px; align-items: center; }
.floor-copy h2 { font-size: 53px; }
.legend { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; }
.legend li { display: flex; align-items: center; gap: 10px; }
.legend i { width: 10px; height: 10px; border-radius: 2px; }
.legend-a { background: #b8cadb; }.legend-b { background: #728eab; }.legend-c { background: #d2b778; }.legend-d { background: #77777e; }
.floor-plan { position: relative; min-height: 480px; display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: 42px repeat(4, 1fr) 44px; gap: 9px; padding: 22px; background: var(--white); border: 1px solid var(--border-dark); box-shadow: var(--shadow-small); }
.floor-label { grid-column: 1/-1; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.floor-zone { display: grid; place-items: center; padding: 10px; border-radius: 5px; text-align: center; font-size: 11px; font-weight: 750; }
.zone-stage { grid-column: 1/3; grid-row: 2/4; color: white; background: var(--slate); }.zone-a1 { grid-column: 3/5; grid-row: 2; background: #cbd9e6; }.zone-a2 { grid-column: 5/7; grid-row: 2; background: #cbd9e6; }.zone-b1 { grid-column: 3/5; grid-row: 3; color: white; background: #728eab; }.zone-b2 { grid-column: 5/7; grid-row: 3; color: white; background: #728eab; }.zone-c1 { grid-column: 1/3; grid-row: 4; background: #e4d4aa; }.zone-c2 { grid-column: 1/3; grid-row: 5; background: #e4d4aa; }.zone-gallery { grid-column: 3/6; grid-row: 4/6; color: white; background: var(--navy); }.zone-service { grid-column: 6; grid-row: 4/6; color: white; background: var(--blue); }
.floor-entrance { grid-column: 1/-1; grid-row: 6; display: grid; place-items: center; color: var(--muted); border: 1px dashed var(--border-dark); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.programme-section { background: #fbfbfc; }
.programme-list { border-top: 1px solid var(--border); }
.programme-row { display: grid; grid-template-columns: 120px 100px 1fr 30px; gap: 25px; align-items: center; min-height: 132px; padding: 20px 10px; border-bottom: 1px solid var(--border); transition: background .2s; }
.programme-row:hover { background: var(--white); }
.programme-day span, .programme-day strong { display: block; }
.programme-day span { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.programme-row time { font-weight: 750; }
.programme-row h3 { margin: 8px 0 5px; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.programme-row p { margin: 0; font-size: 12px; }
.row-arrow { color: var(--slate); font-size: 20px; }
.draw-section { color: var(--white); background: linear-gradient(135deg, #101923, #263d58); }
.draw-section::before { content: ''; position: absolute; }
.draw-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.draw-intro h2 { font-size: clamp(52px, 6vw, 78px); }
.draw-intro p { max-width: 470px; color: #c8d4df; }
.prize-list { display: grid; gap: 14px; }
.prize-card { display: grid; grid-template-columns: 78px 1fr; gap: 22px; align-items: center; padding: 24px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; }
.prize-medal { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(212,180,106,.5); }
.prize-medal span { color: var(--gold); font-family: var(--serif); font-size: 25px; }
.prize-card > div > span { color: #aebdcc; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.prize-card h3 { margin: 4px 0 6px; font-family: var(--serif); font-size: 23px; font-weight: 500; }
.prize-card p { margin: 0; color: #c7d2dd; font-size: 12px; }
.tickets-section { background: var(--warm); }
.ticket-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 520px)); justify-content: center; gap: 22px; }
.ticket-option { min-height: 610px; display: flex; flex-direction: column; padding: 38px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.ticket-option.ticket-premium { color: var(--white); background: var(--navy); border-color: var(--navy); }
.ticket-topline { display: flex; justify-content: space-between; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ticket-premium .ticket-topline { color: var(--gold); }
.ticket-option h3 { margin: 35px 0 20px; font-family: var(--serif); font-size: 36px; font-weight: 500; }
.ticket-price strong { font-family: var(--serif); font-size: 53px; font-weight: 500; }
.ticket-price span { margin-left: 8px; color: var(--muted); font-size: 12px; }
.ticket-premium .ticket-price span, .ticket-premium > p { color: #bbc9d8; }
.ticket-option > p { min-height: 68px; margin: 18px 0 22px; }
.ticket-option ul { display: grid; gap: 11px; margin: 0 0 30px; padding: 0; list-style: none; font-size: 14px; }
.ticket-option li span { margin-right: 10px; color: var(--green); }.ticket-premium li span { color: var(--gold); }
.availability { margin-top: auto; margin-bottom: 22px; }
.availability span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 11px; }.ticket-premium .availability span { color: #aebccc; }
meter { width: 100%; height: 8px; border: 0; border-radius: 20px; background: #e0e1e4; }
meter::-webkit-meter-bar { background: #e0e1e4; border: 0; border-radius: 20px; } meter::-webkit-meter-optimum-value { background: var(--slate); border-radius: 20px; } meter::-moz-meter-bar { background: var(--slate); border-radius: 20px; }
.ticket-note { margin-top: 24px; color: var(--muted); text-align: center; font-size: 12px; }
.faq-section { background: #fbfbfc; }
.faq-grid { display: grid; grid-template-columns: 330px 1fr; gap: 100px; }
.faq-grid h2 { font-size: 53px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { padding: 22px 5px; border-bottom: 1px solid var(--border); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: var(--serif); font-size: 21px; list-style: none; }
.faq-list summary::after { content: '+'; color: var(--slate); font-family: var(--sans); font-size: 24px; font-weight: 300; }.faq-list details[open] summary::after { content: '−'; }
.faq-list p { max-width: 700px; margin: 16px 0 0; }
.contact-section { color: var(--white); background: var(--slate-dark); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.contact-grid h2 { font-size: 62px; }.contact-grid > div > p { max-width: 460px; color: #e1e1e4; }
.contact-details { display: grid; margin-top: 50px; }
.contact-details span { margin-top: 12px; color: #c8c8cc; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.contact-details a { font-family: var(--serif); font-size: 20px; }
.contact-form { display: grid; gap: 18px; padding: 34px; color: var(--ink); background: var(--white); border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .button { justify-self: start; color: var(--white); background: var(--navy); }
.demo-notice { padding: 12px 20px; color: #5f573f; background: #eee4c8; text-align: center; font-size: 11px; }

/* Footer */
.site-footer { padding: 70px 0 26px; color: #ccd0d6; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 50px; padding-bottom: 50px; }
.brand-footer { color: var(--white); }.brand-footer .brand-seal { color: var(--white); border-color: #8d9098; }.brand-footer .brand-copy small { color: #aeb2ba; }
.footer-grid > div:first-child p { max-width: 340px; margin: 24px 0 0; color: #9ea2aa; font-size: 13px; }
.footer-grid h3 { margin-bottom: 18px; color: var(--white); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; font-size: 12px; }
.footer-grid a:hover { color: var(--white); }
.demo-label { width: max-content; margin-top: 8px; padding: 5px 8px; color: var(--gold); border: 1px solid #6d6246; border-radius: 4px; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; color: #7f8289; border-top: 1px solid #33353a; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }

/* Forms and common portal elements */
label { display: grid; gap: 7px; color: var(--ink-soft); font-size: 12px; font-weight: 750; }
label .optional, .optional { color: var(--muted); font-size: 10px; font-weight: 500; }
input, select, textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: var(--white); border: 1px solid var(--border-dark); border-radius: 7px; outline: 0; transition: .15s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(49,93,134,.12); }
input[readonly] { color: var(--muted); background: #f0f1f3; }
textarea { resize: vertical; }
label small { color: var(--muted); font-weight: 400; }
.stack-form { display: grid; gap: 18px; }
.compact-form { gap: 12px; }
.form-grid { display: grid; gap: 18px; }.form-grid.two { grid-template-columns: repeat(2, 1fr); }.form-grid.three { grid-template-columns: repeat(3, 1fr); }.span-two { grid-column: span 2; }.span-three { grid-column: span 3; }
.check-label { grid-template-columns: 18px 1fr; align-items: start; gap: 10px; font-weight: 500; }
.check-label input, .switch-label input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--blue); }
.check-label a { color: var(--blue); text-decoration: underline; }
.check-label.soft { padding: 15px; background: #f0f2f4; border-radius: 8px; }
.switch-label { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.switch-label input { appearance: none; width: 38px; height: 22px; position: relative; margin: 0; background: #c9cbd0; border: 0; border-radius: 100px; }
.switch-label input::after { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; background: white; border-radius: 50%; transition: .2s; }.switch-label input:checked { background: var(--green); }.switch-label input:checked::after { transform: translateX(16px); }
.switch-label span { display: grid; }.switch-label small { color: var(--muted); font-weight: 400; }.switch-label.inline { display: flex; border: 0; padding: 0; }
.panel { padding: 26px; background: var(--white); border: 1px solid var(--border); border-radius: 13px; box-shadow: 0 5px 20px rgba(23,24,28,.03); }
.panel-heading, .section-title-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.panel-heading h2, .section-title-row h2 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 500; }.panel-heading .eyebrow, .section-title-row .eyebrow { margin-bottom: 5px; }.panel-heading > a, .section-title-row > a:not(.button) { color: var(--blue); font-size: 12px; font-weight: 750; }
.section-spaced { margin-top: 28px; }
.notice { padding: 14px 16px; border-radius: 7px; font-size: 12px; line-height: 1.55; }
.notice.warning { color: #765020; background: #f7eddb; border: 1px solid #ead6b3; }.notice.info { color: #274e71; background: #eaf1f7; border: 1px solid #cdddea; }.notice strong { color: inherit; }
.status { display: inline-flex; align-items: center; width: max-content; padding: 5px 9px; border-radius: 100px; color: var(--blue); background: var(--blue-soft); font-size: 9px; font-weight: 850; letter-spacing: .07em; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.status-active, .status-confirmed, .status-paid, .status-sent, .status-entry, .status-gift { color: #176047; background: var(--green-soft); }
.status-cancelled, .status-refunded, .status-failed, .status-inactive { color: #852f3a; background: var(--red-soft); }
.status-pending, .status-queued { color: #8a581c; background: #f7ecd9; }.status-not_required { color: #46505f; background: #e9ebef; }
.table-card { overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 12px; }
th { padding: 12px 16px; color: var(--muted); background: #f4f4f6; text-align: left; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
td { padding: 15px 16px; border-top: 1px solid #ececef; vertical-align: middle; }
td strong, td small { display: block; } td small { margin-top: 3px; color: var(--muted); font-size: 10px; } td a { color: var(--blue); font-weight: 750; }
.empty-table { padding: 34px; color: var(--muted); text-align: center; font-size: 13px; }
.breadcrumb { display: flex; gap: 9px; margin-bottom: 24px; color: var(--muted); font-size: 11px; }.breadcrumb a { color: var(--blue); font-weight: 750; }
.page-title-row { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 34px; }.page-title-row h1 { margin-bottom: 8px; font-size: 48px; }.page-title-row p { margin: 0; }
.portal-content { min-height: 650px; padding: 60px 0 100px; }
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 20px; }.detail-card { padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }.detail-card h2 { font-size: 28px; }.detail-list { margin: 0; }.detail-list > div { display: grid; grid-template-columns: 120px 1fr; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--border); }.detail-list dt { color: var(--muted); font-size: 11px; }.detail-list dd { margin: 0; font-size: 12px; font-weight: 700; text-align: right; }.detail-list .total { padding-top: 20px; border: 0; }.detail-list .total dd { font-family: var(--serif); font-size: 27px; }
.filter-form, .filter-bar { display: flex; align-items: end; gap: 12px; }.filter-bar { margin-bottom: 24px; padding: 18px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; }.filter-bar label { min-width: 170px; }.filter-bar .search-field { width: min(390px, 100%); }
.error-main { min-height: 620px; width: var(--shell); margin: auto; display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 70px; }.error-code { color: #dfe0e3; font-family: var(--serif); font-size: 180px; line-height: 1; }.error-main h1 { font-size: 59px; }.error-main p { max-width: 550px; font-size: 18px; }

/* Inner public pages, auth and legal */
.page-hero { padding: 115px 0; color: var(--white); background: linear-gradient(120deg, var(--navy), var(--slate)); }.page-hero.compact { padding: 75px 0; }.page-hero h1 { margin-bottom: 20px; font-size: clamp(52px, 7vw, 82px); }.page-hero p { max-width: 700px; margin: 0; color: #dae2e9; font-size: 19px; }
.page-hero-event { position: relative; overflow: hidden; }.page-hero-event::after { content: ''; position: absolute; width: 450px; height: 450px; right: -100px; top: -240px; border: 80px double rgba(255,255,255,.07); border-radius: 50%; }
.info-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }.info-card { padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }.info-card > span { color: var(--slate); font-size: 11px; font-weight: 800; }.info-card h2 { margin: 55px 0 22px; font-size: 34px; }.info-card p { margin-bottom: 7px; }
.programme-page { background: var(--warm); }.day-schedule { display: grid; gap: 28px; }.schedule-day { display: grid; grid-template-columns: 290px 1fr; gap: 50px; padding: 36px; background: var(--white); border-radius: 14px; }.schedule-day-head > span { color: var(--blue); font-size: 11px; font-weight: 800; text-transform: uppercase; }.schedule-day-head h3 { margin: 15px 0 5px; font-family: var(--serif); font-size: 31px; font-weight: 500; }.schedule-item { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--border); }.schedule-item:last-child { border: 0; }.schedule-item time { font-weight: 750; }.schedule-item h4 { margin: 5px 0; font-family: var(--serif); font-size: 20px; }.schedule-item p { margin: 0; font-size: 11px; }
.visit-notes { background: #fbfbfc; }.visit-notes-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }.visit-notes h2 { font-size: 52px; }.note-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }.note-grid article { padding: 25px; background: var(--warm); border-radius: 10px; }.note-grid h3 { font-family: var(--serif); font-size: 21px; }.note-grid p { margin: 0; font-size: 12px; }
.cta-section { padding: 95px 0; color: var(--white); background: var(--navy); text-align: center; }.cta-section h2 { max-width: 850px; margin: 0 auto 28px; font-size: 54px; }
.auth-main { min-height: calc(100vh - 78px); display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }.auth-art { position: relative; display: flex; align-items: end; padding: 70px; overflow: hidden; color: white; background: radial-gradient(circle at 30% 25%, #6b4b83, transparent 25%), linear-gradient(145deg, #111b2a, #315d86); }.auth-art::before { content: 'MSIF'; position: absolute; top: 6%; left: -5%; color: rgba(255,255,255,.06); font-family: var(--serif); font-size: 28vw; line-height: 1; }.auth-art::after { content: ''; position: absolute; width: 380px; height: 380px; right: -110px; top: 80px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: inset 0 0 0 30px transparent, inset 0 0 0 31px rgba(255,255,255,.11), inset 0 0 0 65px transparent, inset 0 0 0 66px rgba(255,255,255,.08); }.auth-art > div { position: relative; z-index: 2; max-width: 570px; }.auth-art h1 { font-size: clamp(50px, 6vw, 76px); }.auth-art p { color: #d9e2ea; font-size: 17px; }.auth-panel { display: grid; place-items: center; padding: 60px 25px; }.auth-box { width: min(430px, 100%); }.auth-box h2 { margin-bottom: 12px; font-size: 44px; }.auth-box > p { margin-bottom: 30px; }.auth-switch { margin: 26px 0 0!important; text-align: center; font-size: 13px; }.auth-switch a { color: var(--blue); font-weight: 750; }
.verify-main { min-height: 680px; display: grid; place-items: center; padding: 60px 20px; background: var(--warm); }.verify-card { width: min(560px, 100%); padding: 48px; background: var(--white); border-radius: 18px; box-shadow: var(--shadow); text-align: center; }.verify-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 28px; color: white; background: var(--green); border-radius: 50%; font-size: 34px; }.verify-card.invalid .verify-icon { background: var(--red); }.verify-card h1 { font-size: 45px; }.verify-name { margin: 30px 0 5px; color: var(--ink); font-family: var(--serif); font-size: 30px; }.verify-card dl { margin: 30px 0; text-align: left; }.verify-card dl > div { display: grid; grid-template-columns: 100px 1fr; padding: 11px; border-bottom: 1px solid var(--border); }.verify-card dt { color: var(--muted); font-size: 11px; }.verify-card dd { margin: 0; text-align: right; font-weight: 750; }
.legal-copy { max-width: 820px; }.legal-copy h2 { margin: 40px 0 15px; font-size: 34px; }.legal-copy p { font-size: 16px; line-height: 1.8; }.legal-copy a { color: var(--blue); }

/* Booking */
.booking-main { min-height: 700px; padding: 52px 0 100px; background: var(--warm); }.booking-shell { max-width: 1040px; }.booking-progress { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 58px; }.booking-progress > div { position: relative; display: flex; align-items: center; gap: 10px; color: #a0a1a6; font-size: 11px; }.booking-progress > div::after { content: ''; height: 1px; flex: 1; margin-right: 10px; background: #d2d2d5; }.booking-progress > div:last-child::after { display: none; }.booking-progress span { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #c1c2c6; border-radius: 50%; font-size: 10px; }.booking-progress .current, .booking-progress .complete { color: var(--ink); }.booking-progress .current span { color: white; background: var(--navy); border-color: var(--navy); }.booking-progress .complete span { color: white; background: var(--green); border-color: var(--green); }
.booking-heading { max-width: 760px; margin-bottom: 42px; }.booking-heading h1 { margin-bottom: 16px; font-size: clamp(45px, 6vw, 68px); }.booking-heading p { font-size: 17px; }
.booking-form { display: grid; gap: 22px; }.form-section { padding: 34px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; }.form-section-title { display: grid; grid-template-columns: 42px 1fr; gap: 18px; margin-bottom: 30px; }.form-section-title > span { width: 36px; height: 36px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 11px; font-weight: 800; }.form-section-title h2 { margin-bottom: 5px; font-size: 28px; }.form-section-title p { margin: 0; font-size: 12px; }
fieldset { margin: 28px 0 22px; padding: 0; border: 0; } legend { margin-bottom: 12px; font-size: 12px; font-weight: 750; }.choice-grid { display: flex; flex-wrap: wrap; gap: 9px; }.choice-card { position: relative; display: block; }.choice-card input { position: absolute; opacity: 0; pointer-events: none; }.choice-card span { display: block; padding: 10px 13px; color: var(--muted); border: 1px solid var(--border); border-radius: 100px; font-size: 11px; font-weight: 650; cursor: pointer; }.choice-card input:checked + span { color: var(--navy); background: var(--blue-soft); border-color: #9fb6ca; }
.booking-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 12px; }.pass-list { display: grid; gap: 16px; }.pass-row { display: grid; grid-template-columns: 110px 1fr 180px; gap: 32px; padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 13px; }.pass-row.premium { color: white; background: var(--navy); border-color: var(--navy); }.pass-code { display: flex; flex-direction: column; justify-content: space-between; padding-right: 25px; border-right: 1px solid var(--border); }.premium .pass-code { border-color: rgba(255,255,255,.2); }.pass-code > span { color: var(--blue); font-family: var(--serif); font-size: 30px; }.premium .pass-code > span { color: var(--gold); }.pass-code small { color: var(--muted); font-size: 9px; text-transform: uppercase; }.premium .pass-code small { color: #b9c5d2; }.pass-copy h2 { margin-bottom: 10px; font-size: 31px; }.pass-copy p { margin-bottom: 16px; font-size: 13px; }.premium .pass-copy p { color: #c5d0db; }.pass-copy ul { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 11px; }.premium .pass-copy ul { color: #d6dee7; }.pass-select { display: flex; flex-direction: column; }.pass-select > strong { font-family: var(--serif); font-size: 31px; }.pass-select > span { margin-bottom: 17px; color: var(--muted); font-size: 10px; }.premium .pass-select > span, .premium .pass-select > small { color: #aebccc; }.pass-select select { margin-top: 3px; }.pass-select > small { margin-top: 7px; color: var(--muted); font-size: 9px; }.booking-total { position: sticky; z-index: 5; bottom: 18px; display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding: 18px 22px; background: rgba(255,255,255,.95); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-small); backdrop-filter: blur(15px); }.booking-total > div:first-child { display: grid; }.booking-total span { color: var(--muted); font-size: 10px; text-transform: uppercase; }.booking-total strong { font-family: var(--serif); font-size: 31px; }.booking-total small { color: var(--muted); font-size: 9px; }.booking-total .booking-actions { margin: 0; }
.attendee-list { display: grid; gap: 15px; }.attendee-row { display: grid; grid-template-columns: 75px 155px 1fr; gap: 24px; align-items: center; padding: 27px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }.attendee-index { display: grid; gap: 5px; padding-right: 20px; border-right: 1px solid var(--border); }.attendee-index span { color: var(--slate); font-family: var(--serif); font-size: 29px; }.attendee-index strong { color: var(--blue); font-size: 10px; }.attendee-row h2 { margin: 0 0 4px; font-size: 23px; }.attendee-row p { margin: 0; font-size: 11px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }.paynow-card, .free-confirm { position: relative; padding: 36px; overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: 14px; }.demo-ribbon { position: absolute; top: 23px; right: -43px; width: 190px; padding: 7px; color: white; background: var(--red); text-align: center; font-size: 9px; font-weight: 900; letter-spacing: .1em; transform: rotate(35deg); }.paynow-card h2, .free-confirm h2 { font-size: 35px; }.paynow-qr { position: relative; width: min(330px, 100%); margin: 28px auto; padding: 18px; border: 1px solid var(--border); border-radius: 8px; }.paynow-qr > span { position: absolute; inset: 42% 20%; display: grid; place-items: center; color: white; background: rgba(166,63,76,.9); font-size: 13px; font-weight: 900; letter-spacing: .2em; }.paynow-card dl { margin: 25px 0; }.paynow-card dl div { display: grid; grid-template-columns: 120px 1fr; padding: 10px 0; border-bottom: 1px solid var(--border); }.paynow-card dt { color: var(--muted); font-size: 11px; }.paynow-card dd { margin: 0; text-align: right; font-size: 12px; font-weight: 750; }.confirm-box { margin-top: 18px; padding: 15px; background: var(--warm); border-radius: 7px; }.free-confirm { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }.free-icon { width: 100px; height: 100px; display: grid; place-items: center; margin-bottom: 25px; color: var(--green); background: var(--green-soft); border-radius: 50%; font-family: var(--serif); font-size: 37px; }.order-summary { position: sticky; top: 100px; padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; }.order-summary h2 { font-size: 29px; }.summary-event { display: grid; gap: 2px; padding: 16px; background: var(--warm); border-radius: 7px; }.summary-event span { color: var(--muted); font-size: 10px; }.summary-lines { padding: 18px 0; border-bottom: 1px solid var(--border); }.summary-lines > div, .summary-total { display: flex; justify-content: space-between; gap: 20px; padding: 6px 0; font-size: 12px; }.summary-total { padding: 18px 0; }.summary-total strong { font-family: var(--serif); font-size: 26px; }.summary-attendees { display: grid; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }.summary-attendees span { margin-bottom: 8px; color: var(--muted); font-size: 10px; text-transform: uppercase; }.summary-attendees strong { font-size: 11px; }
.success-main { background: var(--warm); }.success-hero { padding: 80px 20px 130px; color: white; background: var(--navy); text-align: center; }.success-mark { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 25px; color: var(--navy); background: var(--gold); border-radius: 50%; font-size: 32px; }.success-hero h1 { margin-bottom: 15px; font-size: 62px; }.success-hero p { color: #c7d3df; }.success-content { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; margin-top: -80px; padding-bottom: 100px; }.success-ticket-list, .arrival-card { padding: 28px; background: var(--white); border-radius: 14px; box-shadow: var(--shadow-small); }.success-ticket-list > h2 { font-size: 30px; }.mini-ticket { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-top: 1px solid var(--border); }.mini-ticket > div { display: grid; }.mini-ticket > div span { color: var(--blue); font-size: 9px; font-weight: 800; }.mini-ticket strong { font-family: var(--serif); font-size: 22px; }.mini-ticket small { color: var(--muted); }.mini-qr { color: var(--slate); font-size: 48px; }.arrival-card h2 { font-size: 30px; }.arrival-card ol { display: grid; gap: 18px; margin: 25px 0; padding: 0; list-style: none; }.arrival-card li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; }.arrival-card li > span { width: 28px; height: 28px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 10px; font-weight: 800; }.arrival-card p { margin: 3px 0 0; font-size: 11px; }

/* Attendee account and digital ticket */
.subnav { min-height: 52px; display: flex; align-items: center; gap: 26px; border-bottom: 1px solid var(--border); }.subnav a { position: relative; color: var(--muted); font-size: 11px; font-weight: 750; }.subnav a.active { color: var(--ink); }.subnav a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -17px; height: 2px; background: var(--blue); }
.account-welcome { padding: 60px 0 92px; color: white; background: linear-gradient(120deg, #172943, #536b84); }.account-welcome h1 { margin-bottom: 10px; font-size: 57px; }.account-welcome p { color: #d1dce6; }
.account-grid { display: grid; grid-template-columns: 1fr 320px; gap: 25px; align-items: start; margin-top: -48px; padding-bottom: 100px; }.account-primary { min-width: 0; padding: 30px; background: var(--paper); border-radius: 14px 14px 0 0; }.account-side { display: grid; gap: 18px; }
.wallet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }.wallet-ticket { min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; padding: 25px; color: var(--ink); background: var(--white); border: 1px solid var(--border); border-radius: 13px; box-shadow: var(--shadow-small); transition: .2s ease; }.wallet-ticket:hover { transform: translateY(-4px); }.wallet-ticket.premium { color: white; background: var(--navy); border-color: var(--navy); }.wallet-head { display: flex; justify-content: space-between; align-items: center; }.wallet-head > span:first-child { color: var(--blue); font-family: var(--serif); font-size: 22px; }.wallet-ticket.premium .wallet-head > span:first-child { color: var(--gold); }.wallet-ticket h3 { margin: 7px 0 4px; font-family: var(--serif); font-size: 28px; font-weight: 500; }.wallet-ticket p { margin: 0; font-size: 11px; }.wallet-ticket.premium p { color: #bcc9d6; }.wallet-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding-top: 15px; border-top: 1px solid var(--border); color: var(--muted); font-size: 9px; }.wallet-ticket.premium .wallet-bottom { color: #aebdcb; border-color: rgba(255,255,255,.2); }.wallet-bottom strong { grid-column: 1/-1; margin-top: 10px; color: var(--blue); font-size: 11px; }.wallet-ticket.premium .wallet-bottom strong { color: var(--gold); }.section-title-row.section-spaced { margin-top: 50px; }.empty-state { padding: 70px 20px; background: var(--white); border: 1px dashed var(--border-dark); border-radius: 13px; text-align: center; }.empty-state > div { color: var(--slate); font-size: 45px; }.empty-state h3 { font-family: var(--serif); font-size: 27px; }.empty-state p { max-width: 420px; margin-inline: auto; }
.upcoming-card { padding: 28px; color: white; background: var(--ink); border-radius: 14px; box-shadow: var(--shadow-small); }.upcoming-card h2 { font-size: 32px; }.big-date { display: flex; align-items: center; gap: 13px; margin: 28px 0; }.big-date strong { font-family: var(--serif); font-size: 70px; line-height: .8; }.big-date span { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.upcoming-card p { color: #afb3ba; font-size: 12px; }.upcoming-card a { color: var(--gold); font-size: 11px; font-weight: 750; }.side-card, .support-card { padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: 13px; }.notification-line { display: grid; grid-template-columns: 30px 1fr; gap: 10px; padding: 12px 0; border-top: 1px solid var(--border); }.notification-line strong, .notification-line small { display: block; }.notification-line strong { font-size: 11px; }.notification-line small { color: var(--muted); font-size: 9px; }.mail-icon { width: 28px; height: 28px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; }.support-card { color: white; background: var(--slate); border-color: var(--slate); }.support-card > span { color: #dadadd; font-size: 10px; text-transform: uppercase; }.support-card h3 { margin: 6px 0 12px; font-family: var(--serif); font-size: 25px; }.support-card p { color: #ececef; font-size: 11px; }.support-card a { font-size: 11px; font-weight: 750; }
.detail-ticket-list { display: grid; }.detail-ticket-list > a { display: flex; justify-content: space-between; gap: 25px; padding: 20px 0; border-top: 1px solid var(--border); }.detail-ticket-list > a > div { display: grid; gap: 4px; }.detail-ticket-list > a > div:last-child { text-align: right; }.detail-ticket-list small, .detail-ticket-list span { color: var(--muted); font-size: 10px; }.detail-ticket-list strong { font-size: 13px; }.payment-record { display: grid; gap: 2px; margin-top: 15px; padding: 13px; background: var(--warm); border-radius: 6px; }.payment-record span, .payment-record small { color: var(--muted); font-size: 9px; }.event-summary { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }.event-summary h2 { margin-bottom: 8px; }
.ticket-main { min-height: 800px; padding: 45px 0 100px; background: var(--warm); }.ticket-layout { display: grid; grid-template-columns: 1fr 300px; gap: 20px; align-items: stretch; }.digital-ticket { overflow: hidden; color: white; background: var(--navy); border-radius: 17px; box-shadow: var(--shadow); }.digital-ticket-head { display: flex; align-items: start; justify-content: space-between; padding: 30px 34px 20px; }.digital-ticket h1 { margin: 0; font-size: 38px; }.digital-ticket-body { display: grid; grid-template-columns: 1fr 280px; align-items: center; min-height: 330px; margin: 0 15px; padding: 30px; color: var(--ink); background: var(--white); border-radius: 10px; }.ticket-person > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.ticket-person h2 { margin: 10px 0; font-size: 47px; }.ticket-person p { color: var(--blue); font-weight: 800; letter-spacing: .08em; }.ticket-qr { text-align: center; }.ticket-qr img { width: 250px; margin-inline: auto; }.ticket-qr span { display: block; color: var(--muted); font-size: 9px; }.digital-ticket-foot { display: grid; grid-template-columns: .7fr 1.5fr .7fr; gap: 20px; padding: 22px 34px 28px; }.digital-ticket-foot span, .digital-ticket-foot strong { display: block; }.digital-ticket-foot span { color: #9dafc0; font-size: 9px; text-transform: uppercase; }.digital-ticket-foot strong { font-size: 11px; }.ticket-tools { padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 17px; }.ticket-tools h2 { font-size: 31px; }.ticket-tools form { margin: 10px 0; }.ticket-details-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; margin-top: 20px; }.checklist-card, .participant-card, .draw-status-card { padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 13px; }.activity-list { display: grid; }.activity-item, .draw-entry-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: center; padding: 13px 0; border-top: 1px solid var(--border); }.activity-check { width: 28px; height: 28px; display: grid; place-items: center; color: white; background: #d6d7da; border-radius: 50%; font-size: 12px; font-weight: 800; }.activity-item.done .activity-check, .activity-check.done, .activity-check.eligible { background: var(--green); }.activity-item strong, .activity-item small, .draw-entry-list strong, .draw-entry-list small { display: block; }.activity-item small, .draw-entry-list small { color: var(--muted); font-size: 10px; }.participant-card h2, .draw-status-card h2 { font-size: 30px; }.draw-status-card { grid-column: 1/-1; color: white; background: var(--navy); border-color: var(--navy); }.draw-status-card > p { color: #b9c6d3; }.draw-entry-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }.draw-entry-list > div { border-color: rgba(255,255,255,.15); }.email-meta { display: flex; justify-content: space-between; align-items: start; margin-bottom: 25px; }.email-meta h1 { font-size: 44px; }.email-frame { overflow: auto; padding: 20px; background: #dedfe2; border: 1px solid var(--border-dark); border-radius: 10px; }.form-narrow { max-width: 650px; }.form-narrow > h1 { font-size: 50px; }.form-card { margin-top: 30px; padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }

/* Staff operations and scanner */
.staff-page { background: #eff1f3; }.staff-subnav { position: relative; }.station-chip { margin-left: auto; padding: 5px 10px; color: white; background: var(--slate); border-radius: 100px; font-size: 9px; font-weight: 800; letter-spacing: .08em; }.staff-main { min-height: 700px; padding: 36px 0 90px; }.staff-hero { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 38px; color: white; background: linear-gradient(120deg, var(--navy), var(--blue)); border-radius: 16px; }.staff-hero h1 { margin-bottom: 12px; font-size: 51px; }.staff-hero p { max-width: 680px; margin: 0; color: #d1dce7; }.mode-banner { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 15px; margin: 18px 0; padding: 15px 18px; color: #6a4b22; background: #f5ead6; border: 1px solid #e5cda4; border-radius: 9px; }.mode-banner > span { font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }.mode-banner p { margin: 0 0 0 auto; color: #7b623f; font-size: 10px; }.mode-banner.compact { margin: 15px 0; }.metric-grid { display: grid; gap: 14px; }.metric-grid article { padding: 23px; background: var(--white); border: 1px solid var(--border); border-radius: 11px; }.metric-grid span, .metric-grid small { display: block; color: var(--muted); }.metric-grid span { font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }.metric-grid strong { display: block; margin: 8px 0 3px; font-family: var(--serif); font-size: 37px; font-weight: 500; }.metric-grid small { font-size: 9px; }.staff-metrics { grid-template-columns: repeat(4,1fr); margin: 18px 0; }.staff-dashboard-grid { display: grid; grid-template-columns: 1fr 330px; gap: 18px; }.scan-list { display: grid; }.scan-line { display: grid; grid-template-columns: 35px 1fr auto; gap: 12px; align-items: center; padding: 13px 0; border-top: 1px solid var(--border); }.scan-type { width: 30px; height: 30px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; }.scan-type.gift { color: var(--gold-dark); background: #f4ead2; }.scan-line strong, .scan-line small { display: block; }.scan-line small { color: var(--muted); font-size: 9px; }.scan-line > span:last-child, .scan-line time { color: var(--muted); font-size: 9px; }.shift-card ul { display: grid; gap: 10px; margin: 25px 0; padding: 0; list-style: none; font-size: 12px; }.shift-card li span { margin-right: 8px; color: var(--green); }.shift-card > p { padding: 14px; background: var(--warm); border-radius: 7px; font-size: 10px; }
.scanner-main { min-height: 760px; padding: 30px 0 80px; }.scanner-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 20px; }.scanner-heading h1 { margin-bottom: 8px; font-size: 47px; }.scanner-heading p { margin: 0; }.scanner-status { display: grid; grid-template-columns: 10px 1fr; align-items: center; column-gap: 7px; padding: 12px 16px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; }.live-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px var(--green-soft); }.scanner-status strong { font-size: 11px; }.scanner-status small { grid-column: 2; color: var(--muted); font-size: 8px; }.scanner-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 18px; }.camera-card { position: relative; overflow: hidden; min-height: 620px; color: white; background: var(--ink); border-radius: 14px; }.camera-top, .camera-bottom { position: relative; z-index: 3; min-height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: #121318; font-size: 10px; }.camera-top .text-button { color: #c4d7e8; }.camera-bottom { position: absolute; inset: auto 0 0; color: #8e9199; }.qr-reader { min-height: 510px; }.qr-reader video { width: 100%!important; min-height: 510px; object-fit: cover; }.qr-reader > div:first-child { display: none!important; }.camera-guide { pointer-events: none; position: absolute; z-index: 2; width: min(55%, 340px); aspect-ratio: 1; left: 50%; top: 50%; transform: translate(-50%,-48%); }.camera-guide i { position: absolute; width: 42px; height: 42px; border-color: var(--gold); border-style: solid; }.camera-guide i:nth-child(1){left:0;top:0;border-width:3px 0 0 3px}.camera-guide i:nth-child(2){right:0;top:0;border-width:3px 3px 0 0}.camera-guide i:nth-child(3){left:0;bottom:0;border-width:0 0 3px 3px}.camera-guide i:nth-child(4){right:0;bottom:0;border-width:0 3px 3px 0}.camera-error { padding: 150px 30px; color: #d9dade; text-align: center; }.scanner-side { display: grid; align-content: start; gap: 18px; }.compact-panel h2 { font-size: 27px; }.compact-panel > p { font-size: 11px; }.mini-scan-list > div { display: grid; grid-template-columns: 28px 1fr auto; gap: 9px; align-items: center; padding: 10px 0; border-top: 1px solid var(--border); }.mini-scan-list p { margin: 0; }.mini-scan-list strong, .mini-scan-list small { display: block; }.mini-scan-list strong { color: var(--ink); font-size: 10px; }.mini-scan-list small, .mini-scan-list time { color: var(--muted); font-size: 8px; }.scan-result[hidden] { display: none; }.scan-result { position: fixed; z-index: 500; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(15,17,22,.8); backdrop-filter: blur(10px); }.scan-result-card { position: relative; width: min(460px,100%); padding: 42px; background: var(--white); border-radius: 18px; box-shadow: var(--shadow); text-align: center; }.scan-result-card > button:first-child { position: absolute; right: 16px; top: 10px; border: 0; background: transparent; font-size: 28px; }.result-icon { width: 82px; height: 82px; display: grid; place-items: center; margin: 0 auto 22px; color: white; background: var(--green); border-radius: 50%; font-size: 38px; }.result-warning .result-icon { background: var(--orange); }.result-error .result-icon { background: var(--red); }.scan-result-card h2 { margin: 8px 0; font-size: 39px; }.result-ticket { font-size: 11px; }.scan-result-card > strong { display: block; margin: 22px 0 5px; color: var(--green); font-size: 16px; }.result-error .scan-result-card > strong { color: var(--red); }.scan-result-card > p:last-of-type { font-size: 11px; }

/* Admin control centre */
.admin-page { background: #f0f1f3; }.admin-shell { width: 100%; display: grid; grid-template-columns: 240px 1fr; align-items: start; }.portal-nav { position: sticky; top: 0; min-height: calc(100vh - 78px); padding: 26px 18px; color: #c6cbd2; background: #171a21; }.portal-identity { padding: 0 12px 23px; border-bottom: 1px solid #30333b; }.portal-identity .eyebrow { margin-bottom: 3px; color: #778da3; }.portal-identity strong { color: white; font-family: var(--serif); font-size: 23px; }.portal-nav nav { display: grid; gap: 3px; margin-top: 20px; }.portal-nav nav a { padding: 10px 12px; border-radius: 6px; font-size: 11px; font-weight: 650; }.portal-nav nav a:hover, .portal-nav nav a.active { color: white; background: #2c3039; }.portal-nav nav a.active { box-shadow: inset 3px 0 var(--gold); }.portal-user { position: absolute; left: 30px; bottom: 25px; display: grid; }.portal-user span { color: #737780; font-size: 8px; text-transform: uppercase; }.portal-user strong { color: white; font-size: 11px; }.admin-main { min-width: 0; padding: 36px 38px 80px; }.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 28px; }.admin-top h1 { margin-bottom: 6px; font-size: 47px; }.admin-top p { margin: 0; font-size: 12px; }.admin-top-actions { display: flex; align-items: center; gap: 12px; }.live-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; color: var(--green); background: var(--green-soft); border-radius: 100px; font-size: 9px; font-weight: 800; text-transform: uppercase; }.live-chip i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }.admin-metrics { grid-template-columns: repeat(4,1fr); margin-bottom: 18px; }.admin-dashboard-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }.admin-dashboard-grid.lower { grid-template-columns: 1.25fr .75fr; margin-top: 18px; }.capacity-list { display: grid; gap: 22px; }.capacity-list > div > div { display: flex; justify-content: space-between; margin-bottom: 9px; }.capacity-list span { display: grid; }.capacity-list small { color: var(--muted); font-size: 9px; }.capacity-list > div > div > strong { font-family: var(--serif); font-size: 22px; }.capacity-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); }.capacity-summary div { display: grid; }.capacity-summary span { color: var(--muted); font-size: 9px; }.capacity-summary strong { font-size: 19px; }.audit-mini { display: grid; }.audit-mini > div { display: grid; grid-template-columns: 10px 1fr; gap: 10px; padding: 10px 0; border-top: 1px solid var(--border); }.audit-dot { width: 7px; height: 7px; margin-top: 5px; background: var(--slate); border-radius: 50%; }.audit-mini p { margin: 0; }.audit-mini strong, .audit-mini small { display: block; }.audit-mini strong { color: var(--ink); font-size: 10px; }.audit-mini small { color: var(--muted); font-size: 8px; }
.admin-form-grid { display: grid; gap: 18px; }.form-panel { padding: 30px; }.admin-form-actions { display: flex; justify-content: flex-end; }.day-admin-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }.day-admin-card { display: grid; gap: 14px; padding: 20px; background: var(--warm); border-radius: 9px; }.day-admin-card > span { color: var(--blue); font-size: 9px; font-weight: 800; text-transform: uppercase; }.simple-list { display: grid; max-height: 400px; overflow-y: auto; }.simple-list > div { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 10px; padding: 10px 0; border-top: 1px solid var(--border); }.simple-list p { margin: 0; }.simple-list strong, .simple-list small { display: block; }.simple-list strong { color: var(--ink); font-size: 10px; }.simple-list small { font-size: 8px; }.simple-list time { color: var(--muted); font-size: 9px; }.vendor-mini { width: 30px; height: 30px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 8px; font-weight: 800; }
.ticket-admin-list { display: grid; gap: 17px; }.ticket-admin-card { display: grid; grid-template-columns: 280px 1fr; gap: 30px; }.ticket-admin-summary { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding-right: 30px; border-right: 1px solid var(--border); }.ticket-code-large { width: 74px; height: 74px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-family: var(--serif); font-size: 19px; }.ticket-code-large.small { width: 46px; height: 46px; font-size: 12px; }.ticket-admin-summary h2 { margin: 9px 0 4px; font-size: 27px; }.ticket-admin-summary p { font-size: 10px; }.ticket-admin-fields { display: grid; gap: 20px; }.form-bottom { display: flex; justify-content: space-between; align-items: center; }.create-panel { margin-top: 20px; }.create-panel summary { cursor: pointer; list-style: none; }.create-panel summary > span { display: grid; }.create-panel summary strong { font-family: var(--serif); font-size: 22px; }.create-panel summary small { color: var(--muted); }.create-panel form { margin-top: 25px; padding-top: 25px; border-top: 1px solid var(--border); }
.admin-table { overflow-x: auto; }.admin-table table { min-width: 880px; }.admin-detail-grid { grid-template-columns: 1fr 330px; }.admin-ticket-list > div { display: grid; grid-template-columns: 55px 1fr auto 270px; align-items: center; gap: 12px; padding: 16px 0; border-top: 1px solid var(--border); }.admin-ticket-list p { margin: 0; }.admin-ticket-list p strong, .admin-ticket-list p small { display: block; }.admin-ticket-list p small { color: var(--muted); font-size: 9px; }.admin-ticket-list form { display: grid; grid-template-columns: 1fr auto; gap: 7px; }.admin-ticket-list input { padding: 8px; font-size: 10px; }.danger-panel { display: flex; justify-content: space-between; align-items: center; gap: 30px; border-left: 3px solid var(--red); }.danger-panel p { max-width: 650px; margin: 0; }.admin-actions { display: flex; gap: 10px; }.admin-actions form { display: flex; gap: 8px; }.admin-actions input { min-width: 220px; }
.staff-admin-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; margin-top: 20px; }.staff-member { position: relative; display: flex; flex-direction: column; }.staff-avatar { width: 57px; height: 57px; display: grid; place-items: center; margin-bottom: 17px; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-family: var(--serif); font-size: 17px; }.staff-member-head .status { position: absolute; right: 20px; top: 20px; }.staff-member-head h2 { margin-bottom: 5px; font-size: 27px; }.staff-member-head p { min-height: 42px; font-size: 10px; }.role-lock { margin: 13px 0 auto; padding: 16px; background: var(--warm); border-radius: 7px; }.role-lock span { color: var(--blue); font-size: 10px; font-weight: 800; text-transform: uppercase; }.role-lock p { margin: 3px 0 0; font-size: 10px; }.staff-meta { display: flex; justify-content: space-between; margin-top: 20px; padding-top: 13px; border-top: 1px solid var(--border); font-size: 9px; }.staff-meta span { color: var(--muted); }.form-button-align { display: flex; align-items: end; }
.draw-admin-list { display: grid; gap: 14px; }.draw-admin-card { display: grid; grid-template-columns: 110px 1fr 210px; gap: 25px; align-items: center; }.draw-day { padding-right: 20px; border-right: 1px solid var(--border); }.draw-day span, .draw-day strong { display: block; }.draw-day span { color: var(--muted); font-size: 9px; text-transform: uppercase; }.draw-day strong { font-family: var(--serif); font-size: 28px; }.draw-admin-copy h2 { margin: 10px 0 6px; font-size: 28px; }.draw-admin-copy p { margin-bottom: 6px; font-size: 11px; }.draw-admin-copy small { color: var(--muted); font-size: 9px; }.draw-admin-action { display: grid; justify-items: end; gap: 9px; }.winner-card { width: 100%; padding: 15px; color: #5e4716; background: #f4e8c9; border-radius: 8px; text-align: left; }.winner-card span, .winner-card strong, .winner-card small { display: block; }.winner-card span { font-size: 8px; text-transform: uppercase; }.winner-card strong { font-family: var(--serif); font-size: 19px; }.winner-card small { font-size: 8px; }.row-voided { opacity: .55; }.row-voided td { text-decoration-color: var(--red); }.admin-table td form { display: grid; gap: 5px; }.admin-table td form input { min-width: 160px; padding: 7px; font-size: 9px; }
.email-admin-list > div { grid-template-columns: 35px 1fr auto; }.contact-admin-list details { padding: 12px 0; border-top: 1px solid var(--border); }.contact-admin-list summary { display: flex; justify-content: space-between; gap: 10px; cursor: pointer; list-style: none; }.contact-admin-list summary span { display: grid; }.contact-admin-list summary strong { font-size: 10px; }.contact-admin-list summary small, .contact-admin-list time { color: var(--muted); font-size: 8px; }.contact-admin-list details > p { margin: 13px 0 0; padding: 12px; color: var(--ink-soft); background: var(--warm); border-radius: 6px; font-size: 10px; }.integration-card { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: center; }.integration-card h2 { font-size: 29px; }.integration-card p { margin: 0; }.integration-status { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 18px; background: var(--warm); border-radius: 8px; font-size: 10px; }.integration-status span { color: var(--muted); }.integration-status strong { text-align: right; }.audit-action { color: var(--blue); font-family: ui-monospace, monospace; font-weight: 750; }.admin-table code { display: block; max-width: 300px; overflow: hidden; color: var(--muted); font-size: 8px; text-overflow: ellipsis; }

/* Responsive */
@media (max-width: 1100px) {
  .main-nav { gap: 17px; }.hero-grid { grid-template-columns: 1fr 390px; gap: 35px; }.event-band-grid { grid-template-columns: 150px 1fr 260px; gap: 35px; }.feature-grid { grid-template-columns: repeat(2,1fr); }.account-grid { grid-template-columns: 1fr 280px; }.admin-shell { grid-template-columns: 210px 1fr; }.admin-main { padding-inline: 24px; }.portal-nav { padding-inline: 10px; }.staff-admin-grid { grid-template-columns: repeat(2,1fr); }.ticket-admin-card { grid-template-columns: 220px 1fr; }.ticket-admin-summary { grid-template-columns: 1fr; }.admin-ticket-list > div { grid-template-columns: 50px 1fr auto; }.admin-ticket-list form { grid-column: 2/-1; }
}
@media (max-width: 900px) {
  :root { --shell: min(100% - 30px, 760px); }.section { padding: 75px 0; }
  .nav-toggle { display: block; }.main-nav { position: absolute; top: 78px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 25px; background: white; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-small); }.main-nav.open { display: flex; }.main-nav > a, .main-nav .nav-form { padding: 10px 0; }.nav-form .text-button { color: var(--ink); }
  .hero { min-height: auto; }.hero-grid { grid-template-columns: 1fr; padding-top: 80px; padding-bottom: 150px; }.hero-copy h1 { font-size: 61px; }.hero-visual { max-width: 480px; margin-inline: auto; }.date-card { right: 0; }.stat-grid { grid-template-columns: repeat(2,1fr); }.stat-grid > div:nth-child(2) { border-right: 0; }.stat-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .intro-grid, .floor-grid, .faq-grid, .contact-grid, .draw-grid, .visit-notes-grid { grid-template-columns: 1fr; gap: 45px; }.event-band-grid { grid-template-columns: 130px 1fr; }.event-facts { grid-column: 1/-1; grid-template-columns: repeat(2,1fr); }.vendor-grid { grid-template-columns: repeat(2,1fr); }.programme-row { grid-template-columns: 90px 90px 1fr; }.row-arrow { display: none; }.info-card-grid { grid-template-columns: 1fr; }.schedule-day { grid-template-columns: 220px 1fr; }.footer-grid { grid-template-columns: 2fr 1fr 1fr; }.footer-grid > div:last-child { grid-column: 2; }
  .auth-main { grid-template-columns: 1fr; }.auth-art { min-height: 430px; padding: 50px 30px; }.auth-panel { min-height: 620px; }
  .pass-row { grid-template-columns: 90px 1fr; }.pass-select { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 5px 20px; }.pass-select label { grid-column: 2; grid-row: 1/4; }.attendee-row { grid-template-columns: 65px 1fr; }.attendee-row .form-grid { grid-column: 1/-1; }.checkout-grid, .success-content, .ticket-layout { grid-template-columns: 1fr; }.order-summary { position: static; }.ticket-tools { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }.ticket-tools .eyebrow, .ticket-tools h2, .ticket-tools p, .ticket-tools .centered-link { grid-column: 1/-1; }.ticket-details-grid { grid-template-columns: 1fr; }.draw-status-card { grid-column: auto; }.account-grid { grid-template-columns: 1fr; }.account-side { grid-template-columns: repeat(2,1fr); }.support-card { grid-column: 1/-1; }
  .staff-dashboard-grid, .scanner-grid { grid-template-columns: 1fr; }.camera-card { min-height: 540px; }.scanner-side { grid-template-columns: repeat(2,1fr); }.admin-shell { display: block; }.portal-nav { position: static; min-height: auto; padding: 14px 20px; }.portal-identity, .portal-user { display: none; }.portal-nav nav { display: flex; margin: 0; overflow-x: auto; }.portal-nav nav a { white-space: nowrap; }.portal-nav nav a.active { box-shadow: inset 0 -3px var(--gold); }.admin-main { padding: 30px 18px 70px; }.admin-dashboard-grid, .admin-dashboard-grid.lower, .admin-detail-grid { grid-template-columns: 1fr; }.ticket-admin-card { grid-template-columns: 1fr; }.ticket-admin-summary { grid-template-columns: 90px 1fr; padding: 0 0 25px; border: 0; border-bottom: 1px solid var(--border); }.draw-admin-card { grid-template-columns: 90px 1fr; }.draw-admin-action { grid-column: 2; justify-items: start; }.integration-card { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --shell: calc(100% - 24px); }.brand-copy small { display: none; }.brand-copy strong { font-size: 19px; }.site-header { height: 68px; }.main-nav { top: 68px; }.section { padding: 60px 0; }.section-heading h2 { font-size: 42px; }.split-heading { grid-template-columns: 1fr; gap: 20px; }.hero-grid { padding: 60px 0 130px; }.hero-copy h1 { font-size: 47px; }.hero-lead { font-size: 16px; }.poster-note { left: -5px; }.date-card { width: calc(100% - 25px); bottom: -85px; }.intro-grid h2, .floor-copy h2, .faq-grid h2 { font-size: 42px; }.prose-large p { font-size: 19px; }.feature-grid { grid-template-columns: 1fr; }.feature-card.feature-wide { grid-column: auto; }.event-band-grid { grid-template-columns: 1fr; }.event-date-block { padding: 0 0 22px; border: 0; border-bottom: 1px solid rgba(255,255,255,.2); }.event-facts { grid-template-columns: 1fr; }.vendor-grid { grid-template-columns: 1fr; }.floor-plan { min-height: 370px; padding: 12px; gap: 5px; }.programme-row { grid-template-columns: 70px 1fr; gap: 12px; }.programme-row time { grid-column: 1; }.programme-row > div:last-of-type { grid-column: 2; grid-row: 1/3; }.ticket-grid { grid-template-columns: 1fr; }.ticket-option { min-height: auto; padding: 28px; }.form-row, .form-grid.two, .form-grid.three, .note-grid { grid-template-columns: 1fr; }.span-two, .span-three { grid-column: auto; }.contact-form { padding: 23px; }.footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > div:first-child { grid-column: 1/-1; }.footer-grid > div:last-child { grid-column: auto; }.footer-bottom { display: grid; gap: 8px; }
  .page-hero { padding: 80px 0; }.page-hero h1 { font-size: 49px; }.schedule-day { grid-template-columns: 1fr; gap: 20px; padding: 25px; }.auth-art { min-height: 360px; padding: 35px 20px; }.auth-art h1 { font-size: 47px; }.auth-panel { padding-inline: 18px; }.verify-card { padding: 35px 22px; }
  .booking-main { padding-top: 32px; }.booking-progress strong { display: none; }.booking-progress > div { gap: 5px; }.booking-heading h1 { font-size: 45px; }.form-section { padding: 23px 18px; }.form-section-title { grid-template-columns: 34px 1fr; }.pass-row { grid-template-columns: 1fr; padding: 22px; }.pass-code { min-height: 55px; flex-direction: row; padding: 0 0 16px; border: 0; border-bottom: 1px solid var(--border); }.pass-select { grid-column: 1; }.booking-total { position: static; display: grid; gap: 15px; }.booking-total .booking-actions { width: 100%; }.attendee-row { grid-template-columns: 50px 1fr; padding: 20px; }.attendee-row .form-grid.three { grid-template-columns: 1fr; }.paynow-card, .free-confirm { padding: 27px 20px; }.success-hero h1 { font-size: 47px; }.success-content { margin-top: -60px; }.booking-actions { flex-wrap: wrap; }
  .subnav { overflow-x: auto; }.subnav a { white-space: nowrap; }.account-welcome h1 { font-size: 44px; }.account-grid { margin-top: -30px; }.account-primary { padding: 20px 0; }.wallet-grid, .account-side { grid-template-columns: 1fr; }.support-card { grid-column: auto; }.page-title-row { align-items: start; flex-direction: column; }.detail-grid { grid-template-columns: 1fr; }.event-summary { align-items: start; flex-direction: column; }.digital-ticket-head { padding: 25px 22px; }.digital-ticket h1 { font-size: 29px; }.digital-ticket-body { grid-template-columns: 1fr; gap: 20px; padding: 22px; }.ticket-person { text-align: center; }.ticket-person h2 { font-size: 36px; }.digital-ticket-foot { grid-template-columns: 1fr; }.ticket-tools { grid-template-columns: 1fr; }.draw-entry-list { grid-template-columns: 1fr; }.error-main { grid-template-columns: 1fr; gap: 10px; padding: 80px 0; }.error-code { font-size: 100px; }.error-main h1 { font-size: 45px; }
  .staff-hero { align-items: start; flex-direction: column; padding: 28px 22px; }.staff-hero h1 { font-size: 40px; }.mode-banner { grid-template-columns: 1fr; }.mode-banner p { margin: 0; }.staff-metrics, .admin-metrics { grid-template-columns: repeat(2,1fr); }.scanner-heading { align-items: start; flex-direction: column; }.scanner-side { grid-template-columns: 1fr; }.camera-card { min-height: 480px; }.qr-reader, .qr-reader video { min-height: 420px; }.camera-bottom { display: none; }.scan-result-card { padding: 35px 22px; }
  .admin-top { align-items: start; flex-direction: column; }.admin-top h1 { font-size: 40px; }.filter-bar { align-items: stretch; flex-direction: column; }.filter-bar label, .filter-bar .search-field { width: 100%; }.admin-dashboard-grid { gap: 12px; }.day-admin-grid, .staff-admin-grid { grid-template-columns: 1fr; }.ticket-admin-summary { grid-template-columns: 70px 1fr; }.ticket-admin-card { padding: 18px; }.form-bottom { align-items: start; flex-direction: column; gap: 15px; }.draw-admin-card { grid-template-columns: 1fr; }.draw-day { padding: 0 0 12px; border: 0; border-bottom: 1px solid var(--border); }.draw-admin-action { grid-column: 1; }.danger-panel { align-items: start; flex-direction: column; }.admin-actions, .admin-actions form { width: 100%; flex-direction: column; }.admin-actions input { min-width: 0; }.integration-status { grid-template-columns: 1fr; }.integration-status strong { text-align: left; }.capacity-summary { grid-template-columns: 1fr 1fr; }
}

@media print {
  .site-header, .site-footer, .ticket-tools, .breadcrumb, .subnav, .flash, .ticket-details-grid { display: none!important; }
  body, .ticket-main { background: white; }.ticket-main { padding: 0; }.ticket-layout { display: block; }.digital-ticket { box-shadow: none; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}

/* Ocean Gallery redesign · 2026 */
:root {
  --slate: #087ea4;
  --slate-dark: #064d6b;
  --navy: #032f4f;
  --blue: #087ea4;
  --blue-soft: #ddf6f7;
  --ink: #082432;
  --ink-soft: #284753;
  --paper: #f3fafb;
  --warm: #eaf6f8;
  --white: #fff;
  --gold: #d5b66a;
  --gold-dark: #a98232;
  --plum: #075e8c;
  --green: #087f6a;
  --green-soft: #daf4ed;
  --red: #b33e53;
  --red-soft: #fae7eb;
  --orange: #b56f29;
  --border: #cfe5ea;
  --border-dark: #b8d7de;
  --muted: #58727c;
  --aqua: #22c7d6;
  --aqua-bright: #67ecf1;
  --sea-glass: #ddf6f7;
  --ocean-deep: #021b31;
  --ocean-mid: #075e8c;
  --mist: #f3fafb;
  --shadow: 0 30px 80px rgba(3, 47, 79, .14);
  --shadow-small: 0 14px 38px rgba(3, 47, 79, .09);
  --serif: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --sans: "Aptos", "Segoe UI Variable Text", "Segoe UI", Inter, Arial, sans-serif;
  --radius: 26px;
  --shell: min(1240px, calc(100% - 48px));
}

html { scroll-padding-top: 90px; }
body { color: var(--ink); background: var(--mist); font-size: 15px; }
body.public-page { background: #f9fcfd; }
::selection { color: white; background: var(--blue); }
h1, h2 { font-family: var(--serif); font-weight: 650; letter-spacing: -.055em; }
h3, h4 { font-family: var(--sans); letter-spacing: -.025em; }
p { color: var(--muted); }
.visually-hidden { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }
.section { position: relative; padding: 112px 0; }
.eyebrow { color: var(--blue); font-size: 11px; letter-spacing: .18em; }
.eyebrow.light { color: #9eeaf0; }
.section-heading h2 { font-size: clamp(42px, 5vw, 68px); }

/* Buttons and interaction */
.button { position: relative; min-height: 50px; overflow: hidden; padding: 13px 23px; border-radius: 999px; font-weight: 760; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease, background .3s ease; }
.button::after { content: ''; position: absolute; inset: -2px; background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.32) 45%, transparent 65%); transform: translateX(-130%); transition: transform .65s ease; pointer-events: none; }
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(1, 30, 52, .2); }
.button:hover::after { transform: translateX(130%); }
.button:active { transform: translateY(-1px) scale(.985); }
.button-dark { background: linear-gradient(135deg, var(--navy), var(--ocean-mid)); }
.button-aqua { color: #02283b; background: linear-gradient(135deg, var(--aqua-bright), var(--aqua)); box-shadow: 0 12px 30px rgba(34, 199, 214, .24); }
.button-light { color: var(--navy); }
.button-gold { background: linear-gradient(135deg, #f0d891, var(--gold)); }
.button-outline { border-color: var(--border-dark); }
.button-ghost-light { background: rgba(1, 24, 43, .17); border-color: rgba(194, 244, 247, .5); backdrop-filter: blur(8px); }
.text-link, .text-button { color: var(--blue); }
.text-link span { transition-duration: .3s; }

/* Header */
.site-header { height: 74px; background: rgba(249, 253, 254, .86); border-color: rgba(174, 215, 223, .62); backdrop-filter: blur(24px) saturate(150%); }
.site-header.scrolled { background: rgba(249, 253, 254, .96); box-shadow: 0 10px 36px rgba(3,47,79,.1); }
.brand { gap: 13px; }
.brand-seal { width: 44px; height: 44px; color: white; background: linear-gradient(145deg, #0c91b4, #033657 72%); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 8px 20px rgba(3, 67, 99, .18), inset 0 0 0 4px rgba(255,255,255,.1); font-family: var(--sans); font-size: 18px; font-weight: 750; }
.brand-copy strong { color: var(--navy); font-family: var(--sans); font-size: 19px; font-weight: 850; letter-spacing: .16em; }
.brand-copy small { color: #66818b; font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.main-nav { gap: 28px; color: #234653; font-weight: 700; }
.main-nav > a:not(.button)::after { height: 2px; bottom: -10px; background: var(--aqua); }
.nav-toggle { display: none!important; }
.flash { background: #dcf5f7; border-color: #b5e8eb; }

/* Cinematic hero carousel */
.hero.hero-slider { position: relative; min-height: 830px; height: min(900px, calc(100svh - 32px)); overflow: hidden; color: white; background: var(--ocean-deep); isolation: isolate; }
.hero-track, .hero-slide { position: absolute; inset: 0; }
.hero-slide { visibility: hidden; opacity: 0; transition: opacity .9s cubic-bezier(.2,.7,.2,1), visibility .9s; }
.hero-slide.is-active { visibility: visible; opacity: 1; z-index: 1; }
.hero-slide-media { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; transform: scale(1.035); will-change: transform; }
.hero-slide:nth-child(2) .hero-slide-media, .hero-slide:nth-child(3) .hero-slide-media { object-position: center; }
.hero-slide-dragon .hero-slide-media { object-position: 63% center; }
.hero-slide.is-active .hero-slide-media { animation: oceanHeroDrift 8s ease-out both; }
.hero-slide-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,18,35,.96) 0%, rgba(2,31,56,.88) 32%, rgba(2,31,56,.38) 62%, rgba(2,25,45,.09) 100%), linear-gradient(0deg, rgba(1,20,36,.72) 0%, transparent 48%); }
.hero-slide-dragon .hero-slide-scrim { background: linear-gradient(90deg, rgba(3,15,37,.97) 0%, rgba(14,28,65,.86) 35%, rgba(34,27,84,.35) 68%, rgba(25,17,67,.08) 100%), linear-gradient(0deg, rgba(1,17,38,.78), transparent 52%); }
.hero-slide-link { position: absolute; z-index: 1; inset: 0; }
.hero-slide-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding: 76px 0 245px; }
.hero-slide-dragon .hero-slide-content { pointer-events: none; }
.hero-slide-dragon .button { pointer-events: auto; }
.hero-copy { max-width: 770px; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-title { max-width: 800px; margin: 0 0 27px; color: white; font-size: clamp(60px, 6.8vw, 96px); font-weight: 600; line-height: .96; letter-spacing: -.065em; text-wrap: balance; }
.hero-title span { color: #8eeaf0; }
.hero-lead { max-width: 620px; margin-bottom: 31px; color: #d4e9ed; font-size: 18px; line-height: 1.6; }
.hero-copy .button-row { gap: 12px; }
.hero-copy .button span { transition: transform .25s ease; }
.hero-copy .button:hover span { transform: translate(2px,-2px); }
.trust-line { margin-top: 25px; color: #b8d5da; font-size: 11px; letter-spacing: .02em; }
.trust-line span::before { content: '✓'; color: var(--aqua); }
.slider-ui { position: absolute; z-index: 5; left: 50%; bottom: 190px; display: flex; align-items: center; justify-content: space-between; transform: translateX(-50%); pointer-events: none; }
.slider-arrows, .slider-dots, .slider-pause { pointer-events: auto; }
.slider-arrows { display: flex; gap: 8px; }
.slider-arrows button, .slider-pause { width: 44px; height: 44px; display: grid; place-items: center; color: white; background: rgba(3, 38, 64, .5); border: 1px solid rgba(190, 239, 243, .35); border-radius: 50%; backdrop-filter: blur(12px); transition: .28s ease; }
.slider-arrows button:hover, .slider-pause:hover { color: var(--navy); background: var(--aqua); border-color: var(--aqua); transform: translateY(-2px); }
.slider-arrows svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.slider-dots { position: absolute; left: 50%; display: flex; align-items: center; gap: 8px; transform: translateX(-50%); }
.slider-dots button { width: 8px; height: 8px; padding: 0; background: rgba(255,255,255,.42); border: 0; border-radius: 999px; transition: width .3s ease, background .3s ease; }
.slider-dots button.active { width: 34px; background: var(--aqua); }
.slider-pause { margin-left: auto; font-size: 12px; font-weight: 900; }
.event-capsule { position: absolute; z-index: 5; left: 50%; bottom: 24px; min-height: 138px; display: grid; grid-template-columns: 170px 1fr 300px; align-items: center; color: white; background: rgba(6, 57, 86, .62); border: 1px solid rgba(173, 231, 236, .32); border-radius: 28px; box-shadow: 0 30px 70px rgba(0,0,0,.22); transform: translateX(-50%); backdrop-filter: blur(26px) saturate(145%); overflow: hidden; }
.event-capsule::before { content: ''; position: absolute; width: 290px; height: 290px; right: -120px; top: -160px; background: radial-gradient(circle, rgba(43,215,225,.2), transparent 65%); pointer-events: none; }
.event-capsule > div { min-height: 86px; display: flex; flex-direction: column; justify-content: center; padding: 15px 30px; border-right: 1px solid rgba(191, 236, 240, .2); }
.event-capsule > div:last-child { border: 0; }
.event-capsule span, .event-capsule small { color: #afd1d7; font-size: 9px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.event-capsule strong { font-size: 15px; }
.event-capsule-date { align-items: center; text-align: center; }
.event-capsule-date strong { color: #90edf0; font-size: 38px; font-weight: 600; letter-spacing: -.06em; line-height: 1; }
.event-capsule-place strong { margin: 4px 0; font-size: 16px; }
.event-capsule-countdown > span { margin-bottom: 7px; }
.event-capsule .countdown { border-color: rgba(201,239,242,.24); }
.event-capsule .countdown > div { padding: 4px 8px; border-color: rgba(201,239,242,.2); }
.event-capsule .countdown strong { color: white; font-family: var(--sans); font-size: 24px; font-weight: 650; }
.event-capsule .countdown span { color: #8fbcc5; font-size: 7px; }

@keyframes oceanHeroDrift { from { transform: scale(1.035) translate3d(0,0,0); } to { transform: scale(1.085) translate3d(-.6%, -.35%, 0); } }

/* Public content surfaces */
.stat-strip { background: linear-gradient(100deg, #033657, #087ea4 55%, #05a9ba); }
.stat-grid > div { padding-block: 28px; border-color: rgba(255,255,255,.2); }
.stat-grid strong { font-family: var(--sans); font-size: 35px; font-weight: 650; }
.stat-grid span { color: #d4f4f5; }
.intro-section { overflow: hidden; background: radial-gradient(circle at 82% 14%, rgba(34,199,214,.12), transparent 25%), #f9fcfd; }
.intro-section::before { content: ''; position: absolute; width: 580px; height: 580px; left: -390px; top: 200px; border: 1px solid rgba(8,126,164,.1); border-radius: 50%; box-shadow: 0 0 0 70px rgba(8,126,164,.025), 0 0 0 140px rgba(8,126,164,.02); }
.intro-grid { gap: 95px; }
.intro-title-full { display: inline; }
.intro-title-mobile { display: none; }
.prose-large p { color: #234a58; font-family: var(--sans); font-size: 22px; line-height: 1.65; letter-spacing: -.02em; }
.feature-grid { gap: 18px; }
.feature-card { min-height: 315px; padding: 32px; background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(230,247,249,.8)); border: 1px solid rgba(168,215,223,.65); border-radius: 28px; box-shadow: 0 18px 50px rgba(3,47,79,.06); transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease; }
.feature-card::after { content: ''; position: absolute; width: 160px; height: 160px; right: -70px; bottom: -80px; background: radial-gradient(circle, rgba(34,199,214,.22), transparent 68%); transition: transform .45s ease; }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(34,199,214,.65); box-shadow: 0 28px 60px rgba(3,47,79,.12); }
.feature-card:hover::after { transform: scale(1.35); }
.feature-card h3 { margin-top: 100px; font-family: var(--sans); font-size: 27px; font-weight: 650; letter-spacing: -.04em; }
.feature-number { padding: 6px 9px; color: var(--blue); background: rgba(221,246,247,.9); border-radius: 999px; }
.feature-dark { background: linear-gradient(145deg, #032f4f, #075e8c); border-color: rgba(123,224,231,.3); }
.feature-dark p { color: #bcdbe0; }
.feature-blue { background: linear-gradient(135deg, #087ea4, #18b9c8); border-color: transparent; }
.feature-blue p { color: #e0f8f9; }
.coin-stack i { border-color: rgba(8,126,164,.6); box-shadow: inset 0 0 0 7px transparent, inset 0 0 0 8px rgba(34,199,214,.32); }
.event-band { overflow: hidden; background: radial-gradient(circle at 85% 10%, rgba(48,207,218,.22), transparent 30%), linear-gradient(120deg, #021c33, #064f74); }
.event-band::after { content: ''; position: absolute; width: 700px; height: 150px; right: -80px; bottom: -85px; border: 1px solid rgba(127,229,235,.16); border-radius: 50%; box-shadow: 0 0 0 38px rgba(127,229,235,.035), 0 0 0 76px rgba(127,229,235,.025); }
.event-date-block { border-color: rgba(167,225,230,.24); }
.event-date-block strong { color: #8ce6eb; font-family: var(--sans); font-weight: 600; letter-spacing: -.06em; }
.vendor-grid { gap: 18px; }
.vendor-card { background: rgba(255,255,255,.88); border-color: rgba(175,215,223,.75); border-radius: 26px; box-shadow: 0 15px 40px rgba(3,47,79,.045); }
.vendor-card:hover { border-color: var(--aqua); box-shadow: 0 24px 55px rgba(3,47,79,.11); }
.vendor-monogram { width: 58px; height: 58px; color: white; background: linear-gradient(145deg, var(--blue), #20b9c7); border-radius: 18px; font-family: var(--sans); font-weight: 750; box-shadow: 0 12px 24px rgba(8,126,164,.19); }
.vendor-card h3 { font-family: var(--sans); font-weight: 650; }
.floor-section { background: linear-gradient(180deg, #eef9fa, #f8fcfd); }
.floor-plan { overflow: hidden; padding: 24px; background: rgba(255,255,255,.9); border-color: rgba(151,204,214,.7); border-radius: 28px; box-shadow: 0 28px 70px rgba(3,47,79,.1); }
.floor-zone { border-radius: 12px; }
.zone-stage { background: #087ea4; }.zone-a1, .zone-a2 { background: #d0f0f2; }.zone-b1, .zone-b2 { background: #48aabf; }.zone-c1, .zone-c2 { background: #dcefdc; }.zone-gallery { background: #032f4f; }.zone-service { background: #16aebd; }
.programme-section { background: #f9fcfd; }
.programme-list { display: grid; gap: 12px; border: 0; }
.programme-row { min-height: 120px; padding: 22px 25px; background: rgba(255,255,255,.84); border: 1px solid rgba(180,218,225,.75); border-radius: 20px; box-shadow: 0 12px 32px rgba(3,47,79,.04); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.programme-row:hover { background: white; border-color: var(--aqua); box-shadow: 0 18px 40px rgba(3,47,79,.09); transform: translateX(5px); }
.programme-row h3 { font-family: var(--sans); font-weight: 650; }
.draw-section { overflow: hidden; background: radial-gradient(circle at 15% 10%, rgba(34,199,214,.18), transparent 27%), radial-gradient(circle at 88% 90%, rgba(8,126,164,.42), transparent 35%), linear-gradient(135deg, #01192f, #043e62); }
.draw-section::after { content: ''; position: absolute; inset: 0; opacity: .18; background-image: repeating-radial-gradient(circle at 80% 20%, transparent 0 30px, rgba(129,231,237,.22) 31px 32px); pointer-events: none; }
.draw-grid { position: relative; z-index: 1; }
.prize-card { background: rgba(225,249,250,.08); border-color: rgba(164,230,234,.2); border-radius: 22px; backdrop-filter: blur(10px); transition: transform .3s ease, background .3s ease; }
.prize-card:hover { background: rgba(225,249,250,.12); transform: translateX(5px); }
.prize-medal { border-color: #6fe4ea; box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(111,228,234,.28); }
.prize-medal span { color: #89e9ed; font-family: var(--sans); }
.prize-card h3 { font-family: var(--sans); font-weight: 650; }
.tickets-section { background: radial-gradient(circle at 50% 0, rgba(34,199,214,.12), transparent 28%), #edf8fa; }
.ticket-grid { gap: 26px; }
.ticket-option { overflow: hidden; padding: 42px; background: rgba(255,255,255,.94); border-color: rgba(166,211,219,.78); border-radius: 30px; box-shadow: 0 24px 65px rgba(3,47,79,.1); transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease; }
.ticket-option:hover { transform: translateY(-8px); box-shadow: 0 34px 78px rgba(3,47,79,.16); }
.ticket-option.ticket-premium { background: radial-gradient(circle at 100% 0, rgba(52,205,216,.22), transparent 28%), linear-gradient(145deg, #021c34, #064f73); border: 1px solid rgba(99,220,228,.32); }
.ticket-option.ticket-premium::before { content: ''; position: absolute; width: 260px; height: 260px; right: -130px; bottom: -145px; border: 1px solid rgba(117,227,233,.2); border-radius: 50%; box-shadow: 0 0 0 35px rgba(117,227,233,.035), 0 0 0 70px rgba(117,227,233,.025); }
.ticket-option h3, .ticket-price strong { font-family: var(--sans); font-weight: 650; }
.ticket-premium .ticket-topline { color: #9beaf0; }
.ticket-premium li span { color: var(--aqua); }
.faq-section { background: #f9fcfd; }
.faq-list { display: grid; gap: 10px; border: 0; }
.faq-list details { padding: 22px 24px; background: white; border: 1px solid rgba(178,216,223,.72); border-radius: 18px; transition: border-color .3s ease, box-shadow .3s ease, background .3s ease; }
.faq-list details[open] { background: #f5fcfd; border-color: #76dce3; box-shadow: 0 15px 35px rgba(3,47,79,.07); }
.faq-list summary { font-family: var(--sans); font-size: 18px; font-weight: 650; }
.faq-list summary::after { color: var(--blue); }
.contact-section { overflow: hidden; background: radial-gradient(circle at 0 100%, rgba(34,199,214,.3), transparent 32%), linear-gradient(125deg, #032f4f, #087ea4); }
.contact-section::after { content: ''; position: absolute; width: 520px; height: 520px; right: -260px; top: -320px; border: 1px solid rgba(188,238,241,.2); border-radius: 50%; box-shadow: 0 0 0 45px rgba(188,238,241,.035), 0 0 0 90px rgba(188,238,241,.025); }
.contact-grid { position: relative; z-index: 1; }
.contact-details a { font-family: var(--sans); font-weight: 650; }
.contact-form { padding: 38px; background: rgba(255,255,255,.94); border: 1px solid rgba(220,248,249,.6); border-radius: 28px; box-shadow: 0 30px 70px rgba(1,29,51,.18); backdrop-filter: blur(15px); }
.contact-form .button { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.demo-notice { color: #24515d; background: #dff4f5; }

/* Footer and common application surfaces */
.site-footer { padding-top: 78px; color: #b5d0d5; background: linear-gradient(145deg, #01182c, #032f4f); }
.brand-footer .brand-seal { border-color: rgba(160,230,235,.5); }
.footer-bottom { color: #789ca4; border-color: rgba(164,218,223,.16); }
.demo-label { color: #91e8ec; border-color: rgba(112,224,231,.32); border-radius: 999px; }
label { color: var(--ink-soft); }
input, select, textarea { min-height: 47px; padding: 12px 14px; border-color: var(--border-dark); border-radius: 13px; }
input:focus, select:focus, textarea:focus { border-color: var(--aqua); box-shadow: 0 0 0 4px rgba(34,199,214,.13); }
.panel, .detail-card, .table-card, .filter-bar { background: rgba(255,255,255,.92); border-color: rgba(179,215,222,.78); border-radius: 20px; box-shadow: 0 12px 34px rgba(3,47,79,.055); }
.panel-heading h2, .section-title-row h2, .detail-card h2 { font-family: var(--sans); font-weight: 650; }
th { color: #53717c; background: #edf8fa; }
td { border-color: #e2eff1; }
.page-hero { position: relative; overflow: hidden; background: radial-gradient(circle at 82% 0, rgba(45,211,224,.28), transparent 28%), linear-gradient(120deg, #021b31, #075e8c); }
.page-hero::before { content: ''; position: absolute; width: 560px; height: 560px; right: -280px; bottom: -370px; border: 1px solid rgba(173,235,239,.2); border-radius: 50%; box-shadow: 0 0 0 55px rgba(173,235,239,.035), 0 0 0 110px rgba(173,235,239,.025); }
.page-hero > .shell { position: relative; z-index: 1; }
.info-card, .schedule-day, .note-grid article { border: 1px solid rgba(174,215,223,.7); border-radius: 22px; box-shadow: 0 14px 35px rgba(3,47,79,.05); }
.schedule-day-head h3, .schedule-item h4, .note-grid h3 { font-family: var(--sans); font-weight: 650; }
.programme-page, .booking-main, .verify-main { background: radial-gradient(circle at 90% 5%, rgba(34,199,214,.1), transparent 24%), var(--mist); }
.cta-section { background: radial-gradient(circle at 50% 100%, rgba(34,199,214,.24), transparent 35%), linear-gradient(120deg, #021b31, #075e8c); }
.auth-main { background: #f8fcfd; }
.auth-art { background: linear-gradient(90deg, rgba(1,24,44,.9), rgba(2,45,73,.35)), url('/assets/images/msif-ocean-discovery-v2.webp') center/cover no-repeat; }
.auth-art::before { content: 'MSIF'; color: rgba(165,237,241,.08); font-family: var(--sans); font-weight: 800; }
.auth-art::after { border-color: rgba(126,229,235,.2); box-shadow: inset 0 0 0 30px transparent, inset 0 0 0 31px rgba(126,229,235,.12), inset 0 0 0 65px transparent, inset 0 0 0 66px rgba(126,229,235,.08); }
.auth-box h2 { font-family: var(--sans); font-weight: 650; }
.booking-progress b { background: linear-gradient(145deg, var(--blue), var(--aqua)); }
.form-section, .pass-row, .attendee-row, .order-summary, .paynow-card, .free-confirm, .success-card { border-radius: 22px; }
.booking-heading h1, .success-hero h1, .account-welcome h1, .staff-hero h1, .admin-top h1 { font-family: var(--sans); font-weight: 650; }
.account-welcome { background: radial-gradient(circle at 85% 5%, rgba(34,199,214,.28), transparent 28%), linear-gradient(120deg, #021b31, #075e8c); }
.wallet-pass, .account-side > *, .digital-ticket { border-radius: 22px; box-shadow: 0 16px 42px rgba(3,47,79,.08); }
.staff-hero { background: radial-gradient(circle at 100% 0, rgba(34,199,214,.25), transparent 30%), linear-gradient(130deg, #032f4f, #087ea4); border-radius: 24px; }
.camera-card { border-radius: 24px; }
.admin-page { background: #edf7f9; }
.portal-nav { background: radial-gradient(circle at 0 0, rgba(34,199,214,.12), transparent 28%), linear-gradient(180deg, #011b30, #032f4f); }
.portal-identity strong { font-family: var(--sans); font-weight: 700; }
.portal-nav nav a { border-radius: 10px; }
.portal-nav nav a:hover, .portal-nav nav a.active { background: rgba(94,214,222,.13); }
.portal-nav nav a.active { box-shadow: inset 3px 0 var(--aqua); }
.metric-card, .day-admin-card, .role-lock, .integration-status { border-radius: 16px; }
.capacity-list > div > div > strong, .ticket-code-large, .draw-day strong, .winner-card strong, .staff-avatar { font-family: var(--sans); }
.account-signout-panel { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 22px; padding: 24px 26px; background: rgba(255,255,255,.72); border: 1px solid var(--border); border-radius: 20px; }
.account-signout-panel .eyebrow { margin-bottom: 4px; }
.account-signout-panel h2 { margin-bottom: 4px; font-size: 23px; }
.account-signout-panel p { margin: 0; font-size: 12px; }

/* Scroll reveals */
.reveal-ready { opacity: 0; transform: translateY(22px); transition: opacity .68s ease var(--reveal-delay, 0ms), transform .68s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms); }
.reveal-ready.is-visible { opacity: 1; transform: translateY(0); }

/* Mobile app navigation and role-aware more sheet */
.mobile-app-nav, .mobile-sheet-layer { display: none; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 780px); }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  body.mobile-sheet-open { overflow: hidden; }
  .site-header { height: 66px; }
  .header-inner { justify-content: center; }
  .brand-copy small { display: none; }
  .main-nav { display: none!important; }
  .subnav, .portal-nav { display: none!important; }
  .section { padding: 82px 0; }

  .hero.hero-slider { min-height: 790px; height: min(840px, calc(100svh - 8px)); }
  .hero-slide-media { object-position: 64% center; }
  .hero-slide:nth-child(2) .hero-slide-media { object-position: 64% center; }
  .hero-slide:nth-child(3) .hero-slide-media { object-position: 68% center; }
  .hero-slide-scrim { background: linear-gradient(90deg, rgba(1,18,35,.95) 0%, rgba(2,31,56,.78) 64%, rgba(2,31,56,.32) 100%), linear-gradient(0deg, rgba(1,20,36,.82), transparent 55%); }
  .hero-slide-content { align-items: flex-start; padding: 110px 0 250px; }
  .hero-copy { max-width: 650px; }
  .hero-title { font-size: clamp(52px, 9vw, 72px); }
  .slider-ui { bottom: calc(100% - 100svh + 328px + env(safe-area-inset-bottom)); }
  .event-capsule { bottom: calc(100% - 100svh + 162px + env(safe-area-inset-bottom)); min-height: 150px; grid-template-columns: 135px 1fr 245px; border-radius: 24px; }
  .event-capsule > div { padding-inline: 20px; }
  .event-capsule-date strong { font-size: 31px; }

  .mobile-app-nav { position: fixed; z-index: 500; left: 10px; right: 10px; bottom: max(8px, env(safe-area-inset-bottom)); min-height: 68px; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); align-items: end; padding: 7px max(5px, env(safe-area-inset-right)) 6px max(5px, env(safe-area-inset-left)); color: #a9cbd1; background: rgba(2, 29, 50, .94); border: 1px solid rgba(126,214,221,.22); border-radius: 23px; box-shadow: 0 18px 55px rgba(0,17,31,.32); backdrop-filter: blur(22px) saturate(150%); transition: transform .28s ease, opacity .28s ease; }
  .mobile-tab { position: relative; min-width: 0; min-height: 54px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 5px 2px; color: inherit; background: transparent; border: 0; border-radius: 16px; font-size: 9px; font-weight: 700; line-height: 1; letter-spacing: .01em; transition: color .25s ease, background .25s ease, transform .25s ease; -webkit-tap-highlight-color: transparent; }
  .mobile-tab svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-tab::after { content: ''; position: absolute; width: 4px; height: 4px; left: 50%; bottom: 1px; background: transparent; border-radius: 50%; transform: translateX(-50%); }
  .mobile-tab.active { color: #86edf1; background: rgba(66,207,217,.1); }
  .mobile-tab.active::after { background: #6fe8ed; box-shadow: 0 0 10px #6fe8ed; }
  .mobile-tab-primary .mobile-tab-icon { width: 40px; height: 40px; display: grid; place-items: center; margin-top: -17px; color: #013148; background: linear-gradient(145deg, #8cf1f3, #23c6d4); border: 4px solid #03243c; border-radius: 15px; box-shadow: 0 9px 24px rgba(15,196,211,.3); transform: rotate(-4deg); transition: transform .25s ease; }
  .mobile-tab-primary .mobile-tab-icon svg { width: 21px; height: 21px; }
  .mobile-tab-primary:hover .mobile-tab-icon, .mobile-tab-primary.active .mobile-tab-icon { transform: rotate(0) translateY(-2px); }
  .mobile-keyboard-open .mobile-app-nav { opacity: 0; transform: translateY(calc(110% + env(safe-area-inset-bottom))); pointer-events: none; }

  .mobile-sheet-layer { position: fixed; z-index: 610; inset: 0; display: block; }
  .mobile-sheet-layer[hidden] { display: none; }
  .mobile-sheet-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; background: rgba(1,17,30,.55); border: 0; opacity: 0; backdrop-filter: blur(5px); transition: opacity .28s ease; }
  .mobile-more-sheet { position: absolute; left: 8px; right: 8px; bottom: max(8px, env(safe-area-inset-bottom)); max-height: min(78vh, 650px); overflow-y: auto; padding: 8px 20px calc(18px + env(safe-area-inset-bottom)); color: var(--ink); background: rgba(247,252,253,.98); border: 1px solid rgba(181,221,227,.85); border-radius: 28px; box-shadow: 0 35px 90px rgba(0,19,33,.34); transform: translateY(calc(100% + 30px)); transition: transform .32s cubic-bezier(.2,.8,.2,1); }
  .mobile-sheet-layer.is-open .mobile-sheet-backdrop { opacity: 1; }
  .mobile-sheet-layer.is-open .mobile-more-sheet { transform: translateY(0); }
  .mobile-sheet-handle { width: 38px; height: 4px; margin: 2px auto 12px; background: #b7d5db; border-radius: 99px; }
  .mobile-sheet-heading { display: flex; align-items: center; justify-content: space-between; padding: 8px 0 16px; border-bottom: 1px solid var(--border); }
  .mobile-sheet-heading > div { display: grid; }
  .mobile-sheet-heading span, .mobile-sheet-status span { color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-sheet-heading strong { font-size: 20px; letter-spacing: -.03em; }
  .mobile-sheet-heading button { width: 40px; height: 40px; color: var(--ink); background: var(--sea-glass); border: 0; border-radius: 50%; font-size: 24px; }
  .mobile-sheet-status { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 16px 0; padding: 14px 16px; background: var(--sea-glass); border-radius: 15px; }
  .mobile-sheet-status strong { color: var(--blue); font-size: 12px; }
  .mobile-sheet-links { display: grid; gap: 7px; margin: 14px 0; }
  .mobile-sheet-grid { grid-template-columns: 1fr 1fr; }
  .mobile-sheet-links a { min-height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; background: white; border: 1px solid var(--border); border-radius: 14px; font-size: 12px; font-weight: 700; }
  .mobile-sheet-links a::after { content: '\2197'; color: var(--blue); }
  .mobile-sheet-signout { margin-top: 12px; }
  .mobile-sheet-signout button { width: 100%; min-height: 48px; color: #8d3140; background: var(--red-soft); border: 1px solid #efcbd2; border-radius: 14px; font-weight: 750; }

  .footer-bottom { padding-bottom: 10px; }
  .admin-shell { display: block; }
  .admin-main { width: 100%; min-width: 0; max-width: 100%; padding-bottom: 95px; overflow-x: clip; }
  .admin-dashboard-grid, .admin-dashboard-grid > *, .admin-main .panel, .admin-main .table-scroll { min-width: 0; max-width: 100%; }
  .admin-main .table-scroll { width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; }
  .account-signout-panel { align-items: stretch; flex-direction: column; }
  .account-signout-panel .button { width: 100%; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 24px); }
  .section { padding: 66px 0; }
  .site-header { height: 62px; }
  .brand-seal { width: 39px; height: 39px; font-size: 16px; }
  .brand-copy strong { font-size: 17px; }

  .hero.hero-slider { min-height: 748px; height: calc(100svh - 2px); max-height: 820px; }
  .hero-slide-content { padding: 82px 0 235px; }
  .hero-title { margin-bottom: 20px; font-size: clamp(44px, 13vw, 58px); line-height: .98; }
  .hero-lead { max-width: 95%; margin-bottom: 22px; font-size: 15px; line-height: 1.55; }
  .hero-copy .button-row { max-width: 340px; }
  .hero-copy .button { min-height: 46px; padding: 11px 17px; font-size: 12px; }
  .trust-line { gap: 10px 14px; margin-top: 18px; font-size: 9px; }
  .trust-line span:last-child { display: none; }
  .slider-ui { bottom: calc(100% - 100svh + 321px + env(safe-area-inset-bottom)); }
  .slider-arrows button { width: 40px; height: 40px; }
  .slider-pause { width: 40px; height: 40px; }
  .event-capsule { bottom: calc(100% - 100svh + 147px + env(safe-area-inset-bottom)); min-height: 148px; grid-template-columns: 112px 1fr; border-radius: 21px; }
  .event-capsule > div { min-height: 62px; padding: 10px 14px; }
  .event-capsule-date { grid-row: 1/3; border-bottom: 0!important; }
  .event-capsule-date strong { font-size: 27px; }
  .event-capsule-place { border-right: 0!important; border-bottom: 1px solid rgba(191,236,240,.2); }
  .event-capsule-place strong { margin: 2px 0; font-size: 12px; }
  .event-capsule-place small { display: none; }
  .event-capsule-countdown { border-right: 0!important; }
  .event-capsule-countdown > span { display: none; }
  .event-capsule .countdown strong { font-size: 18px; }

  .stat-grid > div { padding: 22px 10px; }
  .stat-grid strong { font-size: 29px; }
  .intro-grid { gap: 34px; }
  .prose-large p { font-size: 18px; }
  .feature-grid { margin-top: 52px; }
  .feature-card { min-height: 275px; padding: 26px; }
  .feature-card h3 { margin-top: 82px; font-size: 24px; }
  .event-band h2 { font-size: 39px; }
  .vendor-card { min-height: 260px; }
  .floor-plan { padding: 13px; border-radius: 20px; }
  .programme-row { min-height: 112px; padding: 18px 16px; }
  .ticket-option { padding: 29px; border-radius: 24px; }
  .ticket-option h3 { font-size: 31px; }
  .faq-list details { padding: 18px; }
  .faq-list summary { font-size: 16px; }
  .contact-form { padding: 24px; border-radius: 22px; }

  .auth-art { min-height: 315px; }
  .auth-panel { min-height: 560px; }
  .page-hero { padding: 74px 0; }
  .page-hero h1 { font-size: 46px; }
  .panel { border-radius: 17px; }
  .mobile-app-nav { left: 7px; right: 7px; bottom: max(6px, env(safe-area-inset-bottom)); border-radius: 21px; }
  .mobile-tab { font-size: 8px; }
  .mobile-tab svg { width: 20px; height: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; scroll-behavior: auto!important; transition-duration: .01ms!important; transition-delay: 0ms!important; }
  .hero-slide-media { transform: none!important; }
  .reveal-ready { opacity: 1!important; transform: none!important; }
  .slider-pause { display: none; }
}

/* Ocean Gallery v4 · editorial imagery and refined admin controls */
.section-story { position: relative; min-height: 430px; margin-top: 64px; margin-bottom: 26px; overflow: hidden; color: white; background: #032f4f; border: 1px solid rgba(120,215,222,.28); border-radius: 34px; box-shadow: 0 32px 78px rgba(3,47,79,.16); isolation: isolate; }
.section-story::after { content: ''; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(1,24,43,.9) 0%, rgba(2,35,60,.68) 38%, rgba(2,35,60,.08) 76%), linear-gradient(0deg, rgba(1,24,43,.72), transparent 48%); }
.section-story img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.8,.2,1), filter .7s ease; }
.section-story:hover img { transform: scale(1.035); filter: saturate(1.07); }
.section-story figcaption { position: absolute; z-index: 2; left: clamp(28px,5vw,64px); bottom: clamp(28px,5vw,58px); width: min(470px, calc(100% - 56px)); }
.section-story figcaption span, .programme-story figcaption span, .draw-visual figcaption span { display: block; margin-bottom: 12px; color: #8cebf0; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-story figcaption strong { display: block; max-width: 440px; font-size: clamp(28px,3.3vw,46px); font-weight: 650; line-height: 1.06; letter-spacing: -.045em; }
.section-story figcaption p { max-width: 410px; margin: 16px 0 0; color: #cae4e8; font-size: 13px; line-height: 1.65; }
.section-story-craft img { object-position: center 43%; }
.section-story-exhibitors { margin-top: 46px; margin-bottom: 34px; }
.section-story-exhibitors::after { background: linear-gradient(90deg, rgba(1,24,43,.92), rgba(2,35,60,.62) 39%, rgba(2,35,60,.06) 75%); }
.section-story + .feature-grid { margin-top: 24px; }

.programme-story { min-height: 330px; display: grid; grid-template-columns: 1.35fr .65fr; margin-bottom: 28px; overflow: hidden; color: white; background: linear-gradient(135deg, #011a30, #064d70); border: 1px solid rgba(111,224,231,.24); border-radius: 30px; box-shadow: 0 26px 65px rgba(3,47,79,.14); }
.programme-story img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; object-position: center; transition: transform .9s cubic-bezier(.2,.8,.2,1); }
.programme-story:hover img { transform: scale(1.035); }
.programme-story figcaption { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px,4vw,52px); }
.programme-story figcaption strong { display: block; font-size: clamp(25px,2.6vw,38px); line-height: 1.08; letter-spacing: -.04em; }
.programme-story figcaption small { margin-top: 20px; color: #b9dce1; font-size: 10px; line-height: 1.7; }

.draw-grid { grid-template-columns: .7fr .9fr 1.15fr; gap: 28px; align-items: start; }
.draw-visual { position: relative; min-height: 480px; margin: 0; overflow: hidden; border: 1px solid rgba(144,229,234,.25); border-radius: 28px; box-shadow: 0 25px 65px rgba(0,14,27,.28); }
.draw-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(1,20,38,.92), transparent 62%); }
.draw-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; transition: transform .9s cubic-bezier(.2,.8,.2,1); }
.draw-visual:hover img { transform: scale(1.04); }
.draw-visual figcaption { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 24px; }
.draw-visual figcaption strong { display: block; font-size: 24px; line-height: 1.08; letter-spacing: -.035em; }

.admin-page { background: radial-gradient(circle at 88% 2%, rgba(34,199,214,.13), transparent 23%), #edf7f9; }
.admin-main { position: relative; }
.admin-top { position: relative; overflow: hidden; padding: 30px 32px; color: white; background: radial-gradient(circle at 92% 15%, rgba(70,225,232,.25), transparent 30%), linear-gradient(125deg, #011b30, #075e88); border: 1px solid rgba(107,221,228,.24); border-radius: 26px; box-shadow: 0 24px 58px rgba(3,47,79,.15); }
.admin-top::after { content: ''; position: absolute; width: 230px; height: 230px; right: -100px; bottom: -170px; border: 1px solid rgba(149,235,239,.2); border-radius: 50%; box-shadow: 0 0 0 34px rgba(149,235,239,.04), 0 0 0 68px rgba(149,235,239,.025); }
.admin-top > * { position: relative; z-index: 1; }
.admin-top .eyebrow { color: #8be9ed; }
.admin-top h1 { color: white; letter-spacing: -.045em; }
.admin-top p { color: #c5e0e5; }
.admin-top .button-outline { color: white; background: rgba(255,255,255,.08); border-color: rgba(184,239,242,.36); }
.admin-top .button-outline:hover { background: rgba(255,255,255,.16); }
.admin-top .live-chip, .admin-top > .status { color: #8ff0d3; background: rgba(19,122,95,.32); border: 1px solid rgba(124,236,203,.24); }
.admin-page .panel, .admin-page .table-card, .admin-page .filter-bar { border-color: rgba(153,207,216,.72); box-shadow: 0 16px 44px rgba(3,47,79,.07); }
.admin-page .panel { transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.admin-page .panel:hover { border-color: rgba(97,200,210,.68); box-shadow: 0 22px 55px rgba(3,47,79,.1); }
.admin-page .form-panel { padding: 32px; }
.admin-page .form-panel .panel-heading { margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid #dcecef; }
.admin-page input, .admin-page select, .admin-page textarea { background: #f9fdfd; border-color: #bed9de; }
.admin-page input:hover, .admin-page select:hover, .admin-page textarea:hover { border-color: #8fc8d0; }
.admin-page .button-dark { background: linear-gradient(135deg, #032f4f, #0783a8); box-shadow: 0 10px 24px rgba(3,78,111,.16); }
.admin-page .button-outline { color: #075f80; background: #f7fcfd; border-color: #b6d9de; }
.admin-page .create-panel > summary { padding: 3px; }
.admin-page .create-panel > summary strong { font-family: var(--sans); font-weight: 650; }
.portal-nav nav a { position: relative; padding-block: 11px; }
.portal-nav nav a.active::after { content: ''; position: absolute; width: 5px; height: 5px; right: 10px; top: 50%; background: #7ee8ed; border-radius: 50%; box-shadow: 0 0 10px #7ee8ed; transform: translateY(-50%); }

.switch-label, .switch-label.inline { position: relative; width: 100%; min-height: 74px; display: grid; grid-template-columns: 52px minmax(0,1fr) auto; align-items: center; gap: 14px; margin-top: 10px; padding: 13px 15px; color: var(--ink); background: #f5fafb; border: 1px solid #d4e7ea; border-radius: 18px; cursor: pointer; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.switch-label:hover { background: white; border-color: #8fd5dc; box-shadow: 0 12px 28px rgba(3,47,79,.07); }
.switch-label:has(input:checked) { background: linear-gradient(135deg, #effbfb, #e1f7f8); border-color: #79d6dd; }
.switch-label::after { content: 'Off'; grid-column: 3; grid-row: 1; align-self: center; padding: 6px 9px; color: #71838a; background: #e5ecee; border-radius: 999px; font-size: 9px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.switch-label:has(input:checked)::after { content: 'On'; color: #087456; background: #d9f4e9; }
.switch-label input, .check-label.switch-label input { appearance: none; width: 52px; height: 30px; grid-column: 1; grid-row: 1; position: relative; margin: 0; padding: 0; background: #aabac0; border: 0; border-radius: 999px; box-shadow: inset 0 2px 5px rgba(1,29,51,.18); cursor: pointer; transition: background .28s ease, box-shadow .28s ease; }
.switch-label input::after { content: ''; position: absolute; width: 24px; height: 24px; left: 3px; top: 3px; background: white; border-radius: 50%; box-shadow: 0 2px 7px rgba(1,29,51,.3); transform: translateX(0); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.switch-label input:checked { background: linear-gradient(135deg, #078caf, #27c9cf); box-shadow: 0 6px 15px rgba(17,171,188,.24), inset 0 1px 3px rgba(1,29,51,.12); }
.switch-label input:checked::after { transform: translateX(22px); }
.switch-label input:focus-visible { outline: 3px solid rgba(34,199,214,.28); outline-offset: 3px; }
.switch-label > span { min-width: 0; grid-column: 2; grid-row: 1; display: grid; gap: 3px; }
.switch-label strong { color: #153f4d; font-size: 12px; line-height: 1.3; }
.switch-label small { color: #698189; font-size: 9px; font-weight: 500; line-height: 1.45; }
.form-bottom .switch-label { max-width: 390px; margin: 0; }
.staff-member .switch-label { margin-top: 0; }
.draw-admin-action form:last-child { width: 100%; }
.draw-admin-action form:last-child .text-link { width: 100%; min-height: 42px; padding: 9px 13px; border: 1px solid #b9d9de; border-radius: 13px; background: #f6fbfc; font-size: 10px; font-weight: 800; letter-spacing: .03em; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.draw-admin-action form:last-child .text-link:hover { background: #e9f8f9; border-color: #67cbd4; transform: translateY(-1px); }
.draw-admin-card:has(.status-active) .draw-admin-action form:last-child .text-link { color: #9a3545; background: #fff5f6; border-color: #efcbd1; }
.draw-admin-card:has(.status-cancelled) .draw-admin-action form:last-child .text-link { color: #087456; background: #effaf6; border-color: #bde8d8; }

@media (max-width: 1100px) {
  .draw-grid { grid-template-columns: .8fr 1.2fr; }
  .draw-intro, .draw-visual { grid-column: 1; }
  .draw-visual { min-height: 330px; }
  .prize-list { grid-column: 2; grid-row: 1 / 3; }
}

@media (max-width: 900px) {
  .section-story { min-height: 400px; margin-top: 42px; }
  .programme-story { grid-template-columns: 1.1fr .9fr; }
  .draw-grid { grid-template-columns: 1fr; gap: 28px; }
  .draw-intro, .draw-visual, .prize-list { grid-column: 1; grid-row: auto; }
  .draw-visual { min-height: 420px; }
  .admin-top { padding: 26px; }
}

@media (max-width: 640px) {
  .section-story { min-height: 390px; border-radius: 25px; }
  .section-story::after { background: linear-gradient(0deg, rgba(1,24,43,.94), rgba(1,24,43,.18) 78%); }
  .section-story img { object-position: 58% center; }
  .section-story-exhibitors img { object-position: 54% center; }
  .section-story figcaption { left: 22px; right: 22px; bottom: 22px; width: auto; }
  .section-story figcaption strong { font-size: 29px; }
  .section-story figcaption p { font-size: 12px; }
  .programme-story { grid-template-columns: 1fr; border-radius: 24px; }
  .programme-story img { min-height: 245px; height: 245px; }
  .programme-story figcaption { padding: 25px; }
  .draw-visual { min-height: 350px; border-radius: 24px; }
  .admin-top { padding: 23px 21px; border-radius: 22px; }
  .admin-top h1 { font-size: 35px; }
  .admin-page .form-panel { padding: 22px 18px; }
  .switch-label, .switch-label.inline { grid-template-columns: 52px minmax(0,1fr); min-height: 76px; padding: 12px 13px; }
  .switch-label::after { position: absolute; right: 12px; top: 10px; padding: 4px 7px; }
  .switch-label > span { padding-right: 32px; }
  .form-bottom .switch-label { max-width: none; }
}

/* Mobile Landing v5 · compact, touch-first and overflow-safe */
@media (max-width: 900px) {
  html, body { max-width: 100%; overflow-x: clip; }
  #discover, #exhibitors, #programme, #lucky-draw, #tickets, #contact { scroll-margin-top: 66px; }
  .site-header { height: 54px; background: linear-gradient(90deg, rgba(248,253,254,.98), rgba(233,248,250,.96)); border-bottom-color: rgba(122,201,211,.42); box-shadow: 0 7px 24px rgba(3,47,79,.07); }
  .site-header::after { content: 'Singapore 2026'; position: absolute; right: 16px; top: 50%; padding: 5px 9px; color: #2f6f7e; background: rgba(209,241,244,.78); border: 1px solid rgba(119,205,214,.38); border-radius: 999px; font-size: 8px; font-weight: 850; letter-spacing: .12em; line-height: 1; text-transform: uppercase; transform: translateY(-50%); }
  .header-inner { justify-content: flex-start; }
  .header-inner .brand { gap: 9px; }
  .header-inner .brand-seal { width: 34px; height: 34px; font-size: 14px; box-shadow: 0 5px 13px rgba(3,67,99,.17), inset 0 0 0 3px rgba(255,255,255,.1); }
  .header-inner .brand-copy strong { font-size: 15px; letter-spacing: .14em; }
  .public-page .section-heading { margin-bottom: 36px; }
  .public-page .split-heading { align-items: start; }
  .public-page .split-heading > p { max-width: 610px; }
  .event-capsule > div, .event-capsule-place, .event-capsule-countdown { min-width: 0; }
  .event-capsule-place strong, .event-capsule-place small { overflow-wrap: anywhere; }
  .floor-grid { align-items: start; }
  .contact-details a { overflow-wrap: anywhere; }
  .mobile-app-nav { max-width: 700px; margin-inline: auto; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 24px); }
  .site-header { height: 50px; }
  .site-header::after { right: 12px; }
  .header-inner .brand-seal { width: 32px; height: 32px; font-size: 13px; }
  .header-inner .brand-copy strong { font-size: 14px; }
  .public-page .section { padding: 64px 0; }
  .public-page .section-heading { margin-bottom: 30px; }
  .public-page .section-heading h2,
  .public-page .intro-grid h2,
  .public-page .floor-copy h2,
  .public-page .faq-grid h2 { font-size: clamp(35px, 10.8vw, 43px); line-height: 1.02; }
  .public-page .split-heading { gap: 16px; }
  .public-page .split-heading > p,
  .public-page .centered-heading p { font-size: 15px; line-height: 1.65; }
  .public-page .eyebrow { margin-bottom: 11px; font-size: 10px; }

  .hero.hero-slider { min-height: 780px; height: 780px; max-height: none; }
  .hero-slide-media { object-position: 62% center; }
  .hero-slide:nth-child(2) .hero-slide-media { object-position: 61% center; }
  .hero-slide:nth-child(3) .hero-slide-media { object-position: 66% center; }
  .hero-slide-scrim { background: linear-gradient(90deg, rgba(1,18,35,.96) 0%, rgba(2,31,56,.82) 72%, rgba(2,31,56,.44) 100%), linear-gradient(0deg, rgba(1,20,36,.88), transparent 60%); }
  .hero-slide-content { padding: 76px 0 258px; }
  .hero-copy .eyebrow { margin-bottom: 17px; font-size: 9px; line-height: 1.5; }
  .hero-title { max-width: 355px; margin-bottom: 18px; font-size: clamp(42px, 12.3vw, 54px); line-height: .98; letter-spacing: -.058em; }
  .hero-lead { max-width: 355px; margin-bottom: 20px; font-size: 14px; line-height: 1.55; }
  .hero-copy .button { min-height: 48px; }
  .trust-line { margin-top: 16px; }
  .slider-ui { bottom: calc(250px + env(safe-area-inset-bottom)); }
  .event-capsule { bottom: calc(82px + env(safe-area-inset-bottom)); width: var(--shell); min-height: 148px; }
  .event-capsule > div { min-width: 0; overflow: hidden; }

  .stat-grid > div { min-height: 90px; display: grid; align-content: center; }
  .stat-grid span { max-width: 130px; margin-inline: auto; line-height: 1.35; }
  .intro-grid { gap: 26px; }
  .intro-title-full { display: none; }
  .intro-title-mobile { display: grid; gap: .08em; }
  .public-page .intro-grid .intro-title { max-width: 100%; font-size: clamp(31px, 9vw, 37px); line-height: 1.12; letter-spacing: -.04em; text-wrap: balance; overflow-wrap: normal; word-break: normal; }
  html[lang="zh-CN"] .public-page .intro-grid .intro-title { font-size: clamp(28px, 8.3vw, 33px); line-height: 1.24; letter-spacing: -.025em; line-break: strict; word-break: keep-all; }
  .prose-large p { font-size: 17px; line-height: 1.7; }

  .section-story { min-height: 370px; margin-top: 34px; margin-bottom: 24px; }
  .section-story figcaption { left: 20px; right: 20px; bottom: 20px; }
  .section-story figcaption strong { font-size: clamp(27px, 8.5vw, 32px); }

  .feature-grid,
  .vendor-grid { width: 100%; display: flex; gap: 14px; overflow-x: auto; overflow-y: hidden; padding: 2px max(12px, calc((100% - var(--shell)) / 2)) 16px; scroll-padding-inline: 12px; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .feature-grid::-webkit-scrollbar,
  .vendor-grid::-webkit-scrollbar { display: none; }
  .feature-grid { margin-top: 38px; }
  .feature-card,
  .vendor-card { flex: 0 0 min(82vw, 310px); scroll-snap-align: start; }
  .feature-card { min-height: 268px; }
  .feature-card h3 { margin-top: 78px; }
  .vendor-card { min-height: 250px; padding: 25px; }
  .vendor-monogram { margin-bottom: 27px; }
  .section-story-exhibitors { margin-bottom: 24px; }

  .event-band-grid { gap: 28px; }
  .event-band h2 { font-size: clamp(34px, 10vw, 40px); }
  .event-facts { gap: 20px; }
  .event-facts .button { width: 100%; }

  .floor-grid { gap: 34px; }
  .legend { grid-template-columns: 1fr 1fr; gap: 10px 12px; margin-top: 24px; font-size: 11px; }
  .floor-plan { min-height: 350px; gap: 4px; padding: 11px; }
  .floor-zone { padding: 5px; font-size: 8px; line-height: 1.25; }
  .floor-label, .floor-entrance { font-size: 8px; letter-spacing: .06em; }

  .programme-story { margin-bottom: 22px; }
  .programme-story img { min-height: 225px; height: 225px; }
  .programme-story figcaption { padding: 23px 21px; }
  .programme-story figcaption strong { font-size: 27px; }
  .programme-row { grid-template-columns: 62px 1fr; min-height: 108px; gap: 10px; padding: 17px 14px; }
  .programme-row h3 { font-size: 19px; }

  .draw-grid { gap: 24px; }
  .draw-intro h2 { font-size: clamp(45px, 13vw, 58px); }
  .draw-visual { min-height: 330px; }
  .prize-card { grid-template-columns: 54px minmax(0,1fr); gap: 13px; padding: 18px 15px; }
  .prize-medal { width: 50px; height: 50px; }
  .prize-card h3 { font-size: 20px; }

  .ticket-grid { gap: 17px; }
  .ticket-option { padding: 27px 24px; }
  .ticket-option h3 { margin-top: 28px; font-size: 29px; }
  .ticket-price strong { font-size: 45px; }
  .ticket-option > p { min-height: auto; }
  .ticket-option .button { width: 100%; min-height: 50px; }

  .faq-grid { gap: 31px; }
  .faq-list details { padding: 18px 17px; }
  .faq-list summary { gap: 14px; font-size: 15px; line-height: 1.4; }

  .contact-grid { gap: 35px; }
  .contact-grid h2 { font-size: clamp(43px, 13vw, 56px); }
  .contact-grid > div > p { font-size: 14px; }
  .contact-details { margin-top: 32px; }
  .contact-details a { max-width: 100%; font-size: clamp(16px, 5vw, 20px); }
  .contact-form { gap: 15px; padding: 21px; }
  .contact-form .button { width: 100%; min-height: 50px; }
  .demo-notice { padding: 14px 18px; line-height: 1.55; }

  .site-footer { padding-top: 60px; }
  .footer-grid { gap: 34px 24px; padding-bottom: 38px; }
}

@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-grid > div:not(:first-child) { padding-top: 4px; }
}

@media (max-width: 360px) {
  .site-header::after { content: 'SG 2026'; padding-inline: 8px; }
  .hero.hero-slider { min-height: 820px; height: 820px; }
  .hero-slide-content { padding-top: 48px; }
  .hero-title { font-size: 42px; }
  .hero-copy .button-row { display: grid; grid-template-columns: 1fr; max-width: 100%; }
  .hero-copy .button { width: 100%; }
  .hero-copy .button-ghost-light, .hero-copy .trust-line { display: none; }
  .slider-ui { bottom: calc(250px + env(safe-area-inset-bottom)); }
  .event-capsule { grid-template-columns: 96px minmax(0,1fr); }
  .event-capsule > div { padding-inline: 10px; }
  .event-capsule-place strong { font-size: 11px; }
  .mobile-tab { font-size: 7.5px; }
  .mobile-tab svg { width: 19px; height: 19px; }
}

/* Mobile Account v7 · wallet hierarchy and order cards */
@media (max-width: 640px) {
  .account-page .account-welcome { padding: 42px 0 70px; }
  .account-page .account-welcome h1 { max-width: 330px; margin-bottom: 9px; font-size: clamp(35px, 10.5vw, 42px); line-height: 1.03; letter-spacing: -.045em; }
  .account-page .account-welcome p { margin: 0; font-size: 14px; }
  .account-page .account-grid { margin-top: -28px; padding-bottom: 84px; }
  .account-page .account-primary { padding: 24px 18px; background: rgba(244,250,251,.98); border: 1px solid rgba(172,215,222,.68); border-radius: 24px; box-shadow: 0 20px 48px rgba(3,47,79,.09); }
  .wallet-title-row { align-items: stretch; flex-direction: column; gap: 14px; margin-bottom: 20px; }
  .wallet-title-row .button { width: 100%; min-height: 48px; border-radius: 14px; }
  .wallet-grid { gap: 14px; }
  .wallet-ticket { min-height: 245px; padding: 22px; border-radius: 20px; }
  .wallet-ticket h3 { font-size: 26px; }
  .wallet-bottom { grid-template-columns: auto minmax(0,1fr); column-gap: 12px; }
  .wallet-bottom > span:first-child { white-space: nowrap; }
  .wallet-bottom > span:nth-child(2) { min-width: 0; overflow-wrap: anywhere; text-align: right; }
  .section-title-row.section-spaced { margin-top: 40px; margin-bottom: 18px; }

  .account-orders-card { overflow: visible; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
  .account-orders, .account-orders tbody { width: 100%; display: block; }
  .account-orders thead { display: none; }
  .account-orders tr { display: grid; overflow: hidden; background: white; border: 1px solid rgba(169,211,219,.72); border-radius: 19px; box-shadow: 0 12px 32px rgba(3,47,79,.065); }
  .account-orders tr + tr { margin-top: 13px; }
  .account-orders td { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 16px; border-bottom: 1px solid #e3eff1; font-size: 12px; text-align: right; }
  .account-orders td::before { content: attr(data-label); flex: 0 0 auto; color: #6c858d; font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
  .account-orders td:first-child { padding-block: 15px; background: linear-gradient(90deg, #edf9fa, #f8fcfd); }
  .account-orders td:first-child strong { color: #075e7b; font-size: 13px; letter-spacing: .02em; }
  .account-orders time { white-space: nowrap; font-size: 11px; }
  .account-orders td:last-child { padding: 0; border-bottom: 0; }
  .account-orders td:last-child::before { display: none; }
  .account-orders td:last-child a { width: 100%; min-height: 46px; display: flex; align-items: center; justify-content: center; color: #075f7f; background: #edf8fa; font-size: 11px; font-weight: 800; }
}

@media (max-width: 360px) {
  .account-page .account-primary { padding: 21px 14px; }
  .account-orders td { gap: 10px; padding-inline: 13px; }
  .account-orders time { font-size: 10.5px; }
}

/* EN / 中文 locale control */
html[lang="zh-CN"] .main-nav { gap: 22px; }
@supports (word-break: auto-phrase) {
  html[lang="zh-CN"] .public-page h1,
  html[lang="zh-CN"] .public-page h2,
  html[lang="zh-CN"] .public-page h3 { word-break: auto-phrase; }
}
@media (max-width: 900px) {
  .header-inner { justify-content: space-between; }
  .header-actions { margin-left: auto; }
  .header-actions .main-nav { display: none!important; }
  .language-switch a { height: 27px; }
}
@media (max-width: 640px) {
  .site-header::after { display: none; content: none; }
  .language-switch { gap: 2px; padding: 2px; }
  .language-switch a { min-width: 31px; height: 26px; padding-inline: 6px; font-size: 9px; }
  .language-switch a:last-child { min-width: 39px; }
}

@media print {
  .mobile-app-nav, .mobile-sheet-layer, .slider-ui, .language-switch { display: none!important; }
  body { padding-bottom: 0!important; }
}

/* MSIF 2026 organiser materials v13 */
.real-material-story { min-height: 580px; }
.real-material-story img { object-position: 72% center; }
.real-material-story::after { background: linear-gradient(90deg, rgba(1,24,43,.96) 0%, rgba(2,35,60,.82) 42%, rgba(2,35,60,.14) 76%), linear-gradient(0deg, rgba(1,24,43,.72), transparent 55%); }
.exhibitor-section { background: linear-gradient(180deg, #f7fbfc, #eef7f8); }
.exhibitor-tools { display: grid; grid-template-columns: minmax(240px,1fr) minmax(220px,.55fr) auto; align-items: end; gap: 14px; margin-bottom: 24px; padding: 18px; background: rgba(255,255,255,.92); border: 1px solid #cfe4e8; border-radius: 22px; box-shadow: 0 16px 40px rgba(3,47,79,.05); }
.exhibitor-tools label { display: grid; gap: 7px; color: #48636d; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.exhibitor-tools input, .exhibitor-tools select { width: 100%; min-height: 46px; padding: 10px 13px; color: var(--ink); background: white; border: 1px solid #c9dde1; border-radius: 12px; font-size: 13px; text-transform: none; }
.exhibitor-result-count { align-self: center; padding: 8px 12px; color: #075f7f; background: #e2f6f7; border-radius: 999px; font-size: 10px; font-weight: 850; white-space: nowrap; }
.vendor-directory { grid-template-columns: repeat(4,minmax(0,1fr)); }
.vendor-card-real { min-height: 245px; display: flex; flex-direction: column; padding: 19px; }
.vendor-logo-frame { height: 98px; display: grid; place-items: center; margin-bottom: 18px; overflow: hidden; background: white; border: 1px solid #e2edef; border-radius: 15px; }
.vendor-logo-frame img { width: 100%; height: 100%; object-fit: contain; }
.vendor-logo-frame .vendor-monogram { width: 58px; height: 58px; display: grid; place-items: center; margin: 0; color: #087a95; background: #e3f6f7; border-radius: 50%; font-size: 15px; font-weight: 850; }
.vendor-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.vendor-status { color: #17735c; font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.vendor-card-real h3 { margin: 14px 0 8px; font-size: 19px; line-height: 1.22; overflow-wrap: anywhere; }
.vendor-card-real > strong { margin-top: auto; }
[data-exhibitor-directory]:not(.show-all):not(.is-filtering) .vendor-card-overflow { display: none; }
.vendor-card-real.is-filter-hidden { display: none!important; }
.exhibitor-more { display: flex; justify-content: center; margin-top: 28px; }
.official-venue-grid { grid-template-columns: minmax(300px,.82fr) minmax(420px,1.18fr); }
.venue-facts-list { display: grid; gap: 10px; margin: 27px 0 30px; padding: 0; list-style: none; }
.venue-facts-list li { position: relative; padding-left: 24px; color: #365462; font-size: 13px; }
.venue-facts-list li::before { content: '✓'; position: absolute; left: 0; color: #09aeba; font-weight: 900; }
.official-venue-card { position: relative; min-height: 600px; margin: 0; overflow: hidden; background: #042f50; border-radius: 30px; box-shadow: 0 28px 65px rgba(3,47,79,.18); }
.official-venue-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; }
.official-venue-card figcaption { position: absolute; left: 22px; right: 22px; bottom: 22px; display: grid; gap: 3px; padding: 17px 20px; color: white; background: rgba(2,31,55,.84); border: 1px solid rgba(255,255,255,.22); border-radius: 17px; backdrop-filter: blur(16px); }
.official-venue-card figcaption strong { font-size: 18px; }.official-venue-card figcaption span { color: #bfe9ec; font-size: 11px; }
.dragon-section { color: white; background: radial-gradient(circle at 75% 20%, rgba(121,39,146,.5), transparent 35%), linear-gradient(135deg, #071b35, #2d1650 66%, #731c67); }
.dragon-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(420px,1.2fr); align-items: center; gap: 70px; }
.dragon-copy h2 { margin-bottom: 24px; font-size: clamp(42px,5.2vw,70px); }.dragon-copy > p { color: #d8cee4; font-size: 17px; }
.dragon-copy dl { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin-top: 36px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 17px; }
.dragon-copy dl div { display: grid; gap: 4px; padding: 15px 17px; background: rgba(255,255,255,.07); }.dragon-copy dt { color: #b9a4d0; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.dragon-copy dd { margin: 0; font-size: 14px; font-weight: 750; }
.dragon-visual { position: relative; min-height: 690px; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 32px; box-shadow: 0 36px 85px rgba(0,0,0,.34); }
.dragon-visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; }
.dragon-visual figcaption { position: absolute; left: 20px; right: 20px; bottom: 20px; padding: 14px 18px; color: white; background: rgba(13,15,38,.76); border-radius: 14px; font-size: 11px; text-align: center; backdrop-filter: blur(14px); }
.exhibit-section { color: white; background: linear-gradient(145deg,#063456,#087591); }.exhibit-section .section-heading p { color: #c7e8ea; }.exhibit-section .eyebrow { color: #75e4e9; }
.booth-package-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.booth-package-grid article { min-height: 260px; display: flex; flex-direction: column; padding: 23px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.19); border-radius: 20px; }
.booth-package-grid article > span { color: #77e5e9; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }.booth-package-grid h3 { margin: 18px 0 12px; font-size: 19px; }.booth-package-grid article > strong { font-size: 30px; }.booth-package-grid small { color: #c9e8ea; }.booth-package-grid p { margin: auto 0 0; color: #cae4e7; font-size: 11px; }
.exhibit-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 24px; padding: 24px 26px; color: #082e4b; background: #dff6f6; border-radius: 21px; }.exhibit-cta strong { font-size: 19px; }.exhibit-cta p { margin: 4px 0 0; color: #53717c; }.exhibit-cta .button { background: #082e4b; color: white; }
.visitor-map-section { background: #edf7f8; }.visitor-map-grid { display: grid; grid-template-columns: minmax(380px,1.05fr) minmax(300px,.95fr); align-items: center; gap: 70px; }.visitor-map-card { margin: 0; overflow: hidden; background: white; border: 1px solid #cfe4e8; border-radius: 28px; box-shadow: 0 25px 65px rgba(3,47,79,.12); }.visitor-map-card img { width: 100%; max-height: 780px; object-fit: cover; object-position: top; }.visitor-map-card figcaption { padding: 14px 18px; color: #667c84; font-size: 10px; }.visitor-map-copy h2 { font-size: clamp(40px,5vw,66px); }
.guide-logo-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }.guide-logo-grid article { min-width: 0; display: grid; gap: 6px; padding: 14px; background: white; border: 1px solid #d7e7ea; border-radius: 16px; }.guide-logo-grid img { width: 100%; height: 72px; object-fit: contain; }.guide-logo-grid span { color: #16809a; font-size: 8px; font-weight: 850; text-transform: uppercase; }.guide-logo-grid strong { min-width: 0; font-size: 11px; overflow-wrap: anywhere; }
.cta-copy { color: #cae1e6; text-align: center; }
.vendor-create-form { display: grid; gap: 16px; margin: 20px 0 24px; padding: 20px; background: #f1f8f9; border: 1px solid #d2e7e9; border-radius: 18px; }.vendor-create-form .button { justify-self: start; }
.vendor-admin-list { display: grid; gap: 8px; max-height: 820px; overflow-y: auto; padding-right: 4px; }.vendor-admin-item { background: white; border: 1px solid #dbe7e9; border-radius: 14px; }.vendor-admin-item summary { display: grid; grid-template-columns: 48px minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 12px; cursor: pointer; list-style: none; }.vendor-admin-item summary::-webkit-details-marker { display: none; }.vendor-admin-item summary > span:nth-child(2) { min-width: 0; display: grid; }.vendor-admin-item summary strong { font-size: 11px; overflow-wrap: anywhere; }.vendor-admin-item summary small { color: var(--muted); font-size: 8px; }.vendor-admin-logo { width: 44px; height: 36px; display: grid; place-items: center; overflow: hidden; color: #087c96; background: #edf8f9; border-radius: 9px; font-size: 9px; font-weight: 850; }.vendor-admin-logo img { width: 100%; height: 100%; object-fit: contain; }.vendor-edit-form { padding: 18px; border-top: 1px solid #e3ecee; }.compact-switch { max-width: 380px; }.vendor-admin-item .status { font-size: 8px; }

@media (max-width: 1100px) {
  .vendor-directory { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .booth-package-grid { grid-template-columns: repeat(3,1fr); }
  .guide-logo-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 900px) {
  .exhibitor-tools { grid-template-columns: 1fr 1fr; }.exhibitor-result-count { grid-column: 1/-1; justify-self: start; }
  .vendor-directory { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .official-venue-grid, .dragon-grid, .visitor-map-grid { grid-template-columns: 1fr; gap: 40px; }
  .official-venue-card { min-height: 700px; }.dragon-visual { min-height: 760px; }.visitor-map-card { max-width: 620px; margin-inline: auto; }
  .guide-logo-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 640px) {
  .real-material-story { min-height: 460px; }.real-material-story img { object-position: 62% center; }
  .exhibitor-tools { grid-template-columns: 1fr; padding: 14px; border-radius: 18px; }.exhibitor-result-count { grid-column: auto; }
  .vendor-grid.vendor-directory { width: var(--shell); display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-inline: auto; padding: 0; overflow: visible; scroll-snap-type: none; }
  .vendor-directory .vendor-card { min-width: 0; min-height: 214px; padding: 12px; border-radius: 17px; }.vendor-logo-frame { height: 75px; margin-bottom: 12px; border-radius: 11px; }.vendor-logo-frame .vendor-monogram { width: 48px; height: 48px; font-size: 12px; }.vendor-card-real h3 { margin: 11px 0 7px; font-size: 14px; line-height: 1.25; }.vendor-card-meta { align-items: start; flex-direction: column; gap: 3px; }.vendor-card-real > strong { font-size: 9px; line-height: 1.3; }
  .official-venue-card { min-height: 520px; border-radius: 23px; }
  .dragon-copy h2 { font-size: 42px; }.dragon-copy dl { grid-template-columns: 1fr 1fr; }.dragon-visual { min-height: 530px; border-radius: 24px; }
  .booth-package-grid { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }.booth-package-grid article { flex: 0 0 min(78vw,280px); scroll-snap-align: start; }.exhibit-cta { align-items: stretch; flex-direction: column; }.exhibit-cta .button { width: 100%; }
  .visitor-map-card img { max-height: 640px; }.guide-logo-grid { grid-template-columns: repeat(2,1fr); }.guide-logo-grid img { height: 60px; }
  .vendor-admin-item summary { grid-template-columns: 42px minmax(0,1fr); }.vendor-admin-item summary .status { grid-column: 2; justify-self: start; }.vendor-admin-list { max-height: none; }
}
@media (max-width: 360px) {
  .vendor-grid.vendor-directory { grid-template-columns: 1fr; }.vendor-directory .vendor-card { min-height: 205px; }
}

/* MSIF digital art direction v14 */
.real-material-story { min-height: 0; }
.real-material-story img { position: relative; inset: auto; display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; object-position: center; }
.real-material-story::after { background: linear-gradient(90deg, rgba(1,24,43,.96) 0%, rgba(2,35,60,.78) 39%, rgba(2,35,60,.08) 78%), linear-gradient(0deg, rgba(1,24,43,.68), transparent 55%); }

.floor-plan-showcase { display: grid; grid-template-columns: minmax(300px,420px) minmax(0,1fr); align-items: center; gap: clamp(40px,7vw,92px); margin-top: 46px; margin-bottom: 34px; padding: clamp(24px,4vw,54px); overflow: hidden; background: radial-gradient(circle at 0 0, rgba(47,211,220,.18), transparent 34%), linear-gradient(135deg,#031d35,#064f71); border: 1px solid rgba(118,218,225,.3); border-radius: 34px; box-shadow: 0 30px 76px rgba(3,47,79,.16); }
.floor-plan-visual { width: 100%; max-width: 420px; margin: 0; padding: 12px 12px 0; overflow: hidden; background: #fff; border: 1px solid rgba(169,226,231,.4); border-radius: 25px; box-shadow: 0 26px 60px rgba(0,0,0,.24); }
.official-plan-crop { position: relative; width: 100%; aspect-ratio: 675 / 1255; overflow: hidden; background: #fff; border-radius: 16px; }
.official-plan-crop > img { position: absolute; top: 0; left: 0; width: 189.63%; max-width: none; height: auto; transform: translate(-1.95%,-13.54%); }
.floor-plan-visual figcaption { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 7px 16px; }
.floor-plan-visual figcaption span { color: #087a95; font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.floor-plan-visual figcaption strong { color: #082f4c; font-size: 12px; }
.floor-plan-reading { color: white; }
.floor-plan-reading .eyebrow { color: #79e6ea; }
.floor-plan-reading h3 { max-width: 720px; margin: 12px 0 20px; font-size: clamp(38px,5vw,68px); line-height: 1.02; letter-spacing: -.055em; }
.floor-plan-reading > p { max-width: 620px; color: #c3e0e4; font-size: 15px; line-height: 1.7; }
.plan-legend { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px 18px; margin: 28px 0 30px; padding: 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(187,235,238,.18); border-radius: 18px; }
.plan-legend span { display: flex; align-items: center; gap: 10px; color: #e3f5f6; font-size: 10px; }
.plan-legend i { width: 13px; height: 13px; flex: 0 0 13px; border: 1px solid rgba(255,255,255,.34); border-radius: 4px; }
.plan-standard { background: #e9eb00; }.plan-corner { background: #91a321; }.plan-wall { background: #aaa5cc; }.plan-booth { background: #ef919f; }.plan-corner-booth, .plan-entrance { background: #ee1d27; }
.floor-plan-reading .button-outline { color: white; border-color: rgba(255,255,255,.38); }
.floor-plan-reading .button-dark { color: #052c47; background: #79e6ea; }

.official-venue-card { min-height: 0; aspect-ratio: 3 / 2; }
.official-venue-card img { object-position: center; }
.dragon-section { background: radial-gradient(circle at 83% 12%, rgba(15,183,198,.32), transparent 30%), radial-gradient(circle at 12% 88%, rgba(196,148,68,.12), transparent 32%), linear-gradient(135deg,#021a31,#053b5d 58%,#072945); }
.dragon-copy > p { color: #c6e0e4; }
.dragon-copy dt { color: #7edce2; }
.dragon-visual { min-height: 0; aspect-ratio: 3 / 2; }
.dragon-visual img { object-position: center; }

.visitor-map-card { width: 100%; max-width: 460px; justify-self: center; }
.visitor-map-card .official-plan-crop { border-radius: 0; }
.visitor-map-card figcaption { display: grid; gap: 4px; padding: 17px 19px; }
.visitor-map-card figcaption span { color: #073e5d; font-size: 12px; font-weight: 800; }
.visitor-map-card figcaption small { color: #667c84; font-size: 9px; line-height: 1.5; }
.visitor-map-card figcaption a { color: #087e9c; font-weight: 800; }

@media (max-width: 900px) {
  .floor-plan-showcase { grid-template-columns: minmax(280px,390px) minmax(0,1fr); gap: 36px; }
  .floor-plan-reading h3 { font-size: clamp(38px,5.8vw,54px); }
  .official-venue-card, .dragon-visual { min-height: 0; }
  .visitor-map-card { max-width: 440px; }
}

@media (max-width: 720px) {
  .real-material-story { display: block; }
  .real-material-story::after { display: none; }
  .real-material-story img { position: relative; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
  .real-material-story figcaption { position: relative; inset: auto; width: auto; padding: 24px; background: linear-gradient(135deg,#021d35,#064f71); }
  .real-material-story figcaption strong { font-size: 28px; }
  .floor-plan-showcase { grid-template-columns: 1fr; gap: 32px; padding: 20px; border-radius: 25px; }
  .floor-plan-visual { max-width: 380px; justify-self: center; border-radius: 20px; }
  .floor-plan-reading h3 { font-size: 38px; }
  .plan-legend { grid-template-columns: 1fr 1fr; padding: 16px; }
  .floor-plan-reading .button-row { align-items: stretch; flex-direction: column; }
  .floor-plan-reading .button { width: 100%; }
  .official-venue-card, .dragon-visual { min-height: 0; aspect-ratio: 3 / 2; border-radius: 23px; }
  .official-venue-card figcaption { left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; }
  .dragon-visual figcaption { left: 12px; right: 12px; bottom: 12px; padding: 10px 12px; font-size: 9px; }
  .visitor-map-card { max-width: 380px; }
}

/* Interactive Hall 406 booth map v15 */
.interactive-plan-section { margin: 52px 0 42px; }
.interactive-plan-heading { margin-bottom: 24px; }
.interactive-plan-heading h2 { max-width: 760px; }
.interactive-plan-app { display: grid; grid-template-columns: minmax(280px,330px) minmax(0,1fr); overflow: hidden; background: #eaf5f6; border: 1px solid #c9e1e5; border-radius: 32px; box-shadow: 0 30px 75px rgba(3,47,79,.14); }
.interactive-plan-sidebar { display: flex; flex-direction: column; gap: 16px; padding: 24px; color: white; background: radial-gradient(circle at 0 0, rgba(45,211,220,.19), transparent 35%), linear-gradient(160deg,#021d35,#064c6e); }
.map-filter-card { display: grid; gap: 14px; padding: 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(187,235,238,.18); border-radius: 20px; }
.map-filter-card label { display: grid; gap: 7px; color: #a9d5da; font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.map-filter-card input, .map-filter-card select { width: 100%; min-height: 45px; padding: 10px 12px; color: #092f49; background: #f8ffff; border: 1px solid transparent; border-radius: 11px; font-size: 12px; text-transform: none; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.map-filter-card input:focus, .map-filter-card select:focus { border-color: #59d9e1; box-shadow: 0 0 0 3px rgba(89,217,225,.18); }
.map-results-line { display: flex; align-items: center; gap: 7px; padding-top: 2px; color: #bcdde0; font-size: 9px; }
.map-results-line strong { color: #7fe8ed; font-size: 19px; }.map-results-line button { margin-left: auto; padding: 6px 9px; color: #bce5e8; background: transparent; border: 1px solid rgba(188,229,232,.28); border-radius: 999px; font-size: 8px; font-weight: 800; }
.map-detail-card { min-height: 220px; padding: 20px; color: #153e50; background: #f8ffff; border-radius: 20px; box-shadow: 0 16px 35px rgba(0,0,0,.12); }
.map-detail-empty > span, .map-detail-kicker { color: #0b829c; font-size: 8px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.map-detail-empty h3, .map-detail-head h3 { margin: 10px 0 8px; font-size: 27px; letter-spacing: -.035em; }.map-detail-empty p { color: #69808a; font-size: 11px; line-height: 1.55; }
.map-detail-head { padding-bottom: 13px; border-bottom: 1px solid #d8e8eb; }.map-detail-head h3 { margin-bottom: 0; }
.map-detail-vendors { display: grid; gap: 9px; margin-top: 13px; }.map-detail-vendor { display: grid; grid-template-columns: 42px minmax(0,1fr); align-items: center; gap: 10px; padding: 9px; background: #edf7f8; border-radius: 12px; }.map-detail-logo { width: 42px; height: 38px; display: grid; place-items: center; overflow: hidden; color: #087d98; background: white; border: 1px solid #dbeaed; border-radius: 9px; font-size: 9px; font-weight: 850; }.map-detail-logo img { width: 100%; height: 100%; object-fit: contain; }.map-detail-vendor strong { display: block; font-size: 11px; line-height: 1.25; overflow-wrap: anywhere; }.map-detail-vendor small { display: block; margin-top: 3px; color: #64808a; font-size: 8px; }
.map-detail-directory { width: 100%; min-height: 38px; margin-top: 12px; color: #fff; background: #063d5c; border: 0; border-radius: 10px; font-size: 9px; font-weight: 850; }
.map-category-legend { display: grid; gap: 7px; margin-top: auto; padding: 6px 4px; }.map-category-legend span { display: flex; align-items: center; gap: 9px; color: #c2e1e4; font-size: 8px; }.map-category-legend i { width: 12px; height: 12px; flex: 0 0 12px; border: 1px solid rgba(255,255,255,.34); border-radius: 4px; }.category-coins { background: #8ed8e3; }.category-grading { background: #f0c96e; }.category-auction { background: #ef9b82; }.category-tcg { background: #84c5f4; }.category-services { background: #8bd2ad; }.category-reference { background: rgba(255,255,255,.18); }

.interactive-plan-stage { min-width: 0; padding: 20px; }
.map-toolbar { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 14px; padding: 10px 12px 10px 17px; background: rgba(255,255,255,.85); border: 1px solid #cfe3e6; border-radius: 16px; }
.map-toolbar > div:first-child { display: grid; gap: 2px; }.map-toolbar span { color: #268097; font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }.map-toolbar strong { color: #113e51; font-size: 12px; }
.map-zoom-controls { display: flex; align-items: center; gap: 5px; }.map-zoom-controls button { min-width: 35px; height: 35px; padding: 0 8px; color: #083d5b; background: #e4f5f6; border: 1px solid #c7e2e6; border-radius: 9px; font-size: 16px; font-weight: 800; }.map-zoom-controls button[data-map-zoom-reset] { min-width: 52px; font-size: 9px; }
.map-scroll { max-height: 760px; overflow: auto; overscroll-behavior: contain; touch-action: pan-x pan-y; background: #d8ebed; border: 1px solid #bed9de; border-radius: 22px; scrollbar-color: #78b8c2 #e8f4f5; scrollbar-width: thin; }
.map-scale-frame { position: relative; margin: 18px auto; transition: width .28s ease, height .28s ease; }
.map-scale-75 { width: 600px; height: 915px; }.map-scale-75 .booth-map-canvas { transform: scale(.75); }
.map-scale-90 { width: 720px; height: 1098px; }.map-scale-90 .booth-map-canvas { transform: scale(.9); }
.map-scale-105 { width: 840px; height: 1281px; }.map-scale-105 .booth-map-canvas { transform: scale(1.05); }
.booth-map-canvas { position: absolute; top: 0; left: 0; width: 800px; height: 1220px; overflow: hidden; background: radial-gradient(circle at 50% 0,rgba(26,173,190,.08),transparent 28%), #f9fdfd; border-radius: 48px; box-shadow: 0 20px 45px rgba(3,47,79,.12); transform-origin: top left; transition: transform .28s ease; }
.map-hall-outline { position: absolute; inset: 24px 45px 64px; border: 4px solid #0a3e5e; border-radius: 56px 56px 26px 26px; box-shadow: inset 0 0 0 8px #e8f3f4; }
.map-stage-label { position: absolute; top: 48px; left: 310px; width: 250px; height: 66px; display: grid; place-items: center; align-content: center; color: white; background: linear-gradient(135deg,#064f73,#0aa8b7); border-radius: 13px; box-shadow: 0 10px 22px rgba(5,92,119,.24); }.map-stage-label strong { font-size: 15px; letter-spacing: .16em; }.map-stage-label span { color: #d4f3f4; font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.map-seating { position: absolute; top: 53px; left: 115px; width: 158px; display: grid; grid-template-columns: repeat(6,1fr); gap: 7px; }.map-seating i { width: 16px; height: 16px; background: #d4e8eb; border: 2px solid #7daab2; border-radius: 50%; }
.map-zone { position: absolute; }.map-central { top: 205px; left: 247px; width: 306px; display: grid; gap: 25px; }.map-island { display: grid; grid-template-columns: repeat(5,54px); gap: 5px 9px; padding: 8px; background: #e1eef0; border: 1px solid #c4dade; border-radius: 13px; box-shadow: 0 7px 14px rgba(3,47,79,.06); }.map-island.is-single { grid-template-rows: 34px; }
.map-left-wall { top: 270px; left: 151px; display: flex; flex-direction: column; gap: 13px; }.map-right-upper { top: 205px; right: 137px; display: flex; flex-direction: column; gap: 7px; }.map-right-lower { top: 788px; right: 137px; display: flex; flex-direction: column; gap: 7px; }.map-bottom-wall { left: 520px; bottom: 74px; display: flex; gap: 10px; }.map-a-left { left: 63px; bottom: 112px; display: flex; flex-direction: column; gap: 12px; }.map-a-bottom { left: 232px; bottom: 73px; display: flex; gap: 8px; }.map-a-feature { top: 130px; left: 337px; }
.map-booth { position: relative; min-width: 0; display: grid; place-items: center; align-content: center; gap: 1px; padding: 2px; color: #355965; background: #eff5f6; border: 1px solid #cfdee1; border-radius: 6px; font-family: var(--sans); line-height: 1; text-align: center; transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
button.map-booth { width: 54px; height: 34px; cursor: pointer; }.map-booth > span { font-size: 7px; font-weight: 850; white-space: nowrap; }.map-booth > small { position: absolute; z-index: 15; left: 50%; bottom: calc(100% + 7px); width: max-content; max-width: 210px; padding: 7px 9px; color: white; background: #052f4b; border-radius: 8px; box-shadow: 0 8px 22px rgba(0,0,0,.2); font-size: 8px; line-height: 1.25; opacity: 0; pointer-events: none; transform: translate(-50%,5px); transition: .2s ease; white-space: normal; }.map-booth:hover > small, .map-booth:focus-visible > small { opacity: 1; transform: translate(-50%,0); }
.map-booth.is-reference { width: 54px; height: 34px; color: #8aa0a8; background: #f5f8f8; border-style: dashed; }.map-booth.is-occupied { color: #07364f; border-width: 2px; box-shadow: 0 4px 9px rgba(4,69,94,.08); }.map-booth.category-coins { background: #bdeaf0; border-color: #3caabe; }.map-booth.category-grading { background: #f7dea2; border-color: #d6a93e; }.map-booth.category-auction { background: #f5b7a4; border-color: #df765b; }.map-booth.category-tcg { background: #b4dcf8; border-color: #5aa5da; }.map-booth.category-services { background: #bce7ce; border-color: #65ae84; }.map-booth.category-mixed { background: linear-gradient(135deg,#bdeaf0 0 50%,#bce7ce 50%); border-color: #3192a2; }
.map-booth.is-occupied:hover, .map-booth.is-occupied:focus-visible { z-index: 12; border-color: #032f4f; outline: 0; transform: scale(1.13); box-shadow: 0 7px 16px rgba(3,47,79,.22); }.map-booth.is-selected { z-index: 11; color: white; background: #063f5e; border-color: #69e4e9; transform: scale(1.14); box-shadow: 0 0 0 4px rgba(61,213,222,.27), 0 9px 20px rgba(3,47,79,.27); }.map-booth.is-dimmed { opacity: .12; }.map-booth.is-match { z-index: 10; opacity: 1; transform: scale(1.12); box-shadow: 0 0 0 4px rgba(30,205,215,.22), 0 8px 18px rgba(3,47,79,.17); }
.map-left-wall .map-booth, .map-right-upper .map-booth, .map-right-lower .map-booth { width: 45px; height: 38px; }.map-right-upper .map-booth, .map-right-upper .map-booth.is-reference { height: 36px; }.map-right-lower .map-booth, .map-right-lower .map-booth.is-reference { height: 29px; }.map-bottom-wall .map-booth, .map-bottom-wall .map-booth.is-reference { width: 55px; height: 42px; }.map-a-left .map-booth, .map-a-left .map-booth.is-reference { width: 66px; height: 58px; background-color: #f3bdc7; border-color: #d96c82; }.map-a-bottom .map-booth, .map-a-bottom .map-booth.is-reference { width: 64px; height: 52px; background-color: #f3bdc7; border-color: #d96c82; }.map-a-feature .map-booth, .map-a-feature .map-booth.is-reference { width: 176px; height: 54px; background-color: #f19cac; border-color: #d96078; }.map-a-left .map-booth.is-occupied, .map-a-bottom .map-booth.is-occupied, .map-a-feature .map-booth.is-occupied { color: #4a1830; }
.map-entrance { position: absolute; left: 475px; bottom: 13px; display: grid; place-items: center; color: #da324b; }.map-entrance::before { content: ''; width: 86px; height: 28px; margin-bottom: 4px; border: 3px solid #123f5b; border-top: 0; background: repeating-linear-gradient(90deg,#fff 0 12px,#dfecee 12px 14px); }.map-entrance span { font-size: 10px; font-weight: 900; letter-spacing: .12em; }.map-entrance strong { font-size: 9px; }
.map-pan-hint { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 11px 0 0; color: #66808a; font-size: 8px; }.map-pan-hint span { color: #0b8ba2; font-size: 15px; }

@media (max-width: 1100px) {
  .interactive-plan-app { grid-template-columns: 280px minmax(0,1fr); }
  .interactive-plan-sidebar { padding: 18px; }
  .interactive-plan-stage { padding: 16px; }
}
@media (max-width: 900px) {
  .interactive-plan-app { grid-template-columns: 1fr; }
  .interactive-plan-stage { order: 1; }.interactive-plan-sidebar { order: 2; display: grid; grid-template-columns: 1fr 1fr; align-items: start; }.map-category-legend { grid-column: 1/-1; grid-template-columns: repeat(3,1fr); }
  .map-scroll { max-height: 660px; }.map-scale-frame { margin-inline: 16px; }
}
@media (max-width: 640px) {
  .interactive-plan-section { margin: 36px 0 28px; }
  .interactive-plan-heading { margin-bottom: 17px; }
  .interactive-plan-app { width: var(--shell); border-radius: 23px; }
  .interactive-plan-stage { padding: 11px; }
  .map-toolbar { align-items: flex-start; padding: 10px; }.map-toolbar strong { font-size: 10px; }.map-zoom-controls button { min-width: 32px; height: 32px; }
  .map-scroll { max-height: 590px; border-radius: 16px; }.map-scale-frame { margin: 12px; }
  .interactive-plan-sidebar { grid-template-columns: 1fr; gap: 12px; padding: 14px; }.map-category-legend { grid-column: auto; grid-template-columns: 1fr 1fr; }.map-detail-card { min-height: 0; }
  .map-pan-hint { padding-inline: 8px; text-align: center; }
}

/* Event arrival visual v16 */
.visitor-arrival-visual { position: relative; width: 100%; aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: #042d4a; border: 1px solid rgba(104,208,219,.38); border-radius: 32px; box-shadow: 0 32px 72px rgba(3,47,79,.2); isolation: isolate; }
.visitor-arrival-visual::before { content: ''; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg,rgba(2,25,48,.04) 28%,rgba(2,25,48,.82) 100%); pointer-events: none; }
.visitor-arrival-visual::after { content: ''; position: absolute; z-index: 2; inset: 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 23px; pointer-events: none; }
.visitor-arrival-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.visitor-arrival-visual:hover > img { transform: scale(1.025); }
.visitor-arrival-visual figcaption { position: absolute; z-index: 3; left: 34px; bottom: 31px; display: grid; gap: 3px; color: white; text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.visitor-arrival-visual figcaption > span { color: #75e5e9; font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.visitor-arrival-visual figcaption > strong { font-size: clamp(25px,3vw,40px); line-height: 1.05; letter-spacing: -.035em; }
.visitor-arrival-visual figcaption > small { color: #d5edef; font-size: 11px; font-weight: 700; }
.arrival-route-card { position: absolute; z-index: 3; top: 31px; right: 30px; display: flex; align-items: center; gap: 11px; max-width: 240px; padding: 12px 15px 12px 12px; color: white; background: rgba(2,35,59,.78); border: 1px solid rgba(255,255,255,.25); border-radius: 17px; box-shadow: 0 15px 35px rgba(0,0,0,.18); backdrop-filter: blur(14px); }
.arrival-route-icon { width: 42px; height: 42px; display: grid; flex: 0 0 auto; place-items: center; color: #062f4d; background: #69e2e8; border-radius: 13px; font-size: 9px; font-weight: 950; letter-spacing: .04em; box-shadow: inset 0 0 0 1px rgba(255,255,255,.55); }
.arrival-route-card div { display: grid; gap: 1px; }.arrival-route-card small { color: #99d9df; font-size: 7px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }.arrival-route-card strong { font-size: 12px; }.arrival-route-card div > span { color: #d5edef; font-size: 8px; }

@media (max-width: 900px) {
  .visitor-arrival-visual { max-width: 720px; margin-inline: auto; aspect-ratio: 16 / 10; }
}
@media (max-width: 640px) {
  .visitor-map-section { padding-top: 38px; }
  .visitor-arrival-visual { aspect-ratio: 5 / 4; border-radius: 23px; }
  .visitor-arrival-visual::after { inset: 9px; border-radius: 17px; }
  .visitor-arrival-visual figcaption { left: 23px; bottom: 21px; }
  .visitor-arrival-visual figcaption > span { font-size: 7px; }.visitor-arrival-visual figcaption > small { font-size: 9px; }
  .arrival-route-card { top: 20px; right: 19px; max-width: 205px; padding: 9px 11px 9px 9px; border-radius: 14px; }
  .arrival-route-icon { width: 36px; height: 36px; border-radius: 11px; font-size: 8px; }
  .arrival-route-card strong { font-size: 10px; }.arrival-route-card div > span { font-size: 7px; }
}

/* Landing experience and compact mobile hall map v17 */
.intro-visit-button { width: fit-content; margin-top: 4px; }
.dragon-learn-button { width: fit-content; margin-top: 26px; }
.plan-copy-mobile, .map-mobile-hint, .map-next-link { display: none; }
.exhibitor-rail-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-top: 38px; margin-bottom: 17px; }
.exhibitor-rail-heading { scroll-margin-top: 86px; }
.exhibitor-rail-heading > div { display: grid; gap: 6px; }.exhibitor-rail-heading strong { color: #063d5c; font-size: clamp(18px,2vw,25px); letter-spacing: -.025em; }.exhibitor-rail-heading p { max-width: 330px; margin: 0; color: #637b84; font-size: 11px; text-align: right; }
.exhibitor-logo-marquee { position: relative; width: 100%; overflow: hidden; padding: 8px 0 26px; -webkit-mask-image: linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent); mask-image: linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent); }
.exhibitor-logo-track { width: max-content; display: flex; gap: 10px; animation: exhibitorRailRight 110s linear infinite; will-change: transform; }
.exhibitor-logo-group { display: flex; gap: 10px; }
.exhibitor-logo-marquee:hover .exhibitor-logo-track, .exhibitor-logo-marquee:focus-within .exhibitor-logo-track { animation-play-state: paused; }
.exhibitor-mini-card { width: 158px; min-height: 102px; display: grid; grid-template-rows: 54px auto; gap: 7px; padding: 10px; color: #183d50; background: rgba(255,255,255,.94); border: 1px solid #d1e5e8; border-radius: 16px; box-shadow: 0 10px 24px rgba(3,47,79,.06); text-align: left; cursor: pointer; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.exhibitor-mini-card:hover, .exhibitor-mini-card:focus-visible { z-index: 2; border-color: #57c5cf; outline: 0; transform: translateY(-4px); box-shadow: 0 14px 30px rgba(3,47,79,.14); }
.exhibitor-mini-logo { display: grid; place-items: center; overflow: hidden; background: #f4f9fa; border-radius: 10px; }.exhibitor-mini-logo img { width: 118px; height: 42px; object-fit: contain; }.exhibitor-mini-logo b { color: #087f99; font-size: 20px; letter-spacing: -.04em; }
.exhibitor-mini-card > span:last-child { min-width: 0; display: grid; gap: 2px; }.exhibitor-mini-card small { color: #07869d; font-size: 7px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }.exhibitor-mini-card strong { overflow: hidden; font-size: 9px; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
@keyframes exhibitorRailRight { from { transform: translateX(calc(-50% - 5px)); } to { transform: translateX(0); } }

.mobile-map-dialog { width: min(100%,520px); max-width: none; inset: auto 0 0; margin: 0 auto; padding: 0; overflow: visible; color: #082f4a; background: transparent; border: 0; }
.mobile-map-dialog::backdrop { background: rgba(1,18,33,.66); backdrop-filter: blur(5px); }
.mobile-map-dialog-sheet { max-height: min(82vh,620px); padding: 13px 16px calc(22px + env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; background: #f8fcfc; border: 1px solid #c7e3e6; border-bottom: 0; border-radius: 26px 26px 0 0; box-shadow: 0 -24px 70px rgba(1,29,49,.28); }
.mobile-map-dialog-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 4px 2px 12px; border-bottom: 1px solid #d7e8ea; }.mobile-map-dialog-head > div { display: grid; gap: 2px; }.mobile-map-dialog-head span { color: #168ca2; font-size: 8px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }.mobile-map-dialog-head h3 { margin: 0; font-size: 24px; }.mobile-map-dialog-head button { width: 40px; height: 40px; display: grid; place-items: center; color: #0a4864; background: #e1f2f3; border: 0; border-radius: 50%; font-size: 24px; cursor: pointer; }
.mobile-map-dialog-vendors { display: grid; gap: 10px; padding-top: 13px; }.mobile-map-vendor { display: grid; grid-template-columns: 82px 1fr; align-items: center; gap: 14px; padding: 10px; background: white; border: 1px solid #d6e8ea; border-radius: 17px; }.mobile-map-vendor-logo { height: 60px; display: grid; place-items: center; overflow: hidden; color: #087f99; background: #f2f8f9; border-radius: 12px; font-size: 20px; font-weight: 900; }.mobile-map-vendor-logo img { width: 70px; height: 48px; object-fit: contain; }.mobile-map-vendor strong { font-size: 13px; line-height: 1.35; }
.mobile-map-dialog-next { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 12px; color: white; background: linear-gradient(135deg,#076f9b,#14acbc); border: 0; border-radius: 14px; font-size: 11px; font-weight: 850; letter-spacing: .03em; box-shadow: 0 10px 24px rgba(3,94,128,.18); }

/* Dragon silver bullion feature v17 */
.dragon-feature-main { overflow: hidden; background: #f7fbfc; }
.dragon-feature-hero { position: relative; min-height: min(810px,82vh); display: flex; align-items: center; overflow: hidden; color: white; background: #020f22; isolation: isolate; }
.dragon-feature-hero-image, .dragon-feature-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }.dragon-feature-hero-image { z-index: -2; object-fit: cover; object-position: center; }.dragon-feature-hero-shade { z-index: -1; background: linear-gradient(90deg,rgba(1,12,27,.96) 0%,rgba(1,17,34,.78) 37%,rgba(1,17,34,.16) 69%,rgba(1,17,34,.04)); }
.dragon-feature-hero-content { padding-top: 82px; padding-bottom: 82px; }.dragon-feature-hero-content > * { max-width: 680px; }.dragon-feature-kicker { display: inline-flex; margin-bottom: 20px; color: #78e4e8; font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }.dragon-feature-hero h1 { max-width: 780px; margin: 0 0 24px; font-size: clamp(54px,7.1vw,104px); line-height: .94; letter-spacing: -.062em; }.dragon-feature-hero p { max-width: 630px; margin: 0 0 30px; color: #d2e5e8; font-size: clamp(16px,1.6vw,21px); line-height: 1.65; }.dragon-feature-hero-content > small { display: block; max-width: 560px; margin-top: 23px; color: #8eb1ba; font-size: 8px; line-height: 1.5; }
.coin-spec-band { color: white; background: linear-gradient(90deg,#052c49,#075f79 52%,#073e62); border-top: 1px solid rgba(114,226,232,.24); border-bottom: 1px solid rgba(114,226,232,.18); }.coin-spec-grid { display: grid; grid-template-columns: repeat(5,1fr); }.coin-spec-grid > div { display: grid; gap: 5px; padding: 25px 22px; border-left: 1px solid rgba(255,255,255,.13); }.coin-spec-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.13); }.coin-spec-grid strong { font-size: clamp(20px,2.3vw,34px); letter-spacing: -.035em; }.coin-spec-grid span { color: #8edce1; font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.coin-design-section { background: linear-gradient(180deg,#f7fbfc,#eaf5f6); }.coin-design-grid, .coin-craft-grid, .coin-edition-grid { display: grid; grid-template-columns: minmax(320px,.86fr) minmax(0,1.14fr); align-items: center; gap: clamp(46px,7vw,100px); }.coin-design-copy h2, .coin-craft-grid h2, .coin-edition-copy h2 { margin: 11px 0 22px; color: #06364f; font-size: clamp(42px,5vw,70px); line-height: 1.02; letter-spacing: -.052em; }.coin-design-copy p, .coin-craft-grid p, .coin-edition-copy p { color: #516c76; font-size: 15px; line-height: 1.85; }
.coin-design-visual { margin: 0; overflow: hidden; background: #041c32; border-radius: 32px; box-shadow: 0 32px 74px rgba(3,47,79,.2); }.coin-design-visual img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }.coin-design-visual figcaption { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; color: #b8dce0; background: #062943; }.coin-design-visual figcaption span { padding: 12px 16px; font-size: 8px; font-weight: 850; letter-spacing: .1em; text-align: center; text-transform: uppercase; }.coin-design-visual figcaption span:first-child { border-right: 1px solid rgba(255,255,255,.13); }
.coin-craft-section { color: white; background: radial-gradient(circle at 80% 20%,rgba(18,163,179,.17),transparent 32%),linear-gradient(135deg,#02172c,#063b5b); }.coin-craft-grid { grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr); }.coin-craft-grid figure { margin: 0; overflow: hidden; border: 1px solid rgba(112,223,229,.24); border-radius: 30px; box-shadow: 0 30px 70px rgba(0,0,0,.28); }.coin-craft-grid figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }.coin-craft-grid figure figcaption { padding: 12px 16px; color: #97c7ce; background: rgba(2,24,43,.9); font-size: 8px; }.coin-craft-grid h2 { color: white; }.coin-craft-grid p { color: #bdd9dd; }.coin-craft-note { display: grid; gap: 5px; margin-top: 26px; padding: 17px 19px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 15px; }.coin-craft-note strong { color: #74e0e5; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }.coin-craft-note span { color: #d0e3e6; font-size: 10px; line-height: 1.6; }
.coin-symbolism-section { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; color: white; background: #171c49; isolation: isolate; }.coin-symbolism-section > img, .coin-symbolism-shade { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; }.coin-symbolism-shade { z-index: -1; background: linear-gradient(90deg,rgba(24,12,60,.95),rgba(24,12,60,.78) 42%,rgba(24,12,60,.17) 76%); }.coin-symbolism-copy { padding-top: 90px; padding-bottom: 90px; }.coin-symbolism-copy > * { max-width: 600px; }.coin-symbolism-copy > span { color: #efb8d5; font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }.coin-symbolism-copy h2 { margin: 13px 0 25px; font-size: clamp(48px,6vw,82px); line-height: .98; letter-spacing: -.058em; }.coin-symbolism-copy p { color: #eaddeb; font-size: 15px; line-height: 1.85; }
.coin-edition-section { background: #f8fbfb; }.coin-edition-grid { grid-template-columns: minmax(320px,.9fr) minmax(380px,1.1fr); }.coin-edition-copy ul { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 30px; padding: 0; list-style: none; }.coin-edition-copy li { display: grid; gap: 4px; padding: 15px; background: #eaf5f6; border: 1px solid #cee4e7; border-radius: 15px; }.coin-edition-copy li strong { color: #075f7d; font-size: 17px; }.coin-edition-copy li span { color: #607982; font-size: 8px; line-height: 1.35; }
.coin-official-reference { max-width: 570px; margin: 0; justify-self: end; overflow: hidden; background: white; border: 1px solid #d3e5e7; border-radius: 30px; box-shadow: 0 28px 65px rgba(3,47,79,.13); }.coin-official-reference > div { height: 510px; overflow: hidden; background: #1b1341; }.coin-official-reference img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; }.coin-official-reference figcaption { display: grid; gap: 4px; padding: 17px 20px; }.coin-official-reference figcaption strong { color: #073d5b; font-size: 12px; }.coin-official-reference figcaption span { color: #6c7f85; font-size: 9px; }
.dragon-feature-cta { padding: 94px 0; color: white; text-align: center; background: radial-gradient(circle at 50% 0,rgba(31,190,199,.24),transparent 36%),linear-gradient(135deg,#02182d,#073d5d); }.dragon-feature-cta span { color: #7ce2e7; font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }.dragon-feature-cta h2 { max-width: 920px; margin: 14px auto 18px; font-size: clamp(46px,6vw,78px); line-height: 1; letter-spacing: -.055em; }.dragon-feature-cta p { color: #bed9dd; }

@media (max-width: 900px) {
  .coin-design-grid, .coin-craft-grid, .coin-edition-grid { grid-template-columns: 1fr; gap: 38px; }
  .coin-craft-grid figure { order: 2; }.coin-craft-grid > div { order: 1; }
  .coin-official-reference { width: 100%; max-width: 660px; justify-self: center; }
  .coin-symbolism-shade { background: linear-gradient(90deg,rgba(24,12,60,.92),rgba(24,12,60,.68) 62%,rgba(24,12,60,.22)); }
}

@media (max-width: 640px) {
  .plan-copy-desktop { display: none; }.plan-copy-mobile { display: block; }
  .interactive-plan-heading { padding-inline: 2px; }.interactive-plan-heading h2 { font-size: 37px; }.interactive-plan-heading p { font-size: 12px; }
  .interactive-plan-sidebar { display: none; }
  .interactive-plan-app { display: block; }
  .interactive-plan-stage { width: 100%; }
  .map-toolbar { align-items: center; }.map-toolbar > div:first-child { display: flex; align-items: baseline; gap: 8px; }.map-toolbar strong { font-size: 8px; }.map-zoom-controls { display: none; }
  .map-scroll { max-height: none; overflow: hidden; overscroll-behavior: auto; touch-action: pan-y; background: #d9ebed; }
  .map-scale-frame.map-scale-75, .map-scale-frame.map-scale-90, .map-scale-frame.map-scale-105 { width: 336px; height: 513px; margin: 10px auto; }
  .map-scale-75 .booth-map-canvas, .map-scale-90 .booth-map-canvas, .map-scale-105 .booth-map-canvas { transform: scale(.42); }
  .booth-map-canvas { border-radius: 32px; }
  .map-booth > small { display: none; }.map-booth.is-reference { opacity: .24; }.map-booth.is-occupied { color: #06364f; background: #80e0e4; border-color: #16849a; opacity: 1; }.map-booth.is-occupied:hover, .map-booth.is-occupied:focus-visible, .map-booth.is-selected { color: #06364f; background: #b7f3f3; border-color: #064d6a; transform: scale(1.14); box-shadow: 0 0 0 5px rgba(43,199,208,.26); }
  .map-pan-hint { display: none; }.map-mobile-hint { display: block; margin: 10px 0 1px; color: #53727c; font-size: 9px; font-weight: 700; text-align: center; }
  .map-next-link { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 10px; padding: 11px 15px; color: #075675; background: linear-gradient(135deg,#effbfc,#dff5f6); border: 1px solid #b7dfe3; border-radius: 14px; font-size: 10px; font-weight: 850; letter-spacing: .025em; }
  .map-next-link b { width: 27px; height: 27px; display: grid; place-items: center; color: white; background: #0795ab; border-radius: 50%; font-size: 15px; animation: mapNextNudge 1.8s ease-in-out infinite; }
  .hero-slide-dragon .hero-slide-media { object-position: 69% center; }
  .exhibitor-rail-heading { align-items: start; flex-direction: column; gap: 6px; margin-top: 27px; padding-inline: 2px; }.exhibitor-rail-heading p { text-align: left; }.exhibitor-logo-marquee { padding-bottom: 13px; }.exhibitor-logo-track { animation-duration: 90s; }.exhibitor-mini-card { width: 137px; min-height: 92px; grid-template-rows: 48px auto; padding: 8px; border-radius: 14px; }.exhibitor-mini-logo img { width: 105px; height: 36px; }.exhibitor-mini-card strong { font-size: 8px; }
  .dragon-feature-hero { min-height: 690px; align-items: end; }.dragon-feature-hero-image { object-position: 63% center; }.dragon-feature-hero-shade { background: linear-gradient(180deg,rgba(1,12,27,.1),rgba(1,12,27,.48) 38%,rgba(1,12,27,.96) 72%); }.dragon-feature-hero-content { padding-top: 210px; padding-bottom: 54px; }.dragon-feature-hero h1 { max-width: 350px; font-size: 49px; }.dragon-feature-hero p { font-size: 14px; line-height: 1.6; }.dragon-feature-hero .button-row { align-items: stretch; flex-direction: column; }.dragon-feature-hero .button { width: 100%; }
  .coin-spec-grid { grid-template-columns: repeat(2,1fr); padding: 8px 0; }.coin-spec-grid > div { padding: 15px 14px; border: 0; }.coin-spec-grid > div:last-child { grid-column: 1/-1; border: 0; }.coin-spec-grid strong { font-size: 22px; }
  .coin-design-copy h2, .coin-craft-grid h2, .coin-edition-copy h2 { font-size: 42px; }.coin-design-copy p, .coin-craft-grid p, .coin-edition-copy p { font-size: 13px; line-height: 1.75; }
  .coin-design-visual, .coin-craft-grid figure, .coin-official-reference { border-radius: 22px; }
  .coin-symbolism-section { min-height: 720px; align-items: end; }.coin-symbolism-section > img { object-position: 65% center; }.coin-symbolism-shade { background: linear-gradient(180deg,rgba(24,12,60,.14),rgba(24,12,60,.48) 38%,rgba(24,12,60,.96) 73%); }.coin-symbolism-copy { padding-top: 260px; padding-bottom: 54px; }.coin-symbolism-copy h2 { font-size: 47px; }.coin-symbolism-copy p { font-size: 13px; line-height: 1.7; }
  .coin-edition-copy ul { grid-template-columns: 1fr; }.coin-official-reference > div { height: 390px; }
  .dragon-feature-cta { padding: 68px 0 90px; }.dragon-feature-cta h2 { font-size: 44px; }.dragon-feature-cta .button-row { align-items: stretch; flex-direction: column; }.dragon-feature-cta .button { width: 100%; }
}

@keyframes mapNextNudge { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }
@media (max-width: 400px) {
  .interactive-plan-stage { padding: 4px; }
  .map-scale-frame.map-scale-75, .map-scale-frame.map-scale-90, .map-scale-frame.map-scale-105 { width: 320px; height: 488px; }
  .map-scale-75 .booth-map-canvas, .map-scale-90 .booth-map-canvas, .map-scale-105 .booth-map-canvas { transform: scale(.4); }
}
@media (max-width: 350px) {
  .map-scale-frame.map-scale-75, .map-scale-frame.map-scale-90, .map-scale-frame.map-scale-105 { width: 288px; height: 440px; }
  .map-scale-75 .booth-map-canvas, .map-scale-90 .booth-map-canvas, .map-scale-105 .booth-map-canvas { transform: scale(.36); }
}
@media (prefers-reduced-motion: reduce) {
  .exhibitor-logo-track { animation: none; transform: none; }
  .exhibitor-logo-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .map-next-link b { animation: none; }
}

/* Programme manager (admin) and day-by-day programme rows */
.inline-delete-form { padding: 0 18px 18px; border-top: 0; }
.programme-row time, .schedule-item time { font-variant-numeric: tabular-nums; line-height: 1.45; }

/* Dragon Coin mystery serial release */
.coin-mystery-section { background: radial-gradient(circle at 50% 0, rgba(112,71,168,.12), transparent 29%), linear-gradient(180deg, #f5f2fb, #fff); }
.coin-allocation-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 42px; }
.coin-allocation-card { min-width: 0; overflow: hidden; color: #2a1547; background: #fff; border: 1px solid #ded2e8; border-radius: 24px; box-shadow: 0 18px 46px rgba(42,21,71,.09); transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease; }
.coin-allocation-card:hover { border-color: #b88cda; box-shadow: 0 27px 60px rgba(42,21,71,.16); transform: translateY(-7px); }
.coin-allocation-visual { position: relative; margin: 0; overflow: hidden; aspect-ratio: 3 / 2; background: #1a0d30; }
.coin-allocation-visual::after { content: ''; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(0deg, rgba(26,13,48,.28), transparent); pointer-events: none; }
.coin-allocation-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.coin-allocation-card:hover .coin-allocation-visual img { transform: scale(1.035); }
.coin-allocation-copy { display: grid; padding: 20px 21px 23px; }
.coin-allocation-copy > span { color: #7047a8; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.coin-allocation-copy h3 { margin: 7px 0 3px; color: #2a1547; font-family: var(--sans); font-size: 21px; font-weight: 720; letter-spacing: -.035em; }
.coin-allocation-copy > strong { color: #7047a8; font-size: 28px; letter-spacing: -.035em; }
.coin-allocation-copy p { margin: 13px 0 0; color: #6e6178; font-size: 11px; }
.coin-mystery-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
.coin-mystery-points > div { padding: 18px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; text-align: center; }
.coin-mystery-points strong { display: block; font-family: var(--serif); font-size: 19px; margin-bottom: 5px; }
.coin-mystery-points span { color: var(--muted); font-size: 11px; }
.centered-note { text-align: center; margin-top: 20px; }
.serial-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.serial-chip { display: inline-block; padding: 13px 20px; background: #2a1547; color: #e9d8a6; border-radius: 12px; font-size: 21px; font-weight: 800; letter-spacing: .04em; }
.serial-chip small { color: #b9a8d6; font-size: 12px; font-weight: 600; }
.notice.success { background: #eef7ef; border-color: #bfe0c4; color: #23533a; }
.status.success { background: #eef7ef; color: #23533a; }
.status.warning { background: #fdf3e3; color: #7a5410; }
.status.danger { background: #fbeaea; color: #7c2430; }
.booking-shell .panel { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 22px; margin-bottom: 16px; }
@media (max-width: 860px) {
  .coin-allocation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coin-mystery-points { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .coin-allocation-grid { grid-template-columns: 1fr; gap: 15px; margin-top: 30px; }
  .coin-allocation-card { border-radius: 20px; }
  .coin-allocation-copy { padding: 18px 18px 20px; }
}

/* Admin checkout QR uploads */
.qr-upload-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 14px; }
.qr-upload-card { display: grid; gap: 10px; justify-items: start; padding: 18px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.qr-upload-card small { color: var(--muted); }
.qr-upload-preview { width: 180px; height: 180px; object-fit: contain; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 6px; }
.qr-upload-card input[type="file"] { font-size: 11px; max-width: 100%; }
@media (max-width: 760px) { .qr-upload-grid { grid-template-columns: 1fr; } }

/* Pending ticket QR and payment proof review */
.ticket-qr-pending { display: grid; gap: 8px; place-items: center; padding: 26px 18px; background: #f4f2ee; border: 1px dashed #c9c4ba; border-radius: 12px; text-align: center; font-size: 12px; color: #6b6459; }
.ticket-qr-pending .pending-mark { font-size: 34px; }
.proof-list { display: grid; gap: 8px; margin-top: 14px; }
.proof-thumb { max-width: 100%; max-height: 260px; object-fit: contain; border: 1px solid var(--border); border-radius: 10px; background: #fff; }
