/* =========================================================
   ELEVATE Basketball Championship 2026 — main.css
   Extracted from index.html <style> block (lines 15-839)
   ========================================================= */

:root {
  --color-primary: #1C1917;
  --color-on-primary: #FFFFFF;
  --color-secondary: #44403C;
  --color-accent: #A16207;
  --color-accent-bright: #E8C36A;
  --color-background: #0C0A09;
  --color-foreground: #FAFAF9;
  --color-muted: #1C1917;
  --color-muted-fg: #A8A29E;
  --color-border: rgba(232, 195, 106, 0.22);
  --color-destructive: #DC2626;
  --color-ring: #E8C36A;
  --color-crimson: #B91C1C;
  --color-silver: #D6D3D1;
  --font-display: "Bodoni Moda", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
/* Native popups (dropdown, date picker) mengikuti tema gelap situs */
input, select, textarea { color-scheme: dark; }
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 12px;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
input[type="date"] {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23E8C36A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2.5' y='4' width='13' height='11.5' rx='2'/%3E%3Cpath d='M2.5 8.5h13M6.5 2.5v3M11.5 2.5v3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
input[type="date"]::-webkit-datetime-edit { color: #fff; }
input[type="date"]::-webkit-datetime-edit-fields-wrapper { color: #fff; }
input[type="date"]::-webkit-datetime-edit-year-field,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field { color: #fff; }
input[type="date"]::-webkit-datetime-edit-text { color: #78716C; }
input[type="date"].is-invalid::-webkit-datetime-edit { color: #FCA5A5; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.55;
  min-height: 100dvh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button, a, select, label[for], .category-card, .chip { cursor: pointer; }
button, input, select, textarea { font-family: inherit; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.blob {
  position: absolute;
  border-radius: 42% 58% 56% 44% / 46% 44% 56% 54%;
  filter: blur(40px);
  opacity: 0.35;
  animation: morph 14s var(--ease) infinite;
  pointer-events: none;
}
.blob-gold {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(161, 98, 7, 0.55), transparent 70%);
  top: -80px; right: -60px;
}
.blob-crimson {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.32), transparent 70%);
  bottom: 8%; left: -80px;
  animation-delay: -5s;
}
@keyframes morph {
  0%, 100% { border-radius: 42% 58% 56% 44% / 46% 44% 56% 54%; transform: translate3d(0, 0, 0); }
  50% { border-radius: 58% 42% 40% 60% / 54% 58% 42% 46%; transform: translate3d(18px, -12px, 0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.86), rgba(12, 10, 9, 0.62));
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-height: 44px;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  box-shadow: 0 0 0 3px rgba(161, 98, 7, 0.18);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-kicker {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent-bright);
  font-weight: 500;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--color-silver);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  transition: color 200ms var(--ease), background 200ms var(--ease);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.04); }
.nav-links a:focus-visible,
.btn:focus-visible,
.input:focus-visible,
.category-card:focus-visible {
  outline: 2px solid var(--color-ring);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 0;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(180deg, #C4891A 0%, #A16207 55%, #7C4A05 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(161, 98, 7, 0.35), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.btn-ghost {
  background: transparent;
  color: var(--color-foreground);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover { background: rgba(232, 195, 106, 0.08); }
.btn-full { width: 100%; }

.hero {
  position: relative;
  min-height: calc(100dvh - var(--nav-h));
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,10,9,0.94) 0%, rgba(12,10,9,0.78) 42%, rgba(12,10,9,0.55) 100%),
    linear-gradient(180deg, rgba(12,10,9,0.35) 0%, rgba(12,10,9,0.2) 40%, rgba(12,10,9,0.92) 100%);
}
.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: var(--space-3xl) 0 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent-bright);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.88;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #FAFAF9 10%, #A8A29E 48%, #FAFAF9 52%, #78716C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 em {
  font-style: italic;
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.18em;
  color: var(--color-accent-bright);
  -webkit-text-fill-color: var(--color-accent-bright);
  background: none;
  margin-top: 10px;
  font-weight: 500;
}
.lede {
  max-width: 34rem;
  color: var(--color-silver);
  font-size: 1.08rem;
  font-weight: 300;
  margin: 18px 0 28px;
}
.lede strong { color: #fff; font-weight: 500; }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(28, 25, 23, 0.55);
  backdrop-filter: blur(12px);
  color: var(--color-foreground);
  font-size: 0.86rem;
  text-decoration: none;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.chip:hover { border-color: var(--color-accent-bright); background: rgba(161, 98, 7, 0.16); }
.chip svg { width: 16px; height: 16px; color: var(--color-accent-bright); flex-shrink: 0; }

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, 92px));
  gap: 10px;
  margin-bottom: 22px;
}
.count-cell {
  text-align: center;
  padding: 12px 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(12, 10, 9, 0.45);
  backdrop-filter: blur(10px);
}
.count-cell b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  color: #fff;
}
.count-cell span {
  display: block;
  margin-top: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
}

