/* Kulit library weFinite VR. Dibaca dari jarak headset: target sentuh besar, kontras tinggi. */
:root {
  --bg: #0b0f14; --card: #131a22; --line: #1f2a36;
  --fg: #e8eef5; --muted: #8fa3b8; --accent: #2d8cff; --danger: #ff5a5a;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font: 16px/1.5 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  padding: 24px; max-width: 900px; margin-inline: auto;
}
header { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
h1 { font-size: 26px; margin: 0; }
.sub { color: var(--muted); font-size: 14px; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; border: 0; border-radius: 10px;
  padding: 14px 20px; font-size: 16px; cursor: pointer;
}
.btn.ghost { background: transparent; color: var(--fg); border: 1px solid var(--line); }
.btn:disabled { opacity: .5; cursor: default; }
input[type=file] { display: none; }

.tour {
  display: flex; align-items: center; gap: 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; margin-bottom: 12px; cursor: pointer;
}
.tour:active { border-color: var(--accent); }
.tour .body { flex: 1; min-width: 0; }
.tour .name { font-size: 18px; font-weight: 600; }
.tour .meta { color: var(--muted); font-size: 13px; }
.tour .badge {
  font-size: 12px; color: var(--accent); border: 1px solid var(--accent);
  border-radius: 6px; padding: 2px 8px; margin-left: 8px;
}
.icon-btn {
  background: transparent; border: 0; color: var(--danger);
  font-size: 22px; padding: 10px 14px; cursor: pointer;
}
.empty { color: var(--muted); text-align: center; padding: 48px 0; }

#progress { color: var(--muted); font-size: 14px; min-height: 22px; margin-bottom: 12px; }
#storage { color: var(--muted); font-size: 13px; margin-top: 24px; }

dialog {
  background: var(--card); color: var(--fg); border: 1px solid var(--line);
  border-radius: 12px; padding: 24px; max-width: 420px;
}
dialog::backdrop { background: rgba(0,0,0,.6); }
dialog .row { display: flex; gap: 12px; justify-content: flex-end; margin-top: 20px; }
