* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

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

img,
video,
input {
  vertical-align: middle;
}

img {
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

/* 기본 비디오 컨트롤 숨기기 */
video::-webkit-media-controls {
  display: none !important;
}

button {
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-text-fill-color: currentColor !important;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-nav {
  position: absolute;
  top: -50px;
  /* 화면 위로 숨기기 */
  left: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: #000;
  /* 대비 높은 색 */
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-nav:focus,
.skip-nav:active {
  top: 0;
  /* 포커스되면 화면에 등장 */
}