.glass-form {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, rgba(255,255,255,0.07), rgba(28,25,23,0.72) 40%, rgba(12,10,9,0.78));
  border: 1px solid rgba(232, 195, 106, 0.28);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}
.glass-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 20%, rgba(232,195,106,0.12), transparent 80%);
  mix-blend-mode: screen;
}
.form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.form-head img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}
.form-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}
.form-head p {
  margin: 4px 0 0;
  color: var(--color-muted-fg);
  font-size: 0.88rem;
}
.seats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 20px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(161, 98, 7, 0.12);
  border: 1px solid rgba(161, 98, 7, 0.28);
  font-size: 0.82rem;
  color: var(--color-accent-bright);
}
form { display: grid; gap: 14px; }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
/* Grid item default adalah min-width:auto — input[type=date] punya min-content bawaan
   sehingga di kolom sempit (glass-form 2-kolom) 1fr tidak pernah menyusut di bawah
   min-content itu → kolom date & select jadi tidak sama lebar. min-width:0 memungkinkan
   kolom menyusut dan tetap 1fr=1fr. */
.grid-2 > .field { min-width: 0; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field span,
.check label span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-silver);
  font-weight: 500;
}
.req { color: var(--color-accent-bright); }
.input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(214, 211, 209, 0.22);
  background: rgba(12, 10, 9, 0.55);
  color: #fff;
  font-size: 16px;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
textarea.input { min-height: 88px; resize: vertical; }
.input::placeholder { color: #78716C; }
.input:hover { border-color: rgba(232, 195, 106, 0.4); }
.input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(161, 98, 7, 0.28);
}
.input.is-invalid {
  border-color: var(--color-destructive);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18);
}
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23E8C36A' stroke-width='1.5'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

