body {
  margin: 0;
  padding: 20px;
  background: #ffeef5;
  font-family: Arial, sans-serif;
}

.top-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* sidebars */
.left-sidebar,
.right-sidebar {
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* main */
.main-content {
  width: 450px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* boxes */
.box,
.mini-box {
  background: white;
  border: 3px dotted #ff99cc;
  padding: 10px;
  border-radius: 12px;
}

/* images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* extras */
.extra-boxes {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.banner {
  text-align: center;
  margin-bottom: 20px;
}

.banner img {
  max-width: 1000px;
  width: 100%;
  border-radius: 50px;
}
.sticker {
  position: fixed;
  width: 80px;
  z-index: 10;
}

.s1 { bottom: 20px; left: 20px; }
.s2 { bottom: 20px; right: 20px; }
.s3 { top: 120px; right: 40px; }

.art-box img {
  max-height: 250px;
  object-fit: contain;
}

.art-box img {
  width: 100%;
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
  display: block;
  margin: auto;
}

.art-img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  display: block;
  margin: auto;
}
.thoughts-content {
  max-height: 140px;
  overflow-y: auto;
  font-size: 14px;
}
.poll {
  list-style: none;
  padding-left: 0;
}

.poll li {
  margin-bottom: 6px;
}
.checklist {
  list-style: none;
  padding-left: 0;
}
iframe {
  border: none;
  border-radius: 10px;
}
/* Make the guestbook iframe cute */
.comments iframe,
iframe {
  background: #fff7fb;
  border-radius: 14px;
  box-shadow: 0 0 0 2px #ffc2dd inset;
}
.soft-note {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 6px;
}

.poll {
  list-style: none;
  padding-left: 0;
  font-size: 13px;
}


.right-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 240px; /* or whatever yours already is */
}
.thoughts {
  max-height: 200px;
}
.thoughts-content {
  max-height: 140px;
  overflow-y: auto;
}
.game-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 6px;
}
.right-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.right-sidebar > .mini-box {
  width: 100%;
}
.game-img {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.poll li {
  margin-bottom: 6px;
}
.checklist {
  list-style: none;
  padding-left: 0;
  font-size: 13px;
}



/* Floating background stickers */
.float-bg {
  position: fixed;   /* sticks relative to viewport */
  width: 80px;
  height: 80px;
  z-index: 0;        /* behind main boxes */
  pointer-events: none; /* click through */
}

/* Floating background stickers */
.float-bg {
  position: fixed;   /* sticks relative to viewport */
  width: 80px;
  height: 80px;
  z-index: 0;        /* behind main boxes */
  pointer-events: none; /* click through */
}

/* Animations for each sticker */
@keyframes float1 {
  0% { top: 10%; left: 5%; }
  50% { top: 30%; left: 15%; }
  100% { top: 10%; left: 5%; }
}

@keyframes float2 {
  0% { top: 70%; left: 80%; }
  50% { top: 50%; left: 75%; }
  100% { top: 70%; left: 80%; }
}

@keyframes float3 {
  0% { top: 40%; left: 14%; }
  50% { top: 60%; left: 20%; }
  100% { top: 40%; left: 18%; }
}

.float1 { animation: float1 8s infinite ease-in-out; }
.float2 { animation: float2 10s infinite ease-in-out; }
.float3 { animation: float3 12s infinite ease-in-out; }
.bottom-stickers {
  display: flex;            /* places stickers in a row */
  flex-wrap: wrap;          /* wraps to next line if needed */
  justify-content: center;  /* centers stickers in the box */
  gap: 15px;                /* space between stickers */
  margin-top: 20px;         /* space above stickers */
}

.bottom-stickers img {
  width: 100px;             /* size of each sticker */
  height: 100px;            /* keeps them square */
  border-radius: 10px;      /* optional: rounded corners */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* soft shadow */
}
.bottom-stickers img:hover {
  transform: scale(1.1);      /* grows slightly */
  transition: 0.2s;            /* smooth animation */
  cursor: pointer;      

}
.bottom-stickers img, .box img, .section img {
  transition: transform 0.3s;
}

.bottom-stickers img:hover, .box img:hover, .section img:hover {
  transform: scale(1.2) rotate(5deg);  /* grows + slight rotation */
  cursor: pointer;
}

body {
  position: relative; /* Essential for 'absolute' positioning to work relative to the body */
  min-height: 100vh;  /* Ensures the body takes up at least the full viewport height */
}

.bottom-stickers {
  position: absolute; /* Positions the container relative to the 'body' element */
  bottom: 0;          /* Aligns the bottom edge with the bottom of the page content */
  left: 0;
  width: 100%;
  text-align: center;
}
.poll-box label {
  cursor: pointer;
  display: block;
  margin: 4px 0;
}

.poll-box button {
  background: pink;
  border: none;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
}
.links {
  list-style: none;
  padding: 0;
}

.links li {
  margin: 6px 0;
}

.links a {
  text-decoration: none;
  color: #ff6fae;
  font-weight: 500;
}

.links a:hover {
  text-decoration: underline;
}
.thoughts-content {
  max-height: 150px;
  overflow-y: auto;
  font-size: 13px;
}
.checklist-box input {
 accent-color: pink;
  margin-right: 6px;
}
.bottom-stickers {
  position: relative;
  margin-top: 40px;
  text-align: center;
  z-index: 1;
}

.top-container,
.main-content,
.left-sidebar,
.right-sidebar {
  position: relative;
  z-index: 5;
}
body {
  font-family: 'Quicksand', sans-serif;
}
