* {
  margin: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  color: #50514F;
  background-color: #FFB84D;
  font-family: "Orbitron", sans-serif;
}
body.dark-theme {
  color: #FFB84D;
  background-color: #50514F;
}
body.dark-theme a {
  color: #809fff;
}

a {
  color: #D56062;
}

.btn-toggle {
  padding: 5px 10px;
  margin: 5px 5px 7px;
  cursor: pointer;
  font-family: "Press Start 2P", sans-serif;
  background: #fff;
  border: 2px solid #333;
  border-radius: 5px;
  box-shadow: 1px 2px 0px #333;
}
.btn-toggle:active {
  box-shadow: 0px 1px 0px;
  transform: translateY(2px);
}
.dark-theme .btn-toggle {
  background: #444;
  color: #f0f0f0;
  border-color: #aaa;
  box-shadow: 2px 3px 0px #222;
}

.home-link {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 30px;
  text-decoration: none;
  z-index: 50;
  line-height: 1;
  transition: transform 0.15s;
}
.home-link:hover {
  opacity: 1;
  transform: scale(1.15);
}

.bat-toggle {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 50;
}

.bat-main {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px 24px;
  gap: 16px;
}
@media (max-height: 700px) {
  .bat-main {
    padding: 40px 12px 12px;
    gap: 10px;
    justify-content: flex-start;
  }
}

.bat-hero {
  text-align: center;
}

.bat-title {
  font-family: "Press Start 2P", sans-serif;
  font-size: clamp(1.4rem, 6vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.bat-card {
  border: 2px solid currentColor;
  border-radius: 4px;
  padding: 8px;
  box-shadow: 4px 4px 0px currentColor;
  width: 100%;
  max-width: 360px;
  text-align: center;
}

.bat-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 40vh;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.05);
}
.dark-theme .bat-image-wrapper {
  background: rgba(255, 255, 255, 0.05);
}

.bat-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bat-image.hidden {
  display: none;
}

.bat-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.bat-image-placeholder.hidden {
  display: none;
}
.bat-image-placeholder span {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  opacity: 0.5;
}

.bat-silhouette {
  width: 80px;
  height: auto;
}

.bat-attribution {
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  opacity: 0.5;
  margin-top: 8px;
  line-height: 1.4;
}

.bat-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 360px;
}

.bat-reveal-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bat-btn {
  font-family: "Press Start 2P", sans-serif;
  font-size: clamp(7px, 1.5vw, 10px);
  padding: 6px 10px;
  cursor: pointer;
  color: currentColor;
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 4px;
  box-shadow: 3px 3px 0px currentColor;
  transition: transform 0.1s, box-shadow 0.1s;
  white-space: nowrap;
  flex-shrink: 0;
}
.bat-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px currentColor;
}
.bat-btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}
.bat-btn:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
  box-shadow: none;
}
.bat-btn--next {
  font-size: clamp(9px, 1.5vw, 12px);
  padding: 10px 20px;
  width: 100%;
  max-width: 360px;
}

.bat-answer {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(11px, 2vw, 14px);
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s;
}
.bat-answer.visible {
  opacity: 1;
}
.bat-answer--latin {
  font-style: italic;
}

/*# sourceMappingURL=styles.css.map */
