/* GENERAL PAGE STYLING */
body { 
  background: url('https://image2url.com/r2/default/images/1771959920283-9013493c-f68d-4a16-b45a-7e074c563ebc.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;

  font-family: "Comic Sans MS", cursive; 
  color: #ff66a3; 
  text-align: center;
  padding: 20px;

  cursor: url("https://image2url.com/r2/default/images/1772051888146-94e814fc-7269-4d68-ad5f-f9b918b8a66c.png") 0 0, auto;
  
   height: 100%;
}


/* PASTEL GLOW OVERLAY */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, #ffe6fa80, #c3f4ff80, #fff7b580);
  pointer-events: none;
  z-index: -1;
}

/* MAIN CONTAINER */
.container {
  background: #ffffffcc;
  border: 6px solid #ffb6e6;
  padding: 20px;
  width: 80%;
  margin: auto; 
  border-radius: 20px; 
  box-shadow: 0 0 15px #ffd6f7, 0 0 25px #b3f0ff;
}

/* BANNER */
.banner {
  background: linear-gradient(135deg, #a8f0ff, #ffe6fa);
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px #a8f0ff;
}

.banner-inner {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

/* TWO-COLUMN LAYOUT */
.columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}

.left-column {
  width: 30%;
  padding: 15px;
}

.left-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.left-column li {
  margin: 10px 0;
}

.right-column {
  width: 65%;
}

/* OLD SCROLLBOX (still usable elsewhere) */
.scrollbox {
  width: 100%;
  height: 250px;
  padding: 15px;
  background: #fff0fa;
  border: 4px dashed #ffb3d9;
  border-radius: 15px;
  overflow-y: scroll;
  color: #ff6fb7;
  box-shadow: 0 0 10px #ffd6f0;
}

/* CUTE SCROLLBAR */
.scrollbox::-webkit-scrollbar {
  width: 10px;
}
.scrollbox::-webkit-scrollbar-track {
  background: #ffe6f7;
  border-radius: 10px;
}
.scrollbox::-webkit-scrollbar-thumb {
  background: #ffb3e6;
  border-radius: 10px;
}

/* LINKS */
a { 
  color: #ff66c4; 
  text-decoration: none;
  font-weight: bold; 
}
a:hover { 
  color: #ff99e6;
  text-shadow: 0 0 8px #ffb6ff;
}

/* CUTE IMAGE */
.cute-img { 
  width: 150px; 
  margin: 15px; 
  border-radius: 10px; 
}

/* FLOATING ABOUT BOX */
.about-box {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 230px;
  background: linear-gradient(135deg, #ffe6fa, #c3f4ff);
  border: 3px solid #ffb6d9;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 0 12px #ffb6d9;
  z-index: 999;
}

.about-box h2 {
  margin: 0 0 6px 0;
  font-size: 18px;
  text-align: center;
}

.about-scroll {
  max-height: 150px;
  overflow-y: auto;
  padding-right: 5px;
}

/* PAINT BOX */
.paint-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #bbf1ff, #fff7b5);
  border: 3px solid #a3e4ff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 12px #a3e4ff;
  text-align: center;
  z-index: 999;
}

/* SPARKLES */
.sparkle {
  position: fixed;
  width: 20px;
  height: 20px;
  background-image: url('https://image2url.com/r2/default/images/1772058254030-12be6779-c8cb-4a9b-8116-76adf3be88fd.gif');
  background-size: contain;
  animation: floaty 6s infinite ease-in-out;
  pointer-events: none;
  z-index: 9999;
}

@keyframes floaty {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  50% { transform: translateY(-20px) rotate(20deg); opacity: 0.7; }
  100% { transform: translateY(0) rotate(0deg); opacity: 1; }
}

/* RAINBOW DIVIDER */
.rainbow-divider {
  height: 6px;
  background: linear-gradient(to right, #ffb6e6, #c3f4ff, #fff7b5, #ffb6e6);
  border-radius: 3px;
  margin: 20px 0;
}

/* SOFT TEXT GLOW */
* {
  text-shadow: 0 0 3px #ffffff;
}

/* EXTRA GLOW FOR MAIN ELEMENTS */
.container, .banner, .about-box, .paint-box {
  box-shadow: 0 0 10px #ffd6f7, 0 0 20px #c3f4ff;
}

/* CLEAN BADGE REMOVAL */
a[href*="neocities.org"],
iframe[src*="neocities.org"],
footer,
#footer,
.neocities {
  display: none !important;


}
