@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #ffeef8;
  font-family: 'Handlee', cursive;
  color: #d94f95;
  cursor: url('cheemse.png') 16 16, auto;
  overflow-x: hidden;
  position: relative;
}

/* Navbar styling */
.navbar {
  background-color: #ffc1e3;
  padding: 10px;
  text-align: center;
  border-bottom: 3px dashed #fbb1d6;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar a {
  color: #fff;
  font-weight: bold;
  margin: 0 15px;
  text-decoration: none;
  font-size: 18px;
}

.navbar a:hover {
  color: #ff69b4;
  text-shadow: 0 0 5px white;
}

/* Left panel with plushies */
.left-panel {
  position: fixed;
  top: 60px; /* below navbar */
  left: 10px;
  width: 150px;
  text-align: center;
  z-index: 2000;
}

.drag-label {
  font-size: 20px;
  font-weight: bold;
  color: #ff69b4;
  margin-bottom: 10px;
  user-select: none;
}

/* Plushies styling */
.draggable {
  width: 100px;
  margin-bottom: 15px;
  cursor: grab;
  user-select: none;
}

/* Main content wrapper */
.main-content {
  max-width: 700px;
  margin: 70px auto 40px auto;
  padding-left: 180px; /* leave space for left panel */
  text-align: center;
}

/* Banner */
.banner {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
}

/* Walking gif container */
.walking-gif-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.walking-gif {
  width: 100%;
  height: auto;
  display: block;
  animation: walkAcross 20s linear infinite;
}

/* Walking animation across the screen */
@keyframes walkAcross {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Textbox styling */
.textbox {
  background-color: #fff0f8;
  border: 3px dashed #fbb1d6;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px #fcb9d2;
  font-size: 18px;
  color: #d94f95;
  user-select: none;
}

.textbox h1, .textbox h2 {
  color: #ff69b4;
  margin-top: 0;
}

/* Sparkle trail dots */
.trail-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #ffb6d9, #ff69b4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}
