*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:    #ffe066;
  --accent2:   #7ecfff;
  --text-main: #f0f6ff;
  --text-sub:  rgba(220,235,255,0.75);
  --header-h:  58px;
  --main-w:    820px;
}

html, body {
  min-height: 100vh;
  font-family: 'Jua', 'Do Hyeon', sans-serif;
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  background: url('../img/back.png') center center / cover fixed;
  position: relative;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background: linear-gradient(180deg,rgba(10,30,80,.38)0%,rgba(0,60,140,.18)60%,rgba(0,20,60,.42)100%);
  z-index: 0; pointer-events: none;
}

.glass {
  /*background: rgba(255,255,255,0.12);*/
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 16px;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow: 0 8px 32px rgba(0,80,180,0.18);
}

/* ── 전역 링크 색상 리셋 — 브라우저 기본 보라색 제거 ── */
.sec-more {
  color: inherit;
  text-decoration: none;
}


/* ── breadcrumb 버튼 확실히 흰색으로 ── */
.det-back-btn,
.det-back-btn:visited,
.det-back-btn:hover,
.det-back-btn:active {
  color: #f0f6ff !important;
  text-decoration: none !important;
}

/* ── breadcrumb 구분자 / 구역명 ── */
.det-bread-sep {
  color: rgba(220,235,255,0.35);
}
.det-bread-zone {
  font-family: 'Do Hyeon', sans-serif;
  font-size: 0.82rem;
  color: rgba(220,235,255,0.7);
}


