* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #15161b;
  --bg2: #101117;
  --bg3: #0c0d12;
  --border: #2c2e37;
  --border2: #4b4e59;
  --gold: #c9a24e;
  --gold2: #ab8a3f;
  --text: #ece7dc;
  --text2: #b6a388;
  --text3: #8a8377;
  --text4: #565963;
}
body.light {
  --bg: #f5ede0;
  --bg2: #ede0cc;
  --bg3: #e4d4b8;
  --border: #d4b896;
  --border2: #c4956a;
  --gold: #8b5e1a;
  --gold2: #a06f20;
  --text: #2a1800;
  --text2: #6b3f10;
  --text3: #9b6a3a;
  --text4: #c4956a;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  transition:
    background 0.3s,
    color 0.3s;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
p,
.about-text,
.acc-body > p,
.wyg-item-desc,
.ci-desc,
.hari-desc {
  letter-spacing: 0.1px;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 12px;
  flex-wrap: wrap;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.nav-logo {
  height: 34px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-brand .nav-title {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.nav-brand .nav-sub {
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--text3);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}
.nav-link {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text3);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  padding: 6px 8px;
  border-bottom: 1px solid transparent;
}
.nav-link:hover {
  color: var(--gold);
}
.nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-tog {
  display: flex;
  border: 1px solid var(--border2);
  border-radius: 2px;
  overflow: hidden;
}
.ltb {
  padding: 5px 10px;
  background: transparent;
  border: none;
  color: var(--text3);
  font-size: 10px;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: all 0.2s;
}
.ltb.on {
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
}
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid var(--border2);
  border-radius: 2px;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s;
}
.theme-toggle:hover {
  border-color: var(--gold);
}
.theme-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text3);
  font-family: "Inter", sans-serif;
}
.theme-icon {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--text3);
  stroke-width: 2;
}

