/* =========================================================
   PICK ME BOX — 글꼴 (pmb-font.css)
   외부 CDN 대신 사이트 안의 파일을 씁니다.
   행사장 인터넷이 느리거나 CDN이 막혀도 화면이 뜹니다.

   Pretendard — Copyright (c) 2021 Kil Hyung-jin
   SIL Open Font License 1.1 · fonts/PretendardVariable-LICENSE.txt
   ========================================================= */

@font-face{
  font-family: 'Pretendard';
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;          /* 폰트가 늦게 와도 글씨는 먼저 보입니다 */
  src: url('./fonts/PretendardVariable.woff2') format('woff2-variations');
}

/* 폰트를 못 받아도 한글이 깨지지 않게 하는 대체 목록 */
:root{
  --pmb-font: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo',
              'Malgun Gothic', '맑은 고딕', 'Noto Sans KR', system-ui, sans-serif;

  /* ── 디자인 토큰 — 전 화면이 같은 값을 씁니다. 여기만 바꾸면 전체 톤이 바뀝니다 ── */
  --bg:#0B1020;                          /* 무대 배경 */
  --ink:#EAF1FF;                         /* 기본 글자 */
  --accent:#FFCE2E;                      /* 브랜드 골드 (진한) */
  --accent-2:#FFE066;                    /* 브랜드 골드 (밝은) */
  --hot:#FF8A33;                         /* 주황 포인트 */
  --good:#7CF7A8;                        /* 성공·생존 */
  --bad:#FF6B6B;                         /* 실패·탈락 */
  --info:#8FA6FF;                        /* 안내·링크 */
  --card-bg:rgba(255,255,255,.06);       /* 카드 바탕 */
  --card-line:rgba(255,255,255,.10);     /* 카드 테두리 */
  --card-bg-strong:rgba(255,255,255,.12);
  --card-line-strong:rgba(255,255,255,.18);
  --r-sm:12px; --r-md:16px; --r-lg:22px; --r-xl:28px;   /* 둥글기 단계 */
  --shadow-1:0 8px 24px rgba(0,0,0,.35);
  --shadow-2:0 18px 50px rgba(0,0,0,.55);
  --ease-pop:cubic-bezier(.2,1.5,.4,1);  /* 등장 모션 공통 곡선 */
}

/* 드롭다운 목록이 흰 배경에 흰 글씨로 나오는 것 방지 (윈도우 크롬) */
select{ color:#fff; background-color:rgba(255,255,255,.07); }
select option,
select optgroup{ background-color:#141A30 !important; color:#ffffff !important; }
@media (prefers-color-scheme: light){
  select option, select optgroup{ background-color:#141A30 !important; color:#ffffff !important; }
}
