/* General Styles */
body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background-color: #4a0000;
  color: #fff;
  background-image: radial-gradient(circle at center, #7a0000 0%, #110000 100%);
  animation: stars 5s linear infinite;
}

@keyframes stars {
  from { background-position: 0 0; }
  to { background-position: 0 60px; }
}

/* Header */
.boat-header {
  text-align: center;
  padding: 20px;
  animation: boat 3s ease-in-out infinite;
}
@keyframes boat {
  0% { transform: translateX(0); }
  50% { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

/* Welcome Section */
.welcome-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
  flex-wrap: wrap;
}
.left-content {
  width: 40%;
}
.right-content img {
  width: 150px;
  margin: 10px;
}

/* Chat Box */
.chat-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ff0000;
  margin: 20px auto;
  max-width: 600px;
}
#chat-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
.chat-text {
  font-size: 16px;
}

/* Music Player */
.music-player {
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
}
.song-title {
  margin-bottom: 10px;
  font-weight: bold;
}
.controls button {
  margin: 5px;
  background-color: #000;
  color: #fff;
  border: 1px solid #ff0000;
  cursor: pointer;
}
iframe {
  width: 100%;
  height: 150px;
  border: none;
  box-shadow: 0 0 10px #ff0000;
}

/* Love List */
.love-list {
  padding: 20px;
  text-align: center;
}
.icon-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.icon {
  position: relative;
  text-align: center;
}
.tooltip {
  visibility: hidden;
  width: 200px;
  background: black;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
}
.icon:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* Social Section */
.social-section {
  text-align: center;
  padding: 40px 20px;
}
.free-hugs-img {
  width: 200px;
  margin-bottom: 20px;
}
.social-section ul {
  list-style: none;
  padding: 0;
}
.social-section li {
  margin: 10px 0;
}
.social-section a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
}
.boreworm-gif {
  width: 100%;
  max-width: 300px;
}