/* Body + general */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #fce4ec, #fff1f5);
  margin: 0;
  padding: 0;
  position: relative;
}

/* Banner */
.banner img {
  width: 100%;
  max-width: 1000px;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Navigation */
.topnav {
  text-align: center;
  margin: 10px 0;
}
.topnav a {
  color: #d81b60;
  text-decoration: none;
  margin: 0 8px;
}
.topnav a:hover {
  color: #ff4081;
  transform: scale(1.1);
  transition: 0.2s;
  cursor: pointer;
}

.top-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}


/* LEFT + RIGHT SIDEBARS */
.left-sidebar,
.right-sidebar {
  flex: 0 0 220px;   /* FIXED WIDTH */
  display: flex;
  flex-direction: column;
  gap: 15px;/* Links box */
}
.links-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.links-box li {
  margin: 5px 0;
}
.links-box a {
  color: #d81b60;
  text-decoration: none;
  transition: 0.2s;
}
.links-box a:hover {
  color: #ff4081;
  transform: scale(1.05);
}

/* MAIN CONTENT */
.main-content {
  flex: 0 0 450px;   /* MAIN BOX SIZE */
  display: flex;
  flex-direction: column;
  gap: 15px;
}


/* Extra boxes below main */
.extra-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Boxes */
.box, .mini-box {
  background-color: rgba(255,255,255,0.95);
  border: 3px dotted #ff99cc;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Stickers inside boxes */
.stickers img, .box img, .mini-box img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  margin: 5px;
  transition: transform 0.3s;
}
.stickers img:hover, .box img:hover, .mini-box img:hover {
  transform: scale(1.2) rotate(5deg);
  cursor: pointer;
}

/* Scrollable Thought Box */
.scroll-box {
  max-height: 250px;
  overflow-y: auto;
}

/* Chat entries */
.chat-entry {
  margin-bottom: 10px;
  border-bottom: 1px dotted #ff99cc;
  padding-bottom: 5px;
}
.chat-entry .date {
  font-size: 12px;
  color: #d81b60;
  display: block;
  margin-bottom: 3px;
}

/* Floating stickers */
.float-sticker {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 0;
  pointer-events: none;
}
.float1 { top: 10%; left: 5%; animation: float1 8s infinite ease-in-out; }
.float2 { top: 70%; left: 80%; animation: float2 10s infinite ease-in-out; }
.float3 { top: 40%; left: 50%; animation: float3 12s infinite ease-in-out; }

/* Floating animations */
@keyframes float1 {
  0% { top: 10%; left: 5%; }
  50% { top: 30%; left: 15%; }
  100% { top: 10%; left: 5%; }
}
@keyframes float3 {
  0% { top: 40%; left: 50%; }
  50% { top: 60%; left: 55%; }
  100% { top: 40%; left: 50%; }
}

.scroll-box {
  max-height: 250px;
  overflow-y: auto;
  background: #FFFFFF;
  padding: 8px;
  border-radius: 10px;
  border: 2px dashed #FFBFDE;
  scrollbar-width: thin;
  scrollbar-color: #ff99cc #ffe4f0;
}

/* Optional: customize scrollbar for Chrome */
.scroll-box::-webkit-scrollbar {
  width: 8px;
}
.scroll-box::-webkit-scrollbar-track {
  background: #ffe4f0;
  border-radius: 10px;
}
.scroll-box::-webkit-scrollbar-thumb {
  background-color: #ff99cc;
  border-radius: 10px;
  border: 2px solid #ffe4f0;
}
/* Main GIF in main box */
.main-gif {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto 10px auto;
}

/* Comment box inside main box */
.comment-box {
  margin-top: 15px;
  border-top: 2px dotted #ff99cc;
  padding-top: 10px;
}
.comment-box input {
  width: 70%;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ff99cc;
}
.comment-box button {
  padding: 5px 10px;
  margin-left: 5px;
  background-color: #ff99cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.comment-box button:hover {
  background-color: #d81b60;
}

/* Comments list */
.comments-list {
  margin-top: 10px;
  max-height: 150px;
  overflow-y: auto;
}
.comment-entry {
  margin-bottom: 5px;
  border-bottom: 1px dotted #ff99cc;
  padding-bottom: 3px;
}
.comment-entry .date {
  font-size: 12px;
  color: #d81b60;
}

/* Floating stickers */
.float-sticker {
  position: absolute;
  width: 60px;
  height: 60px;
  pointer-events: none;
}
.float1 { top: 10%; left: 5%; }
.float2 { top: 60%; left: 80%; }
.float3 { top: 40%; left: 50%; }
.art-section .art-image {
  width: 100%;       /* makes it fit the box */
  max-width: 300px;  /* max size so it doesn’t get too big */
  height: auto;      /* keeps aspect ratio */
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  border: 2px solid #ff99cc;
}

.comment-box {
  max-width: 400px;
  margin: 10px auto;  /* centers it under the main box */
  padding: 10px;
  border: 3px dotted #ff99cc;
  border-radius: 12px;
  background-color: rgba(255,255,255,0.95);
}

/* Input and button */
.comment-box input {
  width: 70%;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ff99cc;
}
.comment-box button {
  padding: 5px 10px;
  margin-left: 5px;
  background-color: #ff99cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.comment-box button:hover {
  background-color: #d81b60;
}

/* Scrollable comments */
.comments-list {
  margin-top: 10px;
  max-height: 150px;
  overflow-y: auto;
}
.comment-entry {
  margin-bottom: 5px;
  border-bottom: 1px dotted #ff99cc;
  padding-bottom: 3px;
}
.comment-entry .date {
  font-size: 12px;
  color: #d81b60;
}
.bottom-stickers {
  text-align: center;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.rotating-sticker {
  width: 60px;
  height: 60px;
  transition: transform 0.5s;
  cursor: pointer;
}

.rotating-sticker:hover {
  transform: rotate(360deg);
}
.art-section {
  max-width: 400px;      /* same width as main box */
  margin: 10px auto;     /* center it under main content */
  padding: 10px;
  border: 3px dotted #ff99cc;
  border-radius: 12px;
  background-color: rgba(255,255,255,0.95);
}

.art-section img.art-image {
  width: 100%;       /* fit the box */
  height: auto;      /* keep aspect ratio */
  display: block;
  border-radius: 10px;
  border: 2px solid #ff99cc;
}
.games-box {
  margin-top: 15px;
  padding: 10px;
  background-color: rgba(255,255,255,0.95);
  border: 3px dotted #ff99cc;
  border-radius: 12px;
  text-align: center;
}

.games-box .game-image {
  width: 100%;
  max-width: 180px;  /* adjust to your liking */
  height: auto;
  margin: 5px;
  border-radius: 8px;
  border: 2px solid #ff99cc;
}
.box,
.mini-box {
  max-width: 100%;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
/* HARD LOCK SIDEBAR + MAIN WIDTHS */
.left-sidebar {
  width: 220px;
  flex: none;
}

.right-sidebar {
  width: 220px;
  flex: none;
}

.main-content {
  width: 450px;
  flex: none;
}
.left-sidebar,
.right-sidebar {
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-content {
  width: 450px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
