/* Reset & base */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #fff9c4;
font-family: "cc-overbyte-off", sans-serif;
  overflow: hidden;
}

* {
  font-family: "cc-overbyte-off", sans-serif !important;
}

/* Fixed canvas at top */
#canvas {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 2100px;
  height: 700px;
  background: transparent;
  overflow: hidden;
  z-index: 5;
}

/* Slide image styles */
.slide {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 70%;
  max-height: 100%;
  object-fit: contain;
  display: none;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.5s ease;
  z-index: 10;
  border: 5px solid #8c68df;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(140, 104, 223, 0.4);
}

.slide.active {
  display: block;
}

.gif-bottom {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Countdown overlay */
#countdownOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(139, 104, 223, 0.6);
  color: #ff7513;
  font-size: 150px;
  font-weight: bold;
  z-index: 1000;
}

/* Top slide text */
#slideText {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  color: #8c68df;
  z-index: 1100;
  pointer-events: none;
  white-space: nowrap;
}

/* Bottom cat text */
.cat-text {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: #8c68df;
  z-index: 1100;
  text-align: center;
  margin: 0;
  cursor: pointer;
}