/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

/* --- General --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Verdana", sans-serif;
}

body {
  background: #fdfdfd;
  color: #333;
  line-height: 1.4;
}

/* --- Header --- */
header {
  background: #fff;
  padding: 1rem;
  text-align: center;
  border-bottom: 2px solid #00e5ff;
}

header h1 {
  color: #ff4edb;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 0 4px #00e5ff;
}

/* --- Layout --- */
.container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  padding: 1rem;
}

/* --- Panels --- */
.sidebar, .profile {
  background: #fff;
  border: 2px solid #00e5ff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 0 8px #00e5ff44;
}

.sidebar h2, .profile h2 {
  font-size: 1.2rem;
  color: #ff4edb;
  border-bottom: 1px solid #00e5ff;
  margin-bottom: 0.5rem;
}

/* --- Directory --- */
.directory ul {
  list-style: none;
}

.directory li {
  margin: 0.3rem 0;
}

.directory a {
  text-decoration: none;
  color: #00bcd4;
}

.directory a:hover {
  color: #ff4edb;
}

/* --- Profile --- */
.profile h3 {
  color: #00bcd4;
  margin-bottom: 0.5rem;
}

.profile .highlight {
  color: #ff4edb;
}

.miku-img {
  display: block;
  margin: 1rem auto;
  max-width: 200px;
}

/* --- Chatbox --- */
.chatbox {
  display: flex;
  flex-direction: column;
}

.chatbox .messages {
  background: #f3faff;
  border: 1px solid #00e5ff;
  padding: 0.5rem;
  height: 120px;
  overflow-y: auto;
  margin-bottom: 0.5rem;
}

.chatbox input {
  border: 1px solid #00e5ff;
  padding: 0.5rem;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: #666;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
}