/* --- will's space: blocky 2000s MySpace vibes --- */

/* --- Fonts --- */
@import url('https://fonts.cdnfonts.com/css/dream-orphanage-rg');

body {
  margin: 0;
  padding: 0;
  font-family: 'Dream Orphanage RG', sans-serif;
  background: url('images/background.gif') repeat;
  color: #e0f8ff;
  cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur263.ani'), auto;
}

/* --- Wrapper --- */
#wrapper {
  width: 900px;
  margin: 20px auto;
  background: #001a33; /* solid teal block */
  border: 4px solid #00ffff;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

/* --- Header --- */
#header {
  text-align: center;
  background: #004c66;
  border-bottom: 4px solid #00cccc;
  padding: 10px 0;
}

#header h1 {
  color: #aeefff;
  text-shadow: none;
  margin: 0;
  font-size: 2.5em;
}

#header p {
  margin: 0;
  font-size: 1em;
}

marquee {
  color: #99eeff;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 5px;
}

/* --- Navbar --- */
#navbar {
  text-align: center;
  background: #003344;
  border-top: 4px solid #00cccc;
  border-bottom: 4px solid #00cccc;
  padding: 6px 0;
}

#navbar a {
  color: #aeefff;
  text-decoration: none;
  padding: 8px 12px;
  font-weight: bold;
}

#navbar a:hover {
  background: #007788;
  color: #fff;
  border-radius: 0;
}

/* --- Content Boxes --- */
.content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.box {
  background: #002233;
  border: 3px solid #00cccc;
  padding: 12px;
  margin: 10px;
  border-radius: 0;
  box-shadow: none;
}

.box h2 {
  color: #aeefff;
  text-shadow: none;
  margin-top: 0;
  border-bottom: 2px solid #00bbbb;
  padding-bottom: 4px;
}

/* --- Lists --- */
ul, ol {
  padding-left: 20px;
}

/* --- Images --- */
.avatar, .photo, .friend img {
  border-radius: 0;
  border: 3px solid #00cccc;
}

.photo:hover, .friend img:hover {
  transform: scale(1.05);
  box-shadow: none;
}

/* --- Friends --- */
.friend {
  display: inline-block;
  text-align: center;
  margin: 6px;
}

.friend p {
  margin: 4px 0 0 0;
  font-size: 0.9em;
}

/* --- Iframes (guestbook, music) --- */
iframe {
  border-radius: 0;
  border: 3px inset #00cccc;
}

/* --- Footer --- */
#footer {
  text-align: center;
  font-size: 0.85em;
  background: #001a33;
  border-top: 4px solid #00cccc;
  padding: 10px;
  margin-top: 15px;
  color: #aeefff;
}

#footer a {
  color: #66ddff;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}

/* --- Animated Bubbles --- */
.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: url('images/bubble.gif') no-repeat center;
  background-size: contain;
  width: 40px;
  height: 40px;
  animation: rise 20s infinite linear;
  opacity: 0.7;
}

@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  100% { transform: translateY(-120vh) scale(1); opacity: 0; }
}

/* --- Hover sparkle effect removed for blockiness --- */
.box:hover {
  border-color: #00ffff;
}

/* --- Marquee & blink --- */
blink {
  color: #00ffff;
}