/* ── Custom dropdown (progressive enhancement di atas <select> asli) ── */
select.input.dd-native { position: absolute; width: 1px; height: 1px; min-width: 0; min-height: 0; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.dd { position: relative; width: 100%; }
.dd-trigger {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(214, 211, 209, 0.22);
  background: rgba(12, 10, 9, 0.55);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.dd-trigger .dd-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1 1 auto; }
.dd-trigger .dd-label.is-placeholder { color: #78716C; }
.dd-trigger .dd-arrow { flex: 0 0 auto; display: inline-flex; transition: transform 220ms var(--ease); color: var(--color-accent-bright); }
.dd.open .dd-trigger .dd-arrow { transform: rotate(180deg); }
.dd-trigger:hover { border-color: rgba(232, 195, 106, 0.4); }
.dd-trigger:focus-visible,
.dd.open .dd-trigger { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(161, 98, 7, 0.28); }
.dd.is-invalid .dd-trigger { border-color: var(--color-destructive); box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18); }
.dd-list {
  position: absolute;
  z-index: 60;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #171310;
  border: 1px solid rgba(232, 195, 106, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-height: 264px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top center;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms;
}
.dd.open .dd-list { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
.dd-list[role='listbox'] { scrollbar-width: thin; scrollbar-color: rgba(232, 195, 106, 0.35) transparent; }
.dd-list::-webkit-scrollbar { width: 8px; }
.dd-list::-webkit-scrollbar-thumb { background: rgba(232, 195, 106, 0.35); border-radius: 4px; }
.dd-option {
  padding: 10px 12px;
  border-radius: var(--radius-sm, 6px);
  color: var(--color-silver);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: background 140ms ease, color 140ms ease;
}
.dd-option:hover, .dd-option.is-active { background: rgba(232, 195, 106, 0.12); color: #fff; }
.dd-option.is-selected { color: var(--color-accent-bright); font-weight: 600; }
.dd-option.is-selected::after { content: '✓'; font-size: 14px; }
.dd-option.is-placeholder { color: #78716C; }
.error {
  display: none;
  color: #FCA5A5;
  font-size: 0.78rem;
}
.error.show { display: block; }
.form-alert[hidden] { display: none; }
.form-alert {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.35);
  color: #FECACA;
  font-size: 0.88rem;
}
.check {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 font-size: 0.86rem;
 color: var(--color-silver);
}
.check input {
 appearance: none;
 -webkit-appearance: none;
 width: 22px;
 height: 22px;
 margin: 2px 0 0;
 flex-shrink: 0;
 border: 2px solid rgba(214, 211, 209, 0.35);
 border-radius: 6px;
 background: rgba(12, 10, 9, 0.55);
 cursor: pointer;
 display: grid;
 place-content: center;
 transition: border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}
.check input::before {
 content: "";
 width: 11px;
 height: 11px;
 transform: scale(0);
 transition: transform 140ms var(--ease);
 clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
 background: var(--color-bg, #0C0A09);
}
.check input:checked {
 background: linear-gradient(160deg, #E8C36A, #C99A3C);
 border-color: #E8C36A;
 box-shadow: 0 0 0 3px rgba(232, 195, 106, 0.18);
}
.check input:checked::before {
 transform: scale(1);
}
.check input:hover:not(:checked) { border-color: rgba(232, 195, 106, 0.6); }
.check input:focus-visible {
 outline: none;
 border-color: var(--color-accent);
 box-shadow: 0 0 0 3px rgba(161, 98, 7, 0.28);
}
.check input.is-invalid {
  border-color: var(--color-destructive);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18);
}
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}
.btn.is-loading .btn-spinner { display: block; }
.btn.is-loading .btn-label { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

section { position: relative; }
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.section {
  padding: 88px 0;
}
.section-kicker {
  color: var(--color-accent-bright);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  margin: 0 0 10px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 12px;
  line-height: 1.05;
  font-weight: 600;
}
.section h2 em { font-style: italic; color: var(--color-accent-bright); }
.section-lead {
  color: var(--color-muted-fg);
  max-width: 38rem;
  margin: 0 0 36px;
}

.cat-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.poster-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
}
.poster-frame img { width: 100%; height: auto; object-fit: contain; aspect-ratio: auto; }
.age-list {
  display: grid;
  gap: 10px;
}
.category-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  padding: 14px 18px;
  text-align: left;
  color: inherit;
  background: linear-gradient(90deg, rgba(185,28,28,0.16), rgba(28,25,23,0.7));
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--color-crimson);
  border-radius: var(--radius);
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.category-card:hover {
  border-color: rgba(232, 195, 106, 0.4);
  background: linear-gradient(90deg, rgba(161,98,7,0.18), rgba(28,25,23,0.85));
}
.category-card b { font-size: 1.05rem; letter-spacing: 0.04em; }
.category-card small { color: var(--color-muted-fg); }
.age-list .age-group-title {
  margin: 4px 0 -2px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-bright);
  font-weight: 600;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pillar {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  background: rgba(28, 25, 23, 0.72);
  border: 1px solid var(--color-border);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.pillar:hover { border-color: rgba(232, 195, 106, 0.45); box-shadow: var(--shadow-md); }
.pillar svg { width: 28px; height: 28px; color: var(--color-accent-bright); }
.pillar h3 {
  margin: 14px 0 6px;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.pillar p { margin: 0; color: var(--color-muted-fg); font-size: 0.92rem; }

.venue {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}
.venue-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
}
.venue-photo img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
.perk {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 16px;
}
.perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(161, 98, 7, 0.15);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}
.perk-icon svg { width: 20px; height: 20px; color: var(--color-accent-bright); }
.perk h3 { margin: 0 0 4px; font-size: 1rem; }
.perk p { margin: 0; color: var(--color-muted-fg); font-size: 0.9rem; }

.contact-band {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.contact-band img { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: contain; }
.contact-copy {
  padding: 36px 32px;
  background: linear-gradient(160deg, #1C1917, #0C0A09);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.phone {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 8px 0 6px;
  letter-spacing: 0.04em;
}
.phone a { color: inherit; text-decoration: none; }

/* ── Welcome / Highlight / Quote / Supported by (brief 2026-08-29) ── */
.welcome-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.welcome-logo { width: 150px; height: 150px; object-fit: contain; border-radius: 16px; }

.highlight-card {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #1C1917, #0C0A09);
}
.highlight-media img { width: 100%; height: auto; object-fit: contain; }
.highlight-body { padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.highlight-body p { margin: 0; color: var(--color-muted-fg); }
.highlight-body .btn { align-self: flex-start; }

.quote-band {
  margin: 0;
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: linear-gradient(160deg, #1C1917, #0C0A09);
}
.quote-band p {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.4;
}
.quote-band footer { color: var(--color-muted-fg); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }

.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(28, 25, 23, 0.6);
  min-width: 180px;
  min-height: 96px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.sponsor-card:hover { border-color: var(--color-accent-bright); transform: translateY(-2px); }
.sponsor-card img { max-width: 240px; max-height: 120px; width: auto; height: auto; object-fit: contain; }

/* ── News (Highlight of Today / Berita) ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 22px;
}
.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #1C1917, #0C0A09);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
  text-decoration: none;
}
.news-card:hover { border-color: var(--color-accent-bright); transform: translateY(-3px); }
.news-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.news-card-media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.news-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card-body h3 { margin: 0; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.3; }
.news-card-body p { margin: 0; color: var(--color-muted-fg); font-size: 0.92rem; line-height: 1.6; flex: 1; }
.news-more { color: var(--color-accent-bright); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; text-decoration: none; }

@media (max-width: 980px) {
  .highlight-card { grid-template-columns: 1fr; }
}
.comingsoon-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.comingsoon-poster { max-width: 560px; width: 100%; border-radius: 14px; overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-xl); }
.comingsoon-poster img { width: 100%; height: auto; object-fit: contain; }
.phone a:hover { color: var(--color-accent-bright); }

.final-cta {
  text-align: center;
  padding: 72px 24px 24px;
}
.final-cta p { color: var(--color-muted-fg); }

footer {
  border-top: 1px solid var(--color-border);
  padding: 28px 0 40px;
  margin-top: 24px;
}
.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  color: var(--color-muted-fg);
  font-size: 0.88rem;
}
.social {
  display: flex;
  gap: 8px;
}
.social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-silver);
  transition: color 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease);
}
.social a:hover {
  color: var(--color-accent-bright);
  border-color: var(--color-accent);
  background: rgba(161, 98, 7, 0.12);
}
.social svg { width: 18px; height: 18px; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(12,10,9,0.92));
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  width: min(460px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #1C1917;
  color: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  text-align: center;
}
.modal h2 {
  font-family: var(--font-display);
  margin: 12px 0 8px;
}
.modal p { color: var(--color-silver); }
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--color-silver);
  cursor: pointer;
  transition: color 200ms var(--ease), background 200ms var(--ease);
}
.modal-close:hover { color: #fff; background: rgba(255,255,255,0.06); }
.modal-badge {
  display: inline-flex;
  margin: 8px 0 4px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  color: var(--color-accent-bright);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.modal-divider {
  height: 1px;
  margin: 20px 0 16px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  border: 0;
}
.price-block {
  text-align: left;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: rgba(12, 10, 9, 0.45);
}
.price-block h3 {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-bright);
  font-weight: 600;
  text-align: center;
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(214, 211, 209, 0.08);
  color: var(--color-silver);
  font-size: 0.92rem;
}
.price-row:last-of-type { border-bottom: 0; }
.price-row b {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.bank-meta {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(214, 211, 209, 0.08);
  color: var(--color-muted-fg);
  font-size: 0.86rem;
  line-height: 1.55;
  text-align: center;
}
.bank-meta strong { color: var(--color-foreground); font-weight: 500; }
.success-mark {
  width: 56px; height: 56px; margin: 0 auto;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(161, 98, 7, 0.2);
  border: 1px solid var(--color-border);
  color: var(--color-accent-bright);
}

@media (max-width: 980px) {
  .hero-inner, .cat-grid, .venue, .contact-band { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .hero { min-height: auto; }
}
@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .countdown { grid-template-columns: repeat(4, 1fr); }
  .mobile-cta { display: block; }
  .section { padding: 64px 0; }
  body { padding-bottom: 84px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob, .btn-spinner { animation: none; }
  * { transition: none !important; }
}

/* =========================================================
   Registration success state
   ========================================================= */
.reg-success { text-align: center; padding: 32px 0; }
.reg-success .success-mark { margin: 0 auto 16px; }

/* =========================================================
   Landing hero (page 1) — single-column centered variant
   ========================================================= */
.hero-inner--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  align-items: center;
}
.hero-inner--center .welcome-logo { margin-bottom: 16px; }

/* ── Poster Resmi (featured section, awal halaman) ── */
.poster-hero {
  padding: clamp(24px, 5vw, 56px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(161,98,7,0.10), transparent 60%),
    #0E0C0B;
}
.poster-hero-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.poster-hero-poster { display: flex; justify-content: center; }
.poster-hero-poster img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain; /* gambar utuh, TIDAK ter-crop */
  border-radius: 18px;
  border: 1px solid var(--color-border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  background: rgba(255,255,255,0.03);
}
.poster-hero-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 14px;
}
.poster-hero-title em { font-style: italic; color: var(--color-accent-bright); }
.poster-hero-copy .section-lead { max-width: 44ch; }
.poster-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
@media (max-width: 900px) {
  .poster-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .poster-hero-poster { order: -1; }
  .poster-hero-copy .section-lead { max-width: none; }
  .poster-hero-cta { justify-content: center; }
}
