/* 기본 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── 오행 색상 변수 (전체 공통) ── */
:root {
  --wood:     #2d6a4f;
  --fire:     #c0392b;
  --earth:    #8a6020;
  --metal:    #555555;
  --water:    #1a3d7a;
  --wood-bg:  #f0f7f3;
  --fire-bg:  #fff5f4;
  --earth-bg: #fdf8f0;
  --metal-bg: #f5f5f5;
  --water-bg: #f0f4fa;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #ffffff; /* 순백색 */
    color: #222222; /* 진회색 */
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; /* 대문은 스크롤 방지 */
}

a {
    text-decoration: none;
    color: inherit;
}

/* 모바일 탭 하이라이트 제거 (깔끔한 터치감) */
button, a {
    -webkit-tap-highlight-color: transparent;
}