@import url('https://fonts.googleapis.com/css2?family=Fredoka&family=Luckiest+Guy&display=swap');

/* 🍬 Base Styles */
body {
  margin: 0;
  background: url('https://zavieracomplains.neocities.org/strawberryshelf/mylittlesodapop.png') repeat;
  background-size: 25%;
  font-family: 'Fredoka', sans-serif;
  color: #4b2e10;
  cursor: crosshair;
  overflow-x: visible;
}

/* 🍭 Scrollbar Styling */
.geo-content::-webkit-scrollbar {
  width: 12px;
}
.geo-content::-webkit-scrollbar-track {
  background: #fff7d1;
  border-left: 2px dashed #ffae43;
}
.geo-content::-webkit-scrollbar-thumb {
  background-color: #ff5678;
  border: 2px solid #ffae43;
  border-radius: 8px;
}
.geo-content::-webkit-scrollbar-thumb:hover {
  background-color: #d4426b;
}

/* 🍓 Layout Container */
.geocities-container {
  width: 960px;
  margin: auto;
  position: relative;
  border: 8px double hotpink;
  background-color: #fffbe9;
  box-shadow: 0 0 12px #ffae43;
  overflow: visible;
}

/* 🐸 Corner Images */
.corner-image {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}
.top-corner {
  top: -10px;
  left: -30px;
}
.bottom-corner {
  bottom: -20px;
  right: -30px;
}
.corner-image img {
  height: auto;
  max-width: none;
  border-radius: 12px;
  opacity: 0.90;
}

/* 🍒 Header */
.geo-header {
  background-color: #ff89a9;
  color: #fff;
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.5rem;
  padding: 0.5rem;
  border-bottom: 4px dashed #ffae43;
  text-align: center;
}

/* 📁 Main Frame */
.geo-main {
  display: flex;
  height: 550px;
  overflow: hidden;
}

/* ⬅️ Left Sidebar */
.geo-sidebar-left {
  flex-shrink: 0;
  width: 160px;
  max-width: 160px;
  height: 100%;
  box-sizing: border-box;
  background-color: #ffe9f0;
  border-right: 2px dashed #ffae43;
  padding: 1rem;
  position: relative;
}
.geo-sidebar-left img {
  max-width: 100%;
  height: auto;
  display: block;
}
.babyz-left {
  position: absolute;
  bottom: 16px;
  left: 16px;
  max-width: 120px;
  height: auto;
  opacity: 0.95;
}
.geo-sidebar-left ul {
  list-style: none;
  padding: 0;
}
.geo-sidebar-left li {
  margin-bottom: 1rem;
}
.geo-sidebar-left a {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1rem;
  color: #ff5678;
  text-decoration: none;
  background-color: #fff7d1;
  padding: 6px;
  border: 2px solid #ffae43;
  border-radius: 6px;
  display: block;
}

/* 🧃 Main Content */
.geo-content {
  flex-grow: 1;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2rem;
  background-color: #fffce5;
  background-image: url('https://zavieracomplains.neocities.org/strawberryshelf/graphics/newbackground.png');
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
}
.geo-content h1 {
  font-family: 'Luckiest Guy', cursive;
  color: #ff5678;
  text-shadow: 2px 2px #ffe9c5;
}
.geo-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 🍊 Cards */
.card {
  background-color: #fff7d1;
  border: 3px dashed #ffae43;
  box-shadow: 4px 4px 0 #ffc966;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* 🧃 Babyz Stamp */
.babyz-stamp {
  margin-bottom: 1rem;
  max-width: 100%;
  text-align: center; /* Ensures inline elements like img are centered */
}
.babyz-stamp img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}


/* Prevent clipping of last image */
.geo-content::after {
  content: "";
  display: block;
  height: 32px;
  flex-shrink: 0;
}

/* ➡️ Right Sidebar */
.geo-sidebar-right {
  flex-shrink: 0;
  width: 160px;
  max-width: 160px;
  height: 100%;
  box-sizing: border-box;
  background-color: #e0fff8;
  border-left: 2px dashed #ffae43;
  padding: 1rem;
  font-size: 0.8rem;
  text-align: center;
  position: relative;
}
.geo-sidebar-right img {
  max-width: 100%;
  height: auto;
  display: block;
}
.pixel-sticker {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.under-construction {
  font-size: 0.8rem;
  color: #d4426b;
  margin-top: 1rem;
}
.babyz-bottom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  max-width: 120px;
  height: auto;
  border-radius: 12px;
  opacity: 0.95;
}

/* 📟 Footer */
.geo-footer {
  background-color: #fff2cc;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.7rem;
  border-top: 4px dashed #ffae43;
  text-transform: uppercase;
  font-family: 'VT323', monospace;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .geo-main {
    flex-direction: column;
    height: auto;
  }
  .geo-sidebar-left,
  .geo-sidebar-right {
    width: 100%;
    height: auto;
    border: none;
    text-align: center;
  }
}
