body {
  font-family: 'Poppins', sans-serif;
  background: #121212;
  color: #eeeeee;
  margin: 0;
  padding: 0;
}

header {
  background-color: #2e2740;
  display: flex;
  align-items: center;
  padding: 15px 20px;
}

header img {
  height: 60px;
  margin-right: 15px;
}

.site-info h1 {
  margin: 0;
  font-size: 26px;
}

.site-info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #bbb;
}

.topnav a {
  color: #d0c0e8;
  margin-left: 20px;
  text-decoration: none;
}

.content {
  padding: 20px;
}

.drama {
  margin-bottom: 30px;
  padding: 20px;
  background: #1e1e2e;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

iframe {
  width: 100%;
  height: 315px;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
}

.episode-links a {
  display: inline-block;
  margin-right: 10px;
  margin-top: 8px;
  color: white;
  background: #2e2740;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.episode-links a:hover {
  background: #8b4bb4;
}

.comments textarea {
  width: 100%;
  height: 80px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  font-size: 14px;
}

.comments button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #a678f4;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.comments-list p {
  background: #2e2740;
  color: #a566c7;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  padding: 12px 18px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(91, 62, 153, 0.6);
  margin-bottom: 12px;
  max-width: 80%;
  word-wrap: break-word;
}

footer {
  background-color: #2e2740;
  padding: 1rem;
  text-align: center;
  color: #aaa;
  font-size: 0.85rem;
}














