
   @import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@700&display=swap');
   
body {
  background-image: url("https://strawbrryhachiko.neocities.org/greencute.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

  body {
  cursor: url("squirrel.png"), auto;
}



/* SIDEBAR STYLING */
.sidebar {
  position: fixed;       /* stays on screen */
  top: 0;
  left: 0;
  height: 100vh;         /* full height */
  width: 220px;          /* sidebar width */
  background: linear-gradient(to bottom, #ffeef5, #fff0f6);
  border-right: 2px solid #cecece;
  padding: 20px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.05);
  overflow-y: auto;      /* scroll if content too long */
  font-family: "Myriad Pro", Verdana, Arial, sans-serif;
}

.sidebar h2 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ff9ecb;
  text-align: center;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  margin: 10px 0;
}

.sidebar ul li a {
  text-decoration: none;
  color: #A3A3A3;
  font-size: 14px;
  padding: 5px 10px;
  display: block;
  border-radius: 12px;
  transition: 0.2s;
}

.sidebar ul li a:hover {
  background: #ffd1e8;
  color: #ff69b4;
}

.header glow-text{
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}


.main-content {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}

.bubble-text-strawbrry{
background-image: url("greenpolka.jpg");
  background-size: cover;
  background-position: center;
}

.box {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}

.box{
  background-image: url("greenpolka.jpg");
  background-size: cover;
  background-position: center;

  border: 2px solid =#e56992; /* sage green */
  border-radius:20px;
  padding:15px;
  margin-bottom:15px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}



/* PLAYER CONTAINER */
.player {
  margin-left: 240px; /* same as sidebar width + some spacing */
  width: 300px;      /* instead of fit-content */
  min-height: 120px; /* ensures it’s visible */
  border: 2px solid #CECECE;
  border-radius: 40px;
  margin: 40px auto;
  background: linear-gradient(to bottom, #fff0f6, #ffeef5);
  padding: 10px;
}

/* SLIDER */
.seek_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #e4d5dc;
  opacity: 0.7;
  border-radius: 8px;
}

.seek_slider::-webkit-slider-thumb {
  -moz-appearance: none;
   -webkit-appearance: none;
  width: 8px;
  height: 8px;
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  bottom: 3px;
}

.seek_slider::-moz-range-thumb {
  width: 8px;
  height: 8px;
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 50%;
  cursor: pointer;
}

/* FONT */
@font-face {
  font-family: "Myriad Pro";
  src: url("https://your-neocities-fonts-link.woff2") format("woff2");
}

/* WHEEL & PLAYER PANEL */
#wheel, .wheel {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 40%, #E5E5E5 100%);
  box-shadow: inset 0 3px 10px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px;
  margin: auto;
}

#musicplayer {
  display: block;
  margin-left: 8px;
  background: linear-gradient(to bottom, #ffeef5, #fff);
  border-radius: 30px;
  padding: 10px 15px;
  box-shadow: inset 0 2px 8px rgba(255, 192, 203, 0.3);
}

/* SONG TITLE */
.songtitle {
  font-size: 16px;
  color: #A3A3A3;
  font-family: "Myriad Pro";
  padding: 20px 15px 0 15px;
}

/* PLAY BUTTON */
.playpause-track {
  color: #C1C1C1;
  font-size: 22px;
  margin: auto;
  display: block;
}

/* WHEEL BUTTONS */
.wheelcontrols button {
  background: none;
  border: none;
  font-size: 14px;
  color: #aaa;
  cursor: pointer;
  transition: 0.2s;
}

.wheelcontrols button:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* FLEX & SEEKING */
.flex {
  display: flex;
  align-items: center;
}

.seeking {
  display: flex;
  justify-content: space-evenly;
  gap: 6px;
  font-size: 11px;
  color: #A3A3A3;
}


.sticker {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0.9;
  animation: floaty 6s ease-in-out infinite;
}

/* gentle floating (NOT chaotic) */
@keyframes floaty {
  0%   { transform: translateY(0px) rotate(var(--rot)); }
  50%  { transform: translateY(-8px) rotate(var(--rot)); }
  100% { transform: translateY(0px) rotate(var(--rot)); }
}

/* placements + slight variation in timing */
.s1 {
  top: 50%;
  left: 5%;
  width: 80px;
  --rot: -10deg;
  animation-delay: 0s;
}

.s2 {
  bottom: 15%;
  right: 8%;
  width: 100px;
  --rot: 8deg;
  animation-delay: 1s;
}

.s3 {
  top: 60%;
  left: 15%;
  width: 70px;
  --rot: -5deg;
  animation-delay: 2s;
}

.s4 {
  top: 30%;
  right: 10%;
  width: 110px;
  --rot: 12deg;
  animation-delay: 0.5s;
}

.sticker:hover {
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%   { transform: scale(1) rotate(var(--rot)); }
  50%  { transform: scale(1.15) rotate(var(--rot)); }
  100% { transform: scale(1) rotate(var(--rot)); }
}

body {
  cursor: url('https://strawbrryhachiko.neocities.org/squirrel.png'), auto;
}

a:hover {
  cursor: url('https://strawbrryhachiko.neocities.org/squirrel.png'), pointer;
}




/* ---------- BUBBLE TEXT ---------- */
.bubble-text, .bubble-text-strawbrry {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  text-align: center;
  padding: 5px;
  animation: floaty-text 3s ease-in-out infinite;
}

.bubble-text {
  background: linear-gradient(45deg, #ffb6d9, #b6f2d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    2px 2px 0 #ffffff,
   -2px 2px 0 #ffffff,
    2px -2px 0 #ffffff,
   -2px -2px 0 #ffffff,
    0px 4px 6px rgba(182, 242, 216, 0.4);
}

.bubble-text-strawbrry {
  color: #e66f92;
  text-shadow:
    2px 2px 0 #ffffff,
   -2px 2px 0 #ffffff,
    2px -2px 0 #ffffff,
   -2px -2px 0 #ffffff,
    0px 4px 6px rgba(230, 111, 146, 0.4);
}

@keyframes floaty-text {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* ---------- STICKERS ---------- */
.sticker {
  position: fixed;
  z-index: 3;
  pointer-events: none;
  opacity: 0.9;
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%   { transform: translateY(0px) rotate(var(--rot)); }
  50%  { transform: translateY(-8px) rotate(var(--rot)); }
  100% { transform: translateY(0px) rotate(var(--rot)); }
}

.s1 { top: 50%; left: 5%; width: 80px; --rot: -10deg; animation-delay: 0s; }
.s2 { bottom: 15%; right: 8%; width: 100px; --rot: 8deg; animation-delay: 1s; }
.s3 { top: 60%; left: 15%; width: 70px; --rot: -5deg; animation-delay: 2s; }
.s4 { top: 30%; right: 10%; width: 110px; --rot: 12deg; animation-delay: 0.5s; }

.sticker:hover {
  animation: bounce 0.4s ease;
}

@keyframes bounce {
  0%   { transform: scale(1) rotate(var(--rot)); }
  50%  { transform: scale(1.15) rotate(var(--rot)); }
  100% { transform: scale(1) rotate(var(--rot)); }
}

/* ---------- POLAROID CUTOUTS ---------- */
.polaroid {
  position: absolute;
  z-index: 2;
  width: 120px;
  padding: 6px;
  background: white;
  border: 2px solid #ffd1e8;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
  transform: rotate(-4deg);
  transition: transform 0.3s ease;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.05);
}

/* lowered placement for scrapbook vibe */
.p1 { top: 13%; left: 15%; }
.p2 { bottom: 75%; right: 20%; }
.p3 { top: 10%; right: 10%; }


