body {
  background-color: #0f172a;
  color: #cbd5e1;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
  background-image: url('https://64.media.tumblr.com/6cf0e8ee0a0f61c9dce16be948c7050e/tumblr_inline_p6fftl9fSF1qf1mnc_500.gif');
  background-repeat: repeat;
  background-size: auto;
  cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur829.cur'), auto;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #3b82f6;
  border-radius: 10px;
  box-shadow: 0 0 10px #3b82f6;
}

header h1 {
  font-size: 2rem;
  color: #f472b6;
  text-align: center;
}

.tagline {
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: -0.5rem;
}

nav {
  display: flex;
  justify-content: space-around;
  margin: 1.5rem 0;
}

nav a {
  text-decoration: none;
  color: #3b82f6;
  font-weight: bold;
  background-color: #1e293b;
  padding: 0.5rem 1rem;
  border: 1px solid #3b82f6;
  border-radius: 5px;
  transition: all 0.3s;
}

nav a:hover {
  background-color: #3b82f6;
  color: #0f172a;
  text-shadow: 0 0 5px white;
}

main p {
  line-height: 1.7;
  font-size: 1rem;
}

footer {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 2rem;
}

.now-playing {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #1e293b;
  color: #f472b6;
  font-family: 'Courier New', monospace;
  padding: 0.5rem;
  font-size: 0.9rem;
  border-top: 1px solid #3b82f6;
  z-index: 999;
}

.chatbox {
  background-color: #1e293b;
  border: 1px solid #3b82f6;
  border-radius: 6px;
  box-shadow: 0 0 8px #3b82f6;
  margin-top: 2rem;
  font-family: 'Courier New', monospace;
}

.chat-header {
  background-color: #3b82f6;
  color: #0f172a;
  padding: 0.5rem;
  font-weight: bold;
  font-size: 0.9rem;
}

.chat-messages {
  padding: 1rem;
  height: 150px;
  overflow-y: auto;
  font-size: 0.9rem;
  color: #cbd5e1;
  background-color: #0f172a;
}

.chat-input {
  display: flex;
  border-top: 1px solid #3b82f6;
  background-color: #0f172a;
}

.chat-input input {
  flex: 1;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-family: inherit;
}

.chat-input button {
  padding: 0.5rem;
  background-color: #3b82f6;
  color: #0f172a;
  border: none;
  font-weight: bold;
  cursor: not-allowed;
}

