/*
* [모듈명]: 가치 제안 웰컴 팝업 디자인
* [파일명]: welcome_popup.css
* [역할]: 프로필 진입 시 하단에서 올라오는 프리미엄 가치 제안 바텀 시트 스타일 정의.
* [디자인]: Black & Gold, Glassmorphism, 모바일 최적화 (100dvh).
*/

.welcome-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.85); /* [수석 아키텍트]: 더 깊은 몰입감을 위해 투명도 조절 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 19998; /* [수석 아키텍트]: 네비바(11000)보다 높게 설정 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overscroll-behavior: none;
    touch-action: none;
}

.welcome-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.welcome-popup-container {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px 32px 0 0; /* [수석 아키텍트]: 더 부드러운 라운드 적용 */
    padding: 40px 24px calc(24px + env(safe-area-inset-bottom));
    z-index: 20000; /* [수석 아키텍트]: 최상단 노출 보장 */
    transition: bottom 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.welcome-popup-container.active {
    bottom: 0;
}

/* [수석 아키텍트]: 누락된 프로필 이미지 스타일 추가 */
.welcome-popup-profile {
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #FFD700;
    background: #222;
}

.welcome-popup-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-popup-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
    font-size: 11px;
    font-weight: 800;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.welcome-popup-title {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 16px;
    word-break: keep-all;
}

.welcome-popup-title span {
    color: #FFD700;
    position: relative;
    display: inline-block;
}

.welcome-popup-desc {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    word-break: keep-all;
}

.welcome-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.welcome-btn-primary {
    width: 100%;
    padding: 20px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.welcome-btn-primary:active {
    transform: scale(0.97);
    background: #eee;
}

.welcome-btn-close {
    width: 100%;
    padding: 10px;
    background: transparent;
    color: #555;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
}

.welcome-btn-close:active {
    color: #999;
}

/* 사파리 하드웨어 가속 및 스크롤 체이닝 방지 */
.welcome-popup-container, .welcome-popup-overlay {
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}