/* PAGES */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* HOME */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 28px 52px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.1s ease;
}
.hero-slide.on {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.14);
  }
}
.hero-slide.ph {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.ph0 {
  background: linear-gradient(135deg, #2a1a0c 0%, #0d0500 55%, #1a1005 100%);
}
.hero-slide.ph1 {
  background: linear-gradient(135deg, #241206 0%, #0a0400 60%, #2a1c0a 100%);
}
.hero-slide.ph2 {
  background: linear-gradient(135deg, #1c1206 0%, #0d0703 55%, #241a0c 100%);
}
.hero-ph-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(212, 168, 67, 0.34);
  border: 1px dashed rgba(212, 168, 67, 0.28);
  padding: 8px 18px;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 6, 2, 0.55) 0%,
    rgba(10, 6, 2, 0.78) 100%
  );
}
body.light .hero-scrim {
  background: linear-gradient(
    180deg,
    rgba(10, 6, 2, 0.62) 0%,
    rgba(10, 6, 2, 0.85) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.35);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
  border: none;
}
.hero-dot.on {
  background: var(--gold);
  transform: scale(1.25);
}
body.light .hero-title,
body.light .hero .hero-desc {
  color: var(--gold);
}
.hero .hero-desc {
  color: #e8dcc4;
}
.hero .hero-badge {
  color: #d8c9a8;
  border-color: rgba(212, 168, 67, 0.4);
}
.hero .hero-subid {
  color: #cdbc99;
}
.hero-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text3);
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 5px 16px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 8px;
}
.hero-subid {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-desc {
  font-size: 13px;
  color: var(--text2);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-p {
  padding: 11px 24px;
  background: var(--gold);
  border: none;
  border-radius: 2px;
  color: var(--bg);
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.btn-p:hover {
  background: var(--gold2);
}
.btn-o {
  padding: 11px 24px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 2px;
  color: var(--text3);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-o:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 32px 0 0;
}
.dline {
  height: 1px;
  width: 50px;
  background: var(--border);
}
.ddia {
  width: 5px;
  height: 5px;
  background: var(--border2);
  transform: rotate(45deg);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--gold);
  display: block;
}
.stats-src {
  text-align: center;
  font-size: 9.5px;
  letter-spacing: 0.5px;
  color: var(--text4);
  padding: 12px 20px 0;
}
.stats-src a {
  color: var(--text3);
  text-decoration: none;
  border-bottom: 1px dotted var(--border2);
}
.stats-src a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.stat-lbl {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text3);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
.section {
  padding: 40px 28px;
  border-bottom: 1px solid var(--border);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.sec-eye {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text3);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.sec-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-text {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.9;
}
.about-hl {
  border-left: 2px solid var(--border2);
  padding-left: 14px;
  margin-top: 16px;
}
.about-q {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  color: var(--text3);
  font-style: italic;
  line-height: 1.7;
}
.culture-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  background: var(--bg2);
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.ci:hover {
  transform: translateY(-2px);
  border-color: var(--gold2);
  background: var(--bg3);
}
.ci-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--gold);
  margin-top: 5px;
  transform: rotate(45deg);
}
.ci-img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--bg3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.ci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ci-ph {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text4);
}
.ci-txt {
  flex: 1;
  min-width: 0;
}
.ci-name {
  font-size: 12px;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 2px;
}
.ci-desc {
  font-size: 11px;
  color: var(--text3);
  line-height: 1.5;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.mc {
  border: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.mc:hover {
  border-color: var(--gold2);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.mc-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--bg3);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mc-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 5, 0.28), rgba(8, 7, 5, 0.58));
  transition: background 0.25s;
}
.mc:hover .mc-thumb::after {
  background: linear-gradient(180deg, rgba(8, 7, 5, 0.12), rgba(8, 7, 5, 0.4));
}
.mc-thumb svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.7));
}
.play-btn {
  width: 34px;
  height: 34px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.play-tri {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 11px solid var(--gold);
  margin-left: 3px;
}
.mc-info {
  padding: 10px 12px;
}
.mc-tag {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mc-title {
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 3px;
}
.mc-src {
  font-size: 10px;
  color: var(--text4);
  letter-spacing: 1px;
}
.media-note {
  font-size: 11px;
  color: var(--text3);
  margin-top: 14px;
  line-height: 1.6;
  padding: 12px;
  border: 1px dashed var(--border);
  background: var(--bg2);
}
.hero-logo {
  height: 78px;
  width: auto;
  display: block;
  margin: 0 auto 24px;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.5));
}
.ft-logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.sekilas-vcap {
  font-size: 11px;
  color: var(--text3);
  margin-top: 10px;
  line-height: 1.5;
}
.msl {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg3);
  border: 1px solid var(--border2);
  overflow: hidden;
}
.msl-track {
  position: absolute;
  inset: 0;
}
.msl-track iframe,
.msl-track video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}
.msl-track video {
  object-fit: contain;
}
.msl-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.msl-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.msl-ph span {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text4);
  max-width: 280px;
  line-height: 1.6;
}
.msl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(10, 8, 6, 0.55);
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.msl-arrow:hover {
  background: rgba(10, 8, 6, 0.8);
}
.msl-prev {
  left: 10px;
}
.msl-next {
  right: 10px;
}
.msl-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  gap: 7px;
  justify-content: center;
}
.msl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201, 162, 78, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.msl-dot.on {
  background: var(--gold);
  transform: scale(1.25);
}
.sekilas-links {
  margin-top: 20px;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.feat {
  padding: 24px 18px;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.feat:hover {
  background: var(--bg2);
}
.feat:last-child {
  border-right: none;
}
.feat-icon {
  margin-bottom: 10px;
}
.feat-title {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 5px;
}
.feat-desc {
  font-size: 11px;
  color: var(--text3);
  line-height: 1.5;
}
footer {
  padding: 44px 28px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.ft-main {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.3fr;
  gap: 40px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.ft-brand-col {
  max-width: 320px;
}
.ft-tag {
  font-size: 11.5px;
  color: var(--text3);
  line-height: 1.7;
  margin: 10px 0 16px;
}
.ft-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ft-social {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text2);
  border: 1px solid var(--border2);
  padding: 6px 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.ft-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.ft-social-ic {
  padding: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
}
.ft-social-ic svg {
  width: 17px;
  height: 17px;
  display: block;
}
.ft-h {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.ft-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}
.ft-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.ft-link:hover {
  color: var(--gold);
}
.ft-contacts {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ft-contact {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.ft-contact svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--gold2);
  stroke-width: 1.6;
  flex-shrink: 0;
  margin-top: 2px;
}
.ft-contact span,
.ft-contact a {
  font-size: 11.5px;
  color: var(--text2);
  line-height: 1.5;
  text-decoration: none;
  word-break: break-word;
}
.ft-contact a:hover {
  color: var(--gold);
}
.ft-bottom {
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 10px;
  color: var(--text4);
  letter-spacing: 1px;
  max-width: 1120px;
}
.ft-brand {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  color: var(--gold);
}
.ft-info {
  font-size: 10px;
  color: var(--text4);
  letter-spacing: 1px;
  line-height: 1.6;
  text-align: right;
}

/* MAP */
.map-wrap {
  border: 1px solid var(--border);
  background: var(--bg2);
  position: relative;
}
.map-area {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.map-legend {
  display: flex;
  gap: 16px;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.leg-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.leg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.map-tt {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--border2);
  padding: 10px 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
  min-width: 130px;
}
.tt-name {
  font-size: 12px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  margin-bottom: 2px;
}
.tt-desc {
  font-size: 10px;
  color: var(--text3);
  line-height: 1.4;
}

/* DALANG */
.dalang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 14px;
}
.dc {
  border: 1px solid var(--border);
  background: var(--bg2);
  padding: 18px 14px;
  transition: border-color 0.2s;
}
.dc:hover {
  border-color: var(--border2);
}
.d-avatar {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--gold);
}
.d-name {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 3px;
}
.d-spec {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.d-bio {
  font-size: 11px;
  color: var(--text3);
  line-height: 1.6;
}
.d-since {
  font-size: 10px;
  color: var(--text4);
  margin-top: 7px;
  letter-spacing: 1px;
}

/* QUIZ */
.quiz-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.q-badge {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}
.q-intro-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
}
.q-intro-sub {
  font-size: 13px;
  color: var(--text3);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 420px;
}
.q-start {
  padding: 14px 40px;
  background: var(--gold);
  border: none;
  border-radius: 2px;
  color: var(--bg);
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.q-start:hover {
  background: var(--gold2);
}
.q-hint {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text3);
  text-transform: uppercase;
  margin-top: 16px;
}
.pbar-wrap {
  width: 100%;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  margin-bottom: 28px;
}
.pbar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.4s ease;
}
.q-num {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}
.q-text {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  color: var(--text);
  text-align: center;
  line-height: 1.55;
  margin-bottom: 28px;
  min-height: 56px;
}
.q-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.opt {
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text2);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1.4;
}
.opt:hover {
  border-color: var(--gold);
  color: var(--text);
  background: rgba(212, 168, 67, 0.06);
}
.opt.sel {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
}
.r-card {
  width: 100%;
  border: 1px solid var(--border);
  padding: 28px;
  text-align: center;
  position: relative;
  background: var(--bg2);
}
.r-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--border);
  pointer-events: none;
}
.r-archetype {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.r-name {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
}
.r-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.trait {
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 1px;
}
.trait.hl {
  border-color: var(--border2);
  color: var(--text2);
}
.r-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: left;
}
.r-wisdom {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  color: var(--text3);
  font-style: italic;
  border-left: 2px solid var(--border);
  padding-left: 16px;
  text-align: left;
  margin-bottom: 24px;
}
.r-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.r-char-svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

