/* ───────────── 공통 스타일 ───────────── */
* { box-sizing: border-box; margin:0; padding:0; }

body {
  font-family: 'Malgun Gothic','Apple SD Gothic Neo',sans-serif;
  background: #000;
  color: #e8ebf2;
}

a { text-decoration: none; color: inherit; }

.page-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #0b0e13;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  background: #111;
  color: #ffd700;
  padding: 10px 15px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-nav {
  background: #c69314;
  color: #000;
  display: flex;
  justify-content: space-around;
  font-weight: 600;
}
.header-nav a {
  padding: 14px 18px;
  transition: background .2s;
}
.header-nav a:hover,
.header-nav .current {
  background: #805a00;
  color: #fff;
}

main, .container {
  flex: 1;
  padding: 20px;
  text-align: center;
}

h1 {
    margin-bottom: 25px;
}
h2 {
    margin-top: 35px;
    margin-bottom: 15px;
    color: #ffd700; /* 하이라이트 색상 적용 */
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.highlight-box {
  background: #d4a017;
  color: #1a237e;
  border: 3px solid #1a237e;
  padding: 15px;
  margin: 20px 0;
  border-radius: 8px;
  text-align: center;
}

/* ───────────── 새로 추가된 스타일 ───────────── */

/* 해시태그 및 커뮤니티 배지 스타일 */
.hashtags, .community-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px; /* 요소 간 간격 */
    margin: 20px 0;
}
.hashtags span, .badge {
    background: #222;
    color: #c69314;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #c69314;
}

/* 검증 시스템 4단계 레이아웃 */
.verification-system-container {
    display: flex;
    flex-wrap: wrap; /* 모바일에서 줄바꿈 */
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}
.verification-step {
    flex: 1 1 45%; /* 데스크탑에서 2열, 모바일에서 1열 */
    background: #111;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #222;
}
.verification-step h3 {
    color: #ffcc00;
    margin-bottom: 10px;
}

/* 공지 및 정보 목록 스타일 */
.notice-list, .info-list {
    list-style: none;
    text-align: left;
    padding: 0;
    margin-top: 10px;
}
.notice-list li, .info-list li {
    background: #111;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.badge-count {
    background: #805a00;
    color: #fff;
    padding: 2px 7px;
    border-radius: 12px;
    font-size: 12px;
}

/* 기타 요소 */
.login-form-placeholder p {
    background: #222;
    padding: 15px;
    margin-bottom: 5px;
    border-radius: 5px;
    color: #999;
}


/* ───────────── 푸터 스타일 ───────────── */
footer {
  background: #1c1c1c;
  color: #aaa;
  text-align: center;
  font-size: 13px;
  padding: 20px;
  line-height: 1.5;
}
footer a { color: #ffd700; font-weight: bold; }