/* ===== Chinvest 테마 기본 스타일 ===== */

/* ========================================
   Paperozi Font
======================================== */

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-1Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-2ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

/* 기본 리셋 */
html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* 기본 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 모바일 터치 포커스 효과 제거 */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* 입력 필드는 텍스트 선택 허용 */
input, textarea, select {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* ===== 관리자 로그인 메시지 ===== */
#hd_login_msg {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    background-color: rgba(44, 44, 44, 0.95);
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 400;
    font-family: 'Noto Sans KR', sans-serif;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    line-height: 1.5;
}

#hd_login_msg:hover {
    background-color: rgba(44, 44, 44, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

#hd_login_msg a {
    color: #BA884B;
    text-decoration: none;
    margin-left: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

#hd_login_msg a:hover {
    color: #D4AF5F;
    text-decoration: underline;
}

/* 반응형 관리자 로그인 메시지 */
/* 태블릿 (768px ~ 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    #hd_login_msg {
        bottom: 20px;
        right: 20px;
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 20px;
    }
}

/* 모바일 (480px ~ 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    #hd_login_msg {
        bottom: 15px;
        right: 15px;
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 20px;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 479px) {
    #hd_login_msg {
        bottom: 15px;
        right: 15px;
        padding: 7px 12px;
        font-size: 11px;
        border-radius: 18px;
    }
    
    #hd_login_msg a {
        margin-left: 6px;
        display: inline-block;
    }
}

