/* Shared ZoomieTag theme */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

:root {
  color-scheme: dark;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255,214,79,0.18), transparent 18%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 12%),
    linear-gradient(135deg, #050505 0%, #181300 40%, #2b2200 65%, #0d0d0d 100%);
  color: #fef2aa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.brand-font {
  font-family: 'Pacifico', cursive;
  font-style: italic;
  color: #ffdd57;
}

.electric-outline {
  text-shadow: 0 0 18px rgba(255,236,105,0.75), 0 0 30px rgba(255,184,28,0.35);
  color: #ffe599;
}

.lightning-bolt {
  display: inline-block;
  transform: rotate(10deg);
  font-size: 0.95em;
  margin: 0 0.35rem;
  color: #ffdd57;
  text-shadow: 0 0 18px rgba(255,255,138,0.9), 0 0 24px rgba(255,184,28,0.4);
}

.image-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: inset 0 0 100px rgba(255,255,255,0.02), 0 20px 60px rgba(0,0,0,0.45);
}

.image-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 45%);
}

.image-slide.active {
  opacity: 1;
}

.image-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background-color: #111111;
  border-radius: 12px;
  border: 2px solid rgba(255,221,85,0.22);
  box-shadow: 0 0 35px rgba(255,210,75,0.12);
  display: block;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 221, 79, 0.14);
  border: 1px solid rgba(255,221,79,0.35);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffe187;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 0 18px rgba(255,205,70,0.18);
}

.slider-button:hover {
  background: rgba(255,221,79,0.25);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 26px rgba(255,205,70,0.25);
}

.slider-button.prev {
  left: 18px;
}

.slider-button.next {
  right: 18px;
}

.button-electric {
  background: linear-gradient(135deg, #ffdd57, #f2b52c);
  color: #1a1200;
  box-shadow: 0 12px 30px rgba(255,196,45,0.35);
  border: 1px solid rgba(255,226,130,0.65);
}

.button-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,221,79,0.2);
}

.button-secondary:hover {
  background: rgba(255,255,255,0.15);
}

.callout {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255,221,79,0.18);
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 0 40px rgba(255, 191, 27, 0.08);
  color: #fff9d6;
}

.note {
  color: #ffeeb2;
}

.glass-panel {
  background: rgba(15, 15, 15, 0.92);
  border: 1px solid rgba(255, 221, 79, 0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.rescue-title {
  color: #fffef0;
}

.rescue-message {
  color: #f5e8b6;
}

.rescue-note {
  color: #ffe8a4;
}
