/* 💿 Base Setup */
body {
  background: url("https://i.imgur.com/EiAeNJH.png") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  font-family: "Comic Sans MS", cursive, sans-serif;
  text-align: center;
  padding: 20px;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ✨ Overlay Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* 🎀 Main Title */
h1 {
  font-size: 40px;
  color: hotpink;
  text-shadow: 2px 2px magenta;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border: 3px double #ffccff;
  display: inline-block;
  margin: 20px auto;
}

/* ✨ Sparkle Text */
.sparkle {
  font-size: 18px;
  color: #ffccff;
  animation: blink 1s infinite;
  margin-bottom: 10px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* 🎮 Button Links */
.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background-color: #ff99cc;
  color: white;
  text-decoration: none;
  border: 2px dashed white;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 0 6px white;
  transition: transform 0.2s, background 0.2s;
}

.buttons a:hover {
  background-color: #ff66aa;
  transform: scale(1.1);
}

/* 📝 About Me Iframe */
iframe {
  border: 3px dotted hotpink;
  background-color: white;
  width: 90%;
  max-width: 600px;
  height: 300px;
  margin-top: 20px;
}

/* 💖 Blinkies */
.blinkies img {
  height: 35px;
  margin: 0 5px;
}

/* 🖥 Desktop Icons */
.desktop-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 50px auto;
  max-width: 600px;
}

.folder-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 14px;
  width: 80px;
  transition: transform 0.2s ease;
}

.folder-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
  transition: transform 0.2s ease;
}

.folder-icon:hover img {
  transform: scale(1.1);
}

.folder-icon:hover {
  transform: scale(1.05);
  text-shadow: 0 0 3px white;
}

/* 📝 Two Column Layout */
.two-column-layout {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}

.box {
  flex: 1 1 48%;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  box-sizing: border-box;
}

/* 📌 Bulletin Board */
.bulletin-scroll {
  max-height: 180px;
  overflow-y: auto;
  text-align: left;
  padding-right: 10px;
}

/* Chrome, Safari, Edge */
.bulletin-scroll::-webkit-scrollbar {
  width: 8px;
}

.bulletin-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.bulletin-scroll::-webkit-scrollbar-thumb {
  background-color: hotpink;
  border-radius: 8px;
  border: 2px solid transparent;
}

/* Firefox */
.bulletin-scroll {
  scrollbar-width: thin;
  scrollbar-color: hotpink transparent;
  
}

.bulletin-box ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.bulletin-box li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

/* 🖤 Footer */
.footer {
  margin-top: 50px;
  font-size: 12px;
  color: #ffccff;
  text-shadow: 1px 1px black;
}

