/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
                 system-ui, Roboto, 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #000000;
    color: #171719;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* PC/모바일 전용 표시 클래스 */
.pc-only {
    display: inline;
}

img.pc-only {
    display: block;
}

.mobile-only {
    display: none;
}

img.mobile-only {
    display: none;
}

/* PC 메인 페이지에서 특정 섹션 숨김 - 비활성화
@media (min-width: 768px) {
    .main-page .ai-analysis-section,
    .main-page .ai-era-section,
    .main-page .new-paradigm-section,
    .main-page .pidian-section,
    .main-page .boopd-ai-section,
    .main-page .membership-section,
    .main-page .circular-carousel-section,
    .main-page .footer-spacer-section {
        display: none !important;
    }
}
*/
