/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  background-color: black;
  overflow: hidden;
  font-family: sans-serif;
  position: relative;
}

/* Center the main content */
body {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container for GIF and link */
.container {
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 1;
  position: relative;
}

/* Centered GIF */
.center-gif {
  max-height: 90vh;
  max-width: 40vw;
  object-fit: contain;
  border-radius: 12px;
}

/* View link */
#view-link {
  display: flex;
  align-items: center;
}

.view-img {
  max-height: 160px;
  cursor: pointer;
  border-radius: 4px;
}

/* Instruction message */
#click-instruction {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: white;
  z-index: 1000;
}

/* ✅ Stickers floating around the screen */
.sticker {
  position: absolute;
  z-index: 5;
  pointer-events: auto;
}

.sticker img {
  width: 80px;
  image-rendering: pixelated;
  transition: transform 0.3s ease;
}

.sticker:hover img {
  transform: scale(1.2) rotate(3deg);
}
