/* Basic Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
   background-image: url("https://sadhost.neocities.org/images/tiles/raindrops.webp");
  color: #000;
}

/* Top Banner */
#top-banner {
  width: 100%;
  height: 100px;
  background: #000; /* classic black */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 20px;
}

/* Profile Name (Adult Swim style) */
#profile-name {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  text-transform: lowercase;
  letter-spacing: 1px;
  margin: 0;
}


/* Main Layout */
#main-container {
  display: flex;
  max-width: 960px;
  margin: 20px auto;
}

/* Left Sidebar */
#left-sidebar {
  width: 260px;
  margin-right: 20px;
}

/* Profile Picture + Status */
#profile-pic-wrap {
  text-align: center;
  margin-bottom: 20px;
}

#profile-pic {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 1px solid #ccc;
}

#online-status {
  margin-top: 5px;
  font-size: 15px;
}

/* Right Content Column */
#right-content {
  flex: 1;
}

/* Boxes */
.box {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  background: #f9f9f9;

  box-shadow:
    0 0 15px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(0, 0, 0, 0.4);
}

.box-title {
  font-weight: bold;
  padding: 6px 10px;
  border-bottom: 1px solid #ccc;
}

.box-content {
  padding: 10px;
}

/* Top 8 Friends */
.top8 {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.top8 img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid #ccc;
}

/* Comments */
.comment {
  margin-bottom: 10px;
}

.timestamp {
  font-size: 10px;
  color: #666;
}

/* Footer */
.footer {
  max-width: 960px;
  margin: 20px auto;
  text-align: center;
  padding: 10px;
  border-top: 1px solid #ccc;
}

.marquee-placeholder {
  font-size: 14px;
  color: #333;
}






/* status cafe */

.box-content iframe {
    width: 100%;   /* fills the box content width */
    height: 50px; /* adjust height as needed */
    max-width: 250px; /* optional max-width */
}

/* online */
#online-status {
  margin-top: 8px;
  font-size: 12px;
  font-family: "Times New Roman", serif;
  letter-spacing: 1px;
  color: #6d0fba; /* moody purple */
  text-transform: lowercase;
  animation: textPulse 2.5s infinite ease-in-out;
  opacity: 0.9;
}

@keyframes textPulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 6px rgba(109, 15, 186, 0.7);
  }
  100% {
    opacity: 0.5;
  }
}

/* imood */

.imood-wrap {
  margin-top: 6px;
  padding: 0;              /* remove inner space */
  background: transparent; /* remove black box */
  border: none;            /* no border */
  box-shadow: none;        /* no shadow */
  display: inline-block;
}

.imood-wrap img {
  filter: grayscale(100%) contrast(120%);
  opacity: 0.85;
}


