.card-container {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 10px 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.card-container li {
  margin: 5px 0;
  font-weight: 500;
}

.card-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.card {
  width: 200px;
  background: #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: white;
}
.card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.card-title {
  padding: 10px;
  font-weight: bold;
}


a {
  text-decoration: none;
  color: #58a6ff; /* 기본 Obsidian 블루 */
}

a:hover {
  text-decoration: underline;
  color: #8dc1ff;
}

body {
  background-color: #1e1e1e; /* 어두운 배경 예시 */
  color: #ececc7;            /* 기본 글자색도 함께 조정 추천 */
}