:root { color-scheme: dark; --paper: #fff7e8; --ink: #171414; --muted: rgba(255, 247, 232, .74); --line: rgba(255, 247, 232, .18); --accent: #ffce3d; --mint: #61d9c6; --rose: #ff6f7c; --dark: #26304a; }
* { box-sizing: border-box; }
body { margin: 0; background: radial-gradient(circle at 78% 8%, rgba(255, 206, 61, .26), transparent 28rem), radial-gradient(circle at 8% 34%, rgba(97, 217, 198, .22), transparent 24rem), linear-gradient(145deg, var(--dark), #14151f 74%); color: var(--paper); font: 16px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; }
.site { min-height: 100vh; display: flex; flex-direction: column; }
header, main, footer { width: min(1120px, calc(100vw - 32px)); margin: 0 auto; }
header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 24px 0; }
.brand { display: inline-flex; align-items: center; gap: .75rem; font-weight: 900; text-decoration: none; }
.mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 8px; background: var(--accent); color: var(--ink); font-weight: 1000; }
nav { display: flex; flex-wrap: wrap; gap: .5rem; }
nav a, .button, .pill { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: .65rem .9rem; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; font-weight: 850; }
nav a:hover, .button:hover { border-color: color-mix(in srgb, var(--accent), white 14%); }
.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); gap: clamp(24px, 5vw, 72px); align-items: center; padding: 54px 0 36px; }
.eyebrow { margin: 0 0 .75rem; color: var(--accent); font-size: .82rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(3rem, 9vw, 6.8rem); line-height: .94; letter-spacing: 0; }
h2 { margin: 0 0 .75rem; font-size: clamp(1.55rem, 4vw, 2.2rem); line-height: 1.08; letter-spacing: 0; }
p { color: var(--muted); }
.lead { max-width: 56rem; font-size: clamp(1.1rem, 2.4vw, 1.35rem); }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.button.primary { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.button.disabled { border-style: dashed; color: rgba(255, 247, 232, .68); cursor: not-allowed; }
.preview { min-height: 320px; border: 1px solid var(--line); border-radius: 8px; background: rgba(0,0,0,.22); overflow: hidden; }
.preview img { display: block; width: 100%; height: 100%; object-fit: cover; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin: 28px 0 64px; }
.card { min-height: 190px; padding: 1.25rem; border: 1px solid var(--line); border-radius: 8px; background: rgba(0,0,0,.24); }
.card p { margin-bottom: 0; }
.locale { margin: 0 0 32px; }
.locale a { margin: 0 .35rem .35rem 0; }
footer { margin-top: auto; padding: 32px 0; color: rgba(255, 247, 232, .58); border-top: 1px solid var(--line); }
.notice { max-width: 760px; padding: 1rem; border: 1px dashed color-mix(in srgb, var(--accent), white 12%); border-radius: 8px; background: rgba(0,0,0,.2); }
.stalls { display: grid; grid-template-columns: repeat(6, 1fr); gap: .5rem; margin-top: 1rem; }
.stall { aspect-ratio: 1; border: 2px dashed rgba(255, 247, 232, .62); border-radius: 8px; display: grid; place-items: center; font-weight: 1000; color: var(--ink); }
.s1 { background: var(--accent); } .s2 { background: var(--mint); } .s3 { background: var(--rose); } .s4 { background: #8ea7ff; } .s5 { background: #fff7e8; } .missing { background: rgba(255, 247, 232, .08); color: var(--paper); }
@media (max-width: 760px) { header { align-items: flex-start; flex-direction: column; } .hero { grid-template-columns: 1fr; padding-top: 28px; } .grid { grid-template-columns: 1fr; } }