/* PHOTOBOOTH */
.booth-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.booth-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 280px;
}
.cam-box {
  position: relative;
  width: 320px;
  height: 240px;
  border: 2px solid var(--gold);
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg3);
}
#video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}
.cam-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
}
.corner.tl {
  top: 10px;
  left: 10px;
  border-top-width: 2px;
  border-left-width: 2px;
}
.corner.tr {
  top: 10px;
  right: 10px;
  border-top-width: 2px;
  border-right-width: 2px;
}
.corner.bl {
  bottom: 10px;
  left: 10px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}
.corner.br {
  bottom: 10px;
  right: 10px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}
.cd-display {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.flash-el {
  position: absolute;
  inset: 0;
  background: #fff8ee;
  opacity: 0;
  pointer-events: none;
}
.cam-err {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: var(--bg3);
  font-size: 12px;
  color: var(--text3);
  text-align: center;
  padding: 16px;
}
.booth-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 320px;
}
.ctrl-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text3);
  align-self: flex-start;
}
.frame-sel {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
}
.fb {
  padding: 6px 13px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 20px;
  color: var(--text3);
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
}
.fb:hover,
.fb.on {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 67, 0.07);
}
.prog-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  transition: all 0.3s;
  background: transparent;
}
.dot.taken {
  background: var(--gold);
  border-color: var(--gold);
}
.shoot-btn {
  width: 180px;
  padding: 12px;
  background: var(--gold);
  border: none;
  border-radius: 2px;
  color: var(--bg);
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.shoot-btn:hover {
  background: var(--gold2);
}
.shoot-btn:disabled {
  background: var(--border);
  color: var(--bg3);
  cursor: not-allowed;
}
.status-txt {
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 1px;
  height: 16px;
  text-align: center;
}
.booth-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.strip-prompt {
  width: 140px;
  height: 580px;
  background: var(--bg2);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip-prompt p {
  font-size: 10px;
  color: var(--text4);
  text-align: center;
  letter-spacing: 1.5px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}
.strip-result {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#strip-canvas {
  width: 192px;
  height: auto;
  max-width: 100%;
}
.strip-actions {
  display: flex;
  gap: 10px;
}
.dl-btn {
  padding: 10px 20px;
  background: var(--gold);
  border: none;
  border-radius: 2px;
  color: var(--bg);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.dl-btn:hover {
  background: var(--gold2);
}
.reset-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 2px;
  color: var(--text3);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.reset-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== WAYANG & UNESCO PAGE ===== */
.wyg-intro {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 26px;
}
.unesco-card {
  border: 1px solid var(--border2);
  background: var(--bg2);
  padding: 24px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.unesco-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.4;
}
.unesco-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  border: 1px solid var(--border2);
  padding: 5px 14px;
  margin-bottom: 14px;
}
.unesco-date {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 6px;
}
.unesco-desc {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.8;
  max-width: 560px;
}
.reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.reason {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg2);
}
.reason-num {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--gold2);
  line-height: 1;
  flex-shrink: 0;
}
.reason-txt {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
}
.hari-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hari-card {
  border: 1px solid var(--border);
  background: var(--bg2);
  padding: 20px;
}
.hari-tag {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hari-date {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}
.hari-desc {
  font-size: 11.5px;
  color: var(--text3);
  line-height: 1.6;
}
/* accordion */
.acc-intro {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 18px;
}
.acc {
  border: 1px solid var(--border);
  background: var(--bg2);
  margin-bottom: 8px;
  overflow: hidden;
}
.acc > summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  color: var(--gold);
  transition: background 0.2s;
}
.acc > summary::-webkit-details-marker {
  display: none;
}
.acc > summary:hover {
  background: var(--bg3);
}
.acc > summary .acc-chev {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.acc[open] > summary .acc-chev {
  transform: rotate(180deg);
}
.acc-body {
  padding: 2px 18px 18px;
}
.acc-body > p {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 12px;
}
.wyg-item {
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.wyg-item:first-child {
  border-top: none;
}
.wyg-item-name {
  font-size: 12.5px;
  color: var(--gold2);
  font-weight: 700;
  margin-bottom: 3px;
}
.wyg-item-name em {
  color: var(--text2);
  font-weight: 400;
  font-style: italic;
}
.wyg-item-desc {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.65;
}
.wyg-item-desc em {
  color: var(--text2);
  font-style: italic;
}
.wyg-tokoh {
  color: var(--text2);
  font-style: italic;
}
.wyg-closing {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 1px;
  padding: 24px 0 8px;
}
.wyg-sources {
  font-size: 10.5px;
  color: var(--text4);
  line-height: 1.8;
  margin-top: 14px;
  padding: 14px;
  border: 1px dashed var(--border);
  background: var(--bg2);
}
.wyg-sources b {
  color: var(--text3);
  letter-spacing: 1px;
}
/* ===== SUPPORTING IMAGES (infografis, dokumentasi arkeologi, dll) =====
   Beda dari .video-embed: ukurannya lebih kecil & pakai object-fit:contain
   supaya foto potret (3:4) atau lanskap gak kepotong/zoom paksa. */
.img-support {
  width: 100%;
  max-width: 460px;
  height: 300px;
  margin: 0 auto;
  border: 1px solid var(--border2);
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-support img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .img-support {
    height: 240px;
    max-width: 100%;
  }
}
/* ===== VIDEO EMBED ===== */
.video-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--border2);
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-embed video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}
.vid-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.vid-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--border2);
  fill: none;
  stroke-width: 1.5;
}
.vid-ph-title {
  font-size: 12px;
  color: var(--text3);
  letter-spacing: 1px;
}
.vid-ph-sub {
  font-size: 10px;
  color: var(--text4);
  letter-spacing: 1px;
  max-width: 260px;
  line-height: 1.5;
}
.video-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.vb-cap {
  font-size: 11.5px;
  color: var(--text3);
  margin-top: 8px;
  letter-spacing: 0.5px;
  line-height: 1.5;
  text-align: center;
}
.safety-note {
  font-size: 11px;
  color: var(--text3);
  margin-top: 14px;
  line-height: 1.6;
  padding: 12px 14px;
  border-left: 2px solid var(--gold2);
  background: var(--bg2);
}
/* ===== KUNJUNGI ===== */
.kunj-map {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 420px;
  border: 1px solid var(--border2);
  background: var(--bg3);
  overflow: hidden;
  margin-bottom: 22px;
}
.safety-block {
  width: 100%;
  margin: 22px 0 0;
}
.kunj-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15);
}
.kunj-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}
.kunj-block {
  border: 1px solid var(--border);
  background: var(--bg2);
  padding: 18px 20px;
}
.kunj-h {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.kunj-contact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.kunj-contact:first-of-type {
  border-top: none;
  padding-top: 0;
}
.kunj-ci {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.kunj-ci svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold2);
  stroke-width: 1.6;
}
.kunj-ctext {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.kunj-cl {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text4);
}
.kunj-cv {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.5;
  word-break: break-word;
}
.kunj-cv a {
  color: var(--gold);
  text-decoration: none;
}
.kunj-cv a:hover {
  text-decoration: underline;
}
.kunj-empty {
  font-size: 11px;
  color: var(--text4);
  font-style: italic;
}
/* ===== PAKET WISATA ===== */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.paket-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.paket-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.paket-card.best {
  border-color: var(--gold2);
  box-shadow: 0 0 0 1px var(--gold2) inset;
}
.paket-media {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg3);
  overflow: hidden;
}
.paket-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.paket-best {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--bg);
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.paket-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.paket-name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 8px;
}
.paket-min {
  display: inline-block;
  align-self: flex-start;
  font-size: 8.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text3);
  border: 1px solid var(--border);
  padding: 3px 9px;
  margin-bottom: 12px;
}
.paket-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0 0 4px;
}
.paket-items li {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
}
.paket-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background: var(--gold2);
  transform: rotate(45deg);
}
.paket-wa {
  display: inline-block;
  align-self: flex-start;
  margin-top: 14px;
  padding: 9px 16px;
  background: var(--gold);
  color: var(--bg);
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.paket-wa:hover {
  background: var(--gold2);
}
.paket-book {
  font-size: 12px;
  color: var(--text3);
  margin-top: 20px;
  padding: 12px 14px;
  border-left: 2px solid var(--gold2);
  background: var(--bg2);
  line-height: 1.6;
}
/* ===== KULINER ===== */
.kuliner-list {
  max-width: 560px;
  display: flex;
  flex-direction: column;
}
.kuliner-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 560px;
  margin-bottom: 20px;
}
.kul-photo {
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg3);
}
.kul-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kuliner-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
}
.kul-name {
  font-size: 13px;
  color: var(--text2);
}
.kul-star {
  color: var(--gold);
}
.kuliner-note {
  font-size: 11.5px;
  color: var(--text3);
  line-height: 1.6;
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 2px solid var(--gold2);
  background: var(--bg2);
}
.kunj-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kunj-social {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text2);
  border: 1px solid var(--border2);
  padding: 7px 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.kunj-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}
