/* 전체 배경 & 컨테이너 */
body {
  background: #121212;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 20px;
}
.container {
  max-width: 950px;
  margin: 0 auto;
}

/* 헤더 스타일 */
.cgv-header {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, #d81f26, #000);
  text-align: center;
  padding: 12px 20px;
  font-size: 2.5rem;
  border-radius: 8px;
  text-shadow: 0 2px 8px rgba(216, 31, 38, 0.8);
  box-shadow: 0 0 16px rgba(216, 31, 38, 0.6);
  border: 2px solid #d81f26;
}

/* 배지 바 */
/* .badge-bar {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 8px;
  background: linear-gradient(90deg, #d81f26, #000);
  border: 2px solid #d81f26;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(216, 31, 38, 0.6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}
.badge-bar img {
  margin: 6px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
} */

/* 인용구 스타일 */
.cgv-quote {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 20px;
  background: #1f1f1f;
  color: #eee;
  border-left: 6px solid #d81f26;
  padding: 16px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  font-style: normal;
  line-height: 1.4;
}

/* 테이블 스타일 */
.cgv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}
.cgv-table th,
.cgv-table td {
  padding: 12px;
  border: 1px solid #444;
}
.cgv-table thead tr {
  background: linear-gradient(90deg, #d81f26, #000);
}
.cgv-table tbody tr:nth-child(odd) {
  background: #1f1f1f;
}
.cgv-table tbody tr:nth-child(even) {
  background: #2a2a2a;
}
.cgv-table a {
  color: #ffd700;
  text-decoration: none;
}

/* 스터디원 섹션 */
.study-members {
  text-align: center;
}
.study-members table {
  border-collapse: collapse;
  margin-top: 20px;
}
.study-members th,
.study-members td {
  padding: 10px 20px;
  border: 1px solid #444;
}
.study-members th {
  background: #2a2a2a;
}
.study-members a {
  color: #ffd700;
  text-decoration: none;
}
