/* GLOBAL */
body {
  background: #050505;
  color: #ffffff;
  font-family: 'Press Start 2P', cursive;
  margin: 0;
  padding: 0;
  font-size: 12px; /* Press Start 2P is tiny, this fixes it */
  line-height: 1.6;
}

/* HEADER */
#site-header {
  text-align: center;
  padding: 20px 0 10px 0;
  background: linear-gradient(#1a001a, #050505);
  border-bottom: 3px solid #ff7ae6;
  box-shadow: 0 0 20px #ff7ae6;
}

#site-header .logo {
  font-size: 32px;
  color: #ff7ae6;
  text-shadow: 0 0 12px #ff7ae6, 0 0 25px #b84dff;
  margin: 0;
}

#site-header .tagline {
  margin: 5px 0 0 0;
  color: #ffbdf5;
  font-size: 12px;
}

/* NAVBAR */
#navbar {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 12px 0;
  background: #0a0a0a;
  border-bottom: 3px solid #ff7ae6;
  box-shadow: 0 0 15px #ff7ae6;
}

#navbar a {
  color: #ffbdf5;
  text-decoration: none;
  font-size: 12px;
  transition: 0.15s;
}

#navbar a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #ff7ae6;
}

#navbar a.active {
  color: #ff7ae6;
  text-shadow: 0 0 12px #ff7ae6;
}

/* CHAT LAYOUT */
#layout {
  display: flex;
  width: 100%;
  max-width: 1400px; /* gives you a bigger chat area */
  margin: 20px auto;
  min-height: 700px;
}

/* SIDEBAR */
#sidebar {
  width: 240px;
  background: #0a0a0a;
  border-right: 3px solid #ff7ae6;
  box-shadow: 0 0 15px #ff7ae6;
  padding: 15px;
}

#sidebar h2 {
  margin-top: 0;
  color: #ff7ae6;
  text-shadow: 0 0 8px #ff7ae6;
  font-size: 14px;
}

#room-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#room-list li {
  padding: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  border: 1px solid #444;
  transition: 0.15s;
  font-size: 12px;
}

#room-list li:hover {
  background: #1a1a1a;
  border-color: #ff7ae6;
}

#room-list li.active {
  background: #ff7ae6;
  color: #050505;
  border-color: #ff7ae6;
}

/* CHAT PANEL */
#chat-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
}

/* TITLE BAR */
#title-bar {
  padding: 12px 20px;
  background: #0f0f0f;
  border-bottom: 3px solid #ff7ae6;
  box-shadow: 0 0 15px #ff7ae6;
}

#title-bar h1 {
  margin: 0;
  font-size: 18px;
  color: #ff7ae6;
  text-shadow: 0 0 10px #ff7ae6, 0 0 20px #b84dff;
}

/* MESSAGES */
#messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  border-bottom: 3px solid #ff7ae6;
  font-size: 12px;
}

.message {
  margin-bottom: 12px;
}

/* INPUT BAR */
#input-bar {
  display: flex;
  padding: 10px;
  gap: 10px;
}

#input-bar input {
  flex: 1;
  padding: 10px;
  background: #111;
  border: 2px solid #ff7ae6;
  color: white;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
}

#send-btn {
  padding: 10px 16px;
  background: #ff7ae6;
  border: none;
  color: #050505;
  font-weight: bold;
  cursor: pointer;
  transition: 0.15s;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
}

#send-btn:hover {
  background: #ff9af0;
}
