/* 전역 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 전체 래퍼 */
.wrap {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    /* 온보딩 페이지 배경 이미지 */
    background-image: url('https://not-me-be.s3.ap-northeast-2.amazonaws.com/public/image/curation/profileImage-1764742698193-797787277.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}


/* 헤더 */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(124, 92, 255, 0.05);
}

/* 온보딩 컨테이너 */
.onboarding_container {
    width: 100%;
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 1;
    padding-top: 300px;
}

/* 푸터는 footer_inner.css에서 관리 */

