/* 전역 h1 스타일 고정 */
h1 {
    font-size: 3rem !important;
    line-height: 1.2 !important;
}

/* 다크 모드 기본 스타일 */
body {
    font-family: "Noto Sans KR", "Be Vietnam Pro", sans-serif;
    background-color: #101923;
    color: #ffffff;
}

/* 반응형 레이아웃 유틸리티 */
.content-section {
    padding-top: 5vh;
    position: relative;
    z-index: 1;
    background-color: #101923;
}

/* 헤더 스타일 */
header {
    background-color: rgba(16, 25, 35, 0.8);
    backdrop-filter: blur(10px);
} 