/* ===== INVENTARISASI KOLEKSI ===== */
.inv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.inv-card {
  border: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.inv-card:hover {
  border-color: var(--gold2);
  transform: translateY(-3px);
}
.inv-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.inv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.inv-thumb-ph {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text4);
  text-align: center;
  padding: 10px;
}
.inv-body {
  padding: 13px 15px;
}
.inv-name {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 6px;
}
.inv-id {
  display: inline-block;
  font-size: 8.5px;
  letter-spacing: 1.5px;
  color: var(--text4);
  border: 1px solid var(--border);
  padding: 2px 7px;
  margin-bottom: 8px;
}
.inv-meta {
  font-size: 11px;
  color: var(--text3);
  line-height: 1.7;
}
.inv-meta b {
  color: var(--text2);
  font-weight: 600;
}
.inv-tap {
  font-size: 9.5px;
  color: var(--gold2);
  margin-top: 8px;
  letter-spacing: 0.4px;
}
.inv-modal-thumb {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--bg3);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inv-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 600px) {
  .inv-modal-thumb {
    height: 220px;
  }
}
.inv-modal-name {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 4px;
}
.inv-modal-desc {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.8;
}
.inv-modal-desc p {
  margin-bottom: 12px;
}
.inv-modal-desc p:last-child {
  margin-bottom: 0;
}
.kamus-pos {
  font-size: 11px;
  color: var(--text4);
  font-style: normal;
}
/* ===== KAMUS DICTIONARY CARD (popup) ===== */
.kd-box {
  max-width: 460px;
}
.kd-src {
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--text3);
  text-align: right;
  margin-bottom: 6px;
}
.kd-tag {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold2);
}
.kd-word {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  margin: 6px 0 16px;
}
.kd-pos {
  font-size: 16px;
  color: var(--text3);
  font-weight: 400;
  font-style: italic;
}
.kd-def {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 18px;
}
.kd-ctx-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  margin-bottom: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.kd-ctx-lbl {
  font-size: 11.5px;
  color: var(--text);
  font-weight: 600;
}
.kd-ctx-quote {
  font-size: 12px;
  color: var(--gold2);
  font-style: italic;
  line-height: 1.6;
}
.kd-note {
  font-size: 11px;
  color: var(--text3);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.kd-note-txt {
  text-decoration: underline;
  text-decoration-color: var(--gold2);
  color: var(--text2);
}
/* ===== KAMUS ===== */
.kamus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}
.kamus-item {
  border: 1px solid var(--border);
  background: var(--bg2);
  padding: 13px 15px;
  border-left: 2px solid var(--gold2);
  cursor: pointer;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.kamus-item:hover {
  border-color: var(--gold2);
  transform: translateY(-2px);
}
.kamus-term {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 4px;
}
.kamus-def {
  font-size: 11.5px;
  color: var(--text2);
  line-height: 1.65;
}
.kamus-note {
  font-size: 10px;
  color: var(--text4);
  margin-top: 4px;
  font-style: italic;
}
/* ===== GAME MODAL ===== */
.game-cta {
  border: 1px dashed var(--border2);
  background: var(--bg2);
  padding: 24px;
  text-align: center;
  margin-top: 6px;
}
.game-cta p {
  font-size: 12.5px;
  color: var(--text3);
  margin-bottom: 14px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.modal-ov {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 5, 3, 0.72);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-ov.on {
  display: flex;
}
.modal-box {
  background: var(--bg);
  border: 1px solid var(--gold2);
  max-width: 480px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 28px 26px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalPop 0.28s ease;
}
@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text3);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover {
  color: var(--gold);
}
.game-num {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.game-q {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 18px;
}
.game-opts {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.game-opt {
  text-align: left;
  padding: 11px 14px;
  border: 1px solid var(--border2);
  background: var(--bg2);
  color: var(--text2);
  font-size: 12.5px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: "Inter", sans-serif;
}
.game-opt:hover {
  border-color: var(--gold);
}
.game-opt.correct {
  border-color: #5a9b5a;
  background: rgba(90, 155, 90, 0.15);
  color: var(--text);
}
.game-opt.wrong {
  border-color: #b5554f;
  background: rgba(181, 85, 79, 0.15);
  color: var(--text);
}
.game-pbar {
  width: 100%;
  height: 2px;
  background: var(--border);
  margin-bottom: 16px;
}
.game-pbar-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.3s;
}
.game-score {
  text-align: center;
}
.game-score-num {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  color: var(--gold);
  margin: 10px 0;
}
.game-score-txt {
  font-size: 12.5px;
  color: var(--text3);
  line-height: 1.7;
  margin-bottom: 20px;
}
/* ===== WAYANG IMAGES ===== */
.wyg-item.has-fig {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.wyg-item-txt {
  flex: 1;
  min-width: 0;
}
.wyg-fig {
  flex-shrink: 0;
  width: 92px;
}
.wyg-plate {
  background: #f3ead9;
  border: 1px solid var(--border2);
  padding: 6px;
  border-radius: 2px;
}
.wyg-plate img {
  display: block;
  width: 100%;
  height: auto;
}
.wyg-face {
  width: 80px;
  display: flex;
  justify-content: center;
}
.wyg-face img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 130px;
  object-fit: contain;
}
.wyg-diagram {
  margin: 4px 0 16px;
  max-width: 520px;
}
.wyg-diagram .wyg-plate img {
  width: 100%;
}

@media (max-width: 600px) {
  .about-grid,
  .stats,
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .reasons,
  .hari-grid,
  .kunj-cols {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 26px;
  }
  .nav-links {
    flex-basis: 100%;
    justify-content: flex-start;
    order: 3;
    gap: 2px 6px;
  }
  .nav-link {
    font-size: 9px;
    padding: 5px 5px;
  }
  .feat:nth-child(even) {
    border-right: none;
  }
  .wyg-fig {
    width: 74px;
  }
  .wyg-face {
    width: 66px;
  }
  .wyg-face img {
    height: 104px;
  }
  .ft-main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .ft-brand-col {
    grid-column: 1 / -1;
    max-width: none;
  }
  .hero {
    min-height: 380px;
    padding: 52px 24px 46px;
  }
}

/* ===== BACKSOUND TOGGLE ===== */
.audio-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold2);
  background: var(--bg2);
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.15s,
    border-color 0.15s;
}
.audio-toggle:hover {
  transform: scale(1.08);
  border-color: var(--gold);
}
@media (max-width: 600px) {
  .audio-toggle {
    bottom: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}