:root {
  --bg: #0f0f1a;
  --surface: #1a1a2e;
  --surface2: #252540;
  --accent: #8b5cf6;
  --accent2: #a78bfa;
  --text: #e2e8f0;
  --text2: #a0aec0;
  --border: #2d2d4a;
  --success: #4ade80;
  --radius: 12px;
  --max-w: 880px;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.75; min-height: 100vh; }
a { color: var(--accent2); text-decoration: underline; text-underline-offset: 3px; }
a:hover, a:focus { color: #c4b5fd; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; border-radius: 4px; }
h1 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 1.6rem; font-weight: 700; margin-top: 2.5rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-top: 1.5rem; }
p { margin-bottom: 1.2rem; color: var(--text2); }
.skip-link { position: absolute; top: -100px; left: 16px; z-index: 999; background: var(--accent); color: #fff; padding: 12px 20px; font-weight: 700; border-radius: 0 0 var(--radius) var(--radius); }
.skip-link:focus { top: 0; }
nav { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
#google_translate_element { flex-shrink: 0; }
#google_translate_element select { padding: 4px 8px; font-size: 0.85rem; }
.goog-te-gadget { font-size: 0 !important; }
.goog-te-gadget .goog-te-combo { margin: 0 !important; }
.logo { font-size: 1.3rem; font-weight: 800; color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo span { color: var(--accent2); }
.logo:hover { color: var(--text); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--text2); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover, .nav-links a:focus, .nav-links a.active { color: var(--accent2); }
main { max-width: var(--max-w); margin: 0 auto; padding: 48px 24px 80px; }
.hero { text-align: center; padding: 60px 0 40px; }
.hero h1 { font-size: 2.8rem; margin-bottom: 16px; }
.hero h1 span { color: var(--accent2); }
.hero p { font-size: 1.15rem; max-width: 640px; margin: 0 auto 32px; }
.btn { display: inline-block; padding: 14px 32px; border-radius: var(--radius); font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.2s; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #7c3aed; color: #fff; }
.btn-outline { border-color: var(--accent); color: var(--accent2); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; }
.card h3 { margin-top: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.feature-icon { font-size: 2rem; margin-bottom: 12px; }
.feature-card { text-align: center; padding: 24px; }
.feature-card p { font-size: 0.95rem; }
.quote { background: var(--surface2); border-left: 4px solid var(--accent); padding: 24px 28px; border-radius: 0 var(--radius) var(--radius) 0; margin: 32px 0; }
.quote p { font-style: italic; font-size: 1.1rem; color: var(--text); margin-bottom: 8px; }
.quote cite { color: var(--accent2); font-size: 0.9rem; font-weight: 600; }
form { margin-top: 24px; }
label { display: block; font-weight: 600; margin-bottom: 6px; margin-top: 16px; }
input, textarea, select { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius); background: var(--surface); color: var(--text); font-size: 1rem; font-family: var(--font); }
input:focus, textarea:focus, select:focus { border-color: var(--accent); outline: none; }
textarea { min-height: 120px; resize: vertical; }

/* FAQ — native details/summary (zero JS, fully accessible) */
details.faq-item {
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
details.faq-item > summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; cursor: pointer; font-size: 1.25rem; font-weight: 600;
  color: var(--text); list-style: none;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: '+'; font-weight: 300; font-size: 1.5rem; margin-left: 12px; flex-shrink: 0;
}
details.faq-item[open] > summary::after { content: '−'; }
details.faq-item > summary:hover, details.faq-item > summary:focus { color: var(--accent2); }
details.faq-item > summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
details.faq-item > p { margin-top: 12px; color: var(--text2); }

footer { border-top: 1px solid var(--border); padding: 40px 24px; text-align: center; color: var(--text2); font-size: 0.9rem; }
footer a { color: var(--text2); text-decoration: none; }
footer a:hover { color: var(--accent2); }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.tag { display: inline-block; background: var(--surface2); color: var(--accent2); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin: 4px; }
.badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(139,92,246,0.15); color: var(--accent2); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; }
.eyebrow { color: #5ee0b4; font-size: 0.82rem; font-weight: 800; text-transform: uppercase; }
.collectible-callout { margin-top: 48px; padding: 28px; border-top: 1px solid #357c6b; border-bottom: 1px solid #357c6b; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.collectible-callout h2 { margin-top: 0; }
.collectible-callout p:last-child { margin-bottom: 0; }
.collectible-page { max-width: 1120px; }
.collectible-header { max-width: 760px; padding: 28px 0 36px; }
.collectible-header h1 { margin: 4px 0 12px; }
.collectible-header p:last-child { font-size: 1.12rem; }
.collectible-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr); gap: 40px; align-items: start; }
.collectible-artwork { margin: 0; }
.collectible-artwork img { width: 100%; display: block; border: 1px solid #357c6b; border-radius: 6px; }
.collectible-artwork figcaption { color: var(--text2); font-size: 0.88rem; margin-top: 10px; }
.purchase-panel { border-top: 4px solid #31b994; padding-top: 22px; }
.purchase-panel h2 { margin-top: 26px; }
.stock-line { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; color: #7cf2cd; font-weight: 700; }
.price { color: var(--text); font-size: 1.5rem; white-space: nowrap; }
.price small { display: block; color: var(--text2); font-size: 0.72rem; font-weight: 500; text-align: right; }
.field-help { font-size: 0.82rem; margin: 6px 0 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.number-picker { border: 0; margin-top: 22px; }
.number-picker legend { font-weight: 700; font-size: 1.05rem; }
.direct-number-picker { margin-top: 16px; padding: 14px; border: 1px solid var(--border); border-radius: 6px; background: #12121f; }
.direct-number-picker > label { display: block; margin-bottom: 8px; font-weight: 700; }
.direct-number-picker > div { display: grid; grid-template-columns: minmax(90px, 1fr) auto; gap: 10px; align-items: end; }
.direct-number-picker input { margin: 0; font-variant-numeric: tabular-nums; }
.direct-number-picker .btn { min-height: 44px; margin: 0; }
.selected-numbers { min-height: 28px; margin: 12px 0 8px; color: #7cf2cd; font-size: 0.86rem; font-weight: 700; }
.selection-guidance { min-height: 26px; margin: 0 0 10px; color: #f8d66d; font-size: 0.84rem; font-weight: 700; }
.number-table-wrap { max-height: 360px; overflow-y: auto; border: 1px solid var(--border); border-radius: 6px; padding: 6px; background: #12121f; }
.number-table { width: 100%; border-collapse: separate; border-spacing: 4px; table-layout: fixed; }
.number-table td { padding: 0; }
.number-option { width: 100%; min-width: 0; height: 42px; border: 1px solid #357c6b; border-radius: 4px; background: var(--surface); color: var(--text); font: inherit; font-size: 0.78rem; font-weight: 700; cursor: pointer; }
.number-option:hover, .number-option:focus-visible { border-color: #7cf2cd; outline: 2px solid #7cf2cd; outline-offset: 1px; }
.number-option.selected { background: #147d64; border-color: #7cf2cd; color: #fff; }
.number-option:disabled { background: #242431; border-color: #343443; color: #6f7180; text-decoration: line-through; opacity: 1; }
.order-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 24px; padding: 18px 0; border-top: 1px solid var(--border); }
.order-total strong { font-size: 1.55rem; }
.terms-checkbox { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; margin: 0 0 18px; font-size: 0.82rem; font-weight: 400; color: var(--text2); }
.terms-checkbox input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: #31b994; }
.purchase-button { width: 100%; border-radius: 6px; }
.checkout-status { min-height: 28px; margin-top: 12px; color: var(--text); }
.checkout-status.success { color: #72e6a1; }
.checkout-status.error { color: #fda4af; }
.checkout-status.pending { color: #f8d66d; }
.payment-notes { border-top: 1px solid var(--border); margin-top: 20px; padding-top: 16px; }
.payment-notes p { font-size: 0.78rem; margin-bottom: 4px; }
.collectible-details { margin-top: 64px; border-top: 1px solid var(--border); padding-top: 8px; }
.details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 24px; }
.details-grid strong { color: #7cf2cd; }
.details-grid p { font-size: 0.92rem; margin-top: 6px; }
.draw-rules { margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--border); max-width: 900px; }
.draw-rules h2 { margin-bottom: 20px; }
.draw-rules h3 { margin-top: 32px; color: #7cf2cd; }
.draw-rules ol { padding-left: 24px; }
.draw-rules li { margin-bottom: 12px; color: var(--text2); }
.rule-example { margin: 18px 0; padding: 14px 18px; border-left: 4px solid #31b994; background: #12121f; }
.rule-example p { margin: 0; color: var(--text); }
.good-luck { margin-top: 28px; color: #7cf2cd; font-weight: 700; }
.legal-note { border-left: 3px solid #357c6b; padding-left: 16px; font-size: 0.82rem; margin-top: 24px; }
button:disabled { opacity: 0.55; cursor: not-allowed; }
@media (max-width: 768px) { html { font-size: 16px; } .nav-inner { height: auto; min-height: 64px; flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; } .nav-links { gap: 14px; flex-wrap: wrap; } .nav-links a { font-size: 0.82rem; } .hero h1 { font-size: 2rem; } .grid-2, .grid-3, .details-grid, .collectible-layout { grid-template-columns: 1fr; } .hero { padding: 32px 0 24px; } .collectible-callout { align-items: flex-start; flex-direction: column; } .collectible-layout { gap: 28px; } .stock-line { flex-direction: column; } .price small { text-align: left; } .direct-number-picker > div { grid-template-columns: 1fr; } }
