/* === index.css (Dark Theme) === */
main h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #f9fafb;
}

main p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #cbd5e1;
}

.vote-button {
  background-color: #10b981;
  color: #f9fafb;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.vote-button:hover {
  background-color: #059669;
}

.featured-box {
  background-color: #0f172a;
  border: 1px solid #334155;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.featured-box h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #f1f5f9;
}

.featured-box ul {
  list-style: none;
  padding-left: 0;
}

.featured-box ul li {
  padding: 8px 0;
  border-bottom: 1px solid #334155;
}

.featured-box ul li:last-child {
  border-bottom: none;
}
