.reveal h1, .reveal h2 { text-transform: none; }

.reveal {
  font-family: 'Verb', -apple-system, sans-serif;
}
.reveal h1, .reveal h2, .reveal h3 {
  font-family: 'Verb', -apple-system, sans-serif;
  font-weight: 700;
}
.reveal p, .reveal li {
  font-weight: 400;
}

.reveal .slide-icon { width: 80px; height: 80px; margin-bottom: 0.3em; }
.reveal .icon { width: 60px; height: 60px; fill: #42affa; }

.reveal .caption-box {
  background: rgba(0,0,0,0.6); padding: 0.6em 1em; border-radius: 8px; display: inline-block;
}

.reveal .options-row { display: flex; justify-content: center; gap: 2em; margin-top: 1.5em; }
.reveal .option-box {
  flex: 1; max-width: 320px; padding: 1.5em 1.2em; border-radius: 14px;
  border: 3px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.04);
  transition: all 0.4s ease; opacity: 0.55;
}
.reveal .option-box h3 { margin-top: 0.4em; font-size: 0.8em; }
.reveal .option-box p { font-size: 0.5em; opacity: 0.8; }
.reveal .option-box.current-fragment {
  opacity: 1; border-color: #42affa; background: rgba(66,175,250,0.1);
  box-shadow: 0 0 30px rgba(66,175,250,0.6); transform: scale(1.06);
}
.reveal .option-box.current-fragment .icon { fill: #42affa; }

.reveal .slide-background iframe { border: none; }

.panel-toolbar {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  display: flex;
  gap: 8px;
  font-family: 'Verb', -apple-system, sans-serif;
}

.panel-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s ease;
}
.panel-btn:hover {
  background: rgba(35,140,250,0.9);
}
.panel-btn-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.panel-print-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: #1c1d20;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  overflow: hidden;
  min-width: 170px;
  flex-direction: column;
}
.panel-print-btn.is-open .panel-print-menu {
  display: flex;
}
.panel-print-menu a {
  padding: 9px 12px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.panel-print-menu a:hover {
  background: rgba(35,140,250,0.9);
}

@media print {
  .panel-toolbar { display: none !important; }
}

/* Password gate */
.gate-body {
  margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center;
  background: #191919; font-family: 'Verb', -apple-system, sans-serif; color: #fff;
}
.password-gate {
  text-align: center; background: rgba(255,255,255,0.05); padding: 2.5em 3em;
  border-radius: 12px; max-width: 360px;
}
.password-gate h1 { font-size: 1.4em; margin-bottom: 0.2em; }
.password-gate p { opacity: 0.7; font-size: 0.9em; }
.password-gate input {
  width: 100%; padding: 0.7em; margin: 1em 0; border-radius: 6px; border: none;
  box-sizing: border-box; font-size: 1em;
}
.password-gate button {
  width: 100%; padding: 14px 28px; border-radius: 999px; border: none; background: #238cfa;
  color: #fff; font-size: 14px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.03em; cursor: pointer;
}
.password-gate button:hover { background: #1a72cc; }
.gate-error {
  background: #ffd454 !important;
  color: #111 !important;
  opacity: 1 !important;
  padding: 0.6em 0.9em;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9em;
}
