/* 서브페이지 최상위 껍데기 박스 공정 */
.view-page.full-page-style {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    background-color: var(--bg-color, #0f1116); /* 샌드가 아닌 굳건한 다크 네이비 */
    z-index: 50;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    margin: 0 !important;
}


.full-page-style .subpage-local-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0; /* 헤더 내부에만 깔끔하게 여백 처리 */
    background-color: rgba(15, 17, 22, 0.95);
}

.full-page-style .sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 0; /* 본문 스크롤 영역에만 시그니처 16px 그리드 적용 */
}

.view-page .bottom-sheet-style {
    position: absolute;
    bottom: 0; /* 바닥에 고정 */
    left: 0;
    width: 100%;
    height: 88%; /* 화면 상단을 살짝 남겨두어 레이어 깊이감(Depth) 연출 */
    background-color: #15181f; /* 풀페이지보다 미세하게 입체감 있는 한 단계 밝은 청회색 */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
    z-index: 100; /* 풀페이지(50)보다 위에 얹히도록 락인 */
    display: flex;
    flex-direction: column;
    
    /* 라우터 구동 시 밑에서 올라오는 CSS 트랜지션 효과 연동용 기본 축 */
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.3, 1);
    animation: fadeInSubPage 0.3s ease-in-out forwards;
}

@keyframes fadeInSubPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 자바스크립트가 로드 완료 후 강제로 불을 켜주는 구역 */
.bottom-sheet-style.slide-up {
    transform: translateY(0); /* 부드럽게 화면을 채우며 상승 */
}

@keyframes subpageSlideUp {
    0% {
        transform: translateY(100%); /* 화면 바닥 밑에서 출발 */
    }
    100% {
        transform: translateY(0);    /* 화면 전체를 부드럽게 점유 */
    }
}

/* 2. 서브페이지 전용 개별 독립 헤더 디자인 */
.subpage-local-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    border-bottom: 1px solid #1e222b;
}

.subpage-back-btn {
    background: none;
    border: none;
    color: #a0aec0;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s;
}
.subpage-back-btn:hover {
    color: #ffcc00; /* 백버튼 터치/호버 시 고급스러운 골드 피드백 */
}

.subpage-title {
    color: var(--sand-light);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.wpg{
    width:30%;
    height:auto;
}

/* 상단 드래그 바 데코레이션 */
.bottom-sheet-handle {
    width: 42px;
    height: 4px;
    background: #2d3748;
    border-radius: 2px;
    margin: 10px auto 20px auto;
}


.withdraw-warning-banner {
    display: flex;
    align-items: flex-start; /* 아이콘이 첫 줄 상단에 정렬되도록 */
    gap: 12px;
    background: rgba(239, 68, 68, 0.1); /* 부드러운 레드 투명 배경 */
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 24px;
}

.warning-icon {
    color: #ef4444;
    font-size: 16px;
    margin-top: 2px; /* 텍스트 첫 줄과 높이 맞추기 */
}

.warning-text {
    color: #fca5a5; /* 눈이 편안하면서도 확실한 경고 컬러 */
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    word-break: keep-all; /* 단어 단위 줄바꿈으로 깔끔하게 */
}


/* 본문 스크롤 영역 확보 */
.sheet-body, .ctrader-sheet {
    flex: 1;
    overflow-y: auto;
    width: 100%;
    padding: 0;
}


.ctrader-sheet .header-section {
    text-align: center;
    margin-bottom: 32px;
}

.ctrader-sheet .header-section h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.ctrader-sheet .header-section p {
    color: var(--text-sub);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* 연동 상태 박스 */
.ctrader-sheet .status-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ctrader-sheet .status-info .label {
    font-size: 12px;
    color: var(--text-sub);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ctrader-sheet .status-info .value {
    font-size: 16px;
    font-weight: 600;
}

.ctrader-sheet .badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.ctrader-sheet .badge.disconnected {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.ctrader-sheet .badge.connected {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* 안내 가이드 리스트 */
.ctrader-sheet .guide-list {
    margin-bottom: 32px;
    padding-left: 20px;
    color: var(--text-sub);
    font-size: 13px;
    line-height: 1.8;
}

.ctrader-sheet .guide-list li {
    margin-bottom: 6px;
}

/* 액션 버튼 스타일 */
.ctrader-sheet .btn-action {
    width: 100%;
    padding: 14px 0;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
    text-align: center;
    display: block;
    text-decoration: none;
}

.ctrader-sheet .btn-action:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.ctrader-sheet .btn-action:active {
    transform: translateY(0);
}

/* 출금 페이지 내부 세부 핏 조율 */

.balance-display-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #475569;
    margin-top: 6px;
    padding: 0 4px;
}

.highlight-gold { color: #ffcc00; font-weight: 600; }
.highlight-emerald { color: #10b981; font-weight: 600; }

.veve-select-wrapper {
    position: relative;
    width: 100%;
    display: block;
}

/* 셀렉트 박스 본체 개조 */
.veve-select-wrapper .veve-input {
    appearance: none; /* ❌ 브라우저 기본 둔탁한 화살표를 완전히 박멸 */
    -webkit-appearance: none;
    -moz-appearance: none;
    
    padding-right: 40px !important; /* 👈 우측에 넉넉한 공간을 확보하여 글자가 화살표를 가리지 않게 가드 */
}

/* 커스텀 꺾쇠 버튼의 위치를 안쪽으로 정교하게 매핑 */
.select-arrow-icon {
    position: absolute;
    top: 55%; /* 인풋창 세로 중앙 정렬 */
    transform: translateY(-50%);
    right: 16px; /* 👈 원래 벽에 붙어있던 녀석을 안쪽으로 넉넉하게 진입시킴! */
    color: #64748b; /* 차분한 그레이 톤 */
    font-size: 13px;
    pointer-events: none; /* 💡 중요: 아이콘을 터치해도 셀렉트 박스 옵션창이 정상적으로 열리도록 클릭 간섭 차단 */
}

/* 셀렉트 박스에 포커스가 가면 화살표도 반응하게 하고 싶다면 (선택사항) */
.veve-select-wrapper .veve-input:focus + .select-arrow-icon {
    color: #ffcc00; /* 골드빛 동기화 */
}

/* 주소 잠금 인풋 스타일 */
.input-lock-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.veve-label {
    display: block;
    color: #94a3b8; /* 조금 더 밝고 선명한 그레이로 대비 확보 */
    font-size: 12px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
    letter-spacing: 0.3px;
}
.veve-input {
    width: 100%;
    background-color: var(--card-bg);
    /* 초기 보더는 은은하고 투명하게 처리하여 경계를 정돈 */
    border: 1px solid rgba(255, 255, 255, 0.08); 
    color: #fff;
    padding: 14px 12px;
    border-radius: 10px;
    margin-top: 6px;
    box-sizing: border-box;
    outline: none; /* 브라우저 기본 외곽선 사전 차단 */
    transition: all 0.2s ease-in-out;
}

.veve-input:focus {
    /* 브라우저가 강제로 입히는 하얀색/파란색 외곽선을 통째로 증발시킵니다 */
    outline: none !important; 
    
    /* 겹치던 빨간색 계열 보더를 지우고, VEVEMORE의 아이덴티티인 골드빛으로 단일 라인 처리 */
    border: 1px solid #ffcc00 !important; 
    
    /* 보더 뒤로 은은하게 퍼지는 고급스러운 네온 광채(Glow) 효과 부여 (선택 사항) */
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.15) !important;
}

.veve-input.locked {
    background-color: rgba(0, 0, 0, 0.2) !important;
    color: #475569 !important;
    border: 1px dashed #334155 !important;
    padding-right: 40px;
    font-family: monospace;
    font-size: 12px;
}

.veve-input.locked:focus {
    outline: none !important;
    border: 1px dashed #334155 !important;
    box-shadow: none !important;
}

.lock-icon {
    position: absolute;
    right: 14px;
    color: #334155;
    font-size: 14px;
}

.input-sub-text {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b; /* 차분한 그레이 */
    font-size: 12px;
    line-height: 1.4;
    margin: 8px 0 0 0; /* 인풋창 바로 아래에 적절한 여백 */
    word-break: keep-all;
}

.input-sub-text i {
    font-size: 11px;
    color: #475569;
}

/* 수량 인풋 및 맥스 버튼 통합 */
.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.amount-input-wrapper .veve-input {
    padding-right: 65px !important; 
}

.btn-max-trigger {
    position: absolute;
    right: 16px; /* 👈 셀렉트 박스 꺾쇠와 동일한 그리드 라인(16px)으로 정렬 일치 */
    
    /* 대표님의 제안대로 배경과 테두리를 완벽히 증발시킵니다 */
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top:5px !important;
    
    /* 폰트 크기와 볼드감을 키워 가시성 확보 */
    font-size: 14px; /* 11px에서 14px로 선명하게 펌핑 */
    font-weight: 700; /* 두툼하게 각인 */
    color: #ffcc00; /* VEVEMORE 시그니처 골드 */
    
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease, transform 0.1s ease;
}
.btn-max-trigger:hover {
    opacity: 0.8;
}

.btn-max-trigger:active {
    transform: scale(0.95); /* 누를 때 살짝 수축하는 네이티브 UX 감성 */
}

/* 정산 요약 보드 디자인 */
.withdraw-summary-board, .ctrader-summary-board {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}
.summary-row:last-child { margin-bottom: 0; }
.summary-row.total-row {
    border-top: 1px solid #1e293b;
    padding-top: 12px;
    margin-top: 12px;
    font-size: 15px;
    color: #fff;
    font-weight: bold;
}

/* 하단 액션 버튼 그룹 */
.withdraw-action-area {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}
.btn-cancel-action, .btn-confirm-withdraw-action {
    flex: 1;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-cancel-action {
    background: #1e293b;
    color: #64748b;
}
.btn-confirm-withdraw-action {
    background: #10b981; /* 에메랄드 시그니처 각인 */
    color: #fff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
}
.btn-confirm-withdraw-action:disabled {
    background: #334155;
    color: #64748b;
    cursor: not-allowed;
    box-shadow: none;
}

#btn-submit-withdraw i {
    pointer-events: none; /* 아이콘을 마우스가 통과하도록 설정 */
}

/* QR 코드 배치 메인 존 */
.deposit-qr-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 28px 0;
    width: 100%;
}

/* 정밀한 180px 백그라운드 스퀘어 박스 공정 */
.qr-code-wrapper {
    width: 180px;
    height: 180px;
    background: #ffffff; /* QR코드의 명확한 인식을 위해 순백색 핏 유지 */
    padding: 5px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

#deposit-qr-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder-icon {
    font-size: 40px;
    color: #1a1d24;
}

.qr-guide-text {
    font-size: 12px;
    color: #475569;
    margin-top: 12px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* 스왑 그룹 전용 입체형 카드 컨테이너 */
.spec-swap-group {
    background: rgba(15, 17, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 0; /* 인버스 버튼과의 밸런스를 위해 제로화 */
}

.swap-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swap-balance-right {
    font-size: 12px;
    color: #475569;
    font-weight: 500;
}

/* 셀렉트와 인풋 필드를 한 행에 일체형으로 배치 */
.swap-field-box {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 4px;
}

.swap-select {
    margin-top: 0 !important;
    background-color: #1e293b !important; /* 약간의 투명 입체감 부여 */
    font-weight: 700;
    font-size: 14px;
}

.swap-num-input {
    margin-top: 0 !important;
    text-align: right;
    padding-right: 65px !important; /* MAX 글자 정렬 공간 */
    font-family: monospace;
    font-size: 16px;
    font-weight: 600;
}

/* 🔄 중앙 반전 인버스 아이콘 컨테이너 및 핏 조정 */
.swap-inverse-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -10px 0; /* 카드를 위아래로 꽉 물리게 유도하는 음수 마진 테크닉 */
    position: relative;
    z-index: 10;
}

.btn-swap-inverse {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1e293b;
    border: 2px solid #0f1116; /* 바닥 배경과 동일한 보더로 겹침 현상 시각적 정돈 */
    color: #ffcc00; /* 시그니처 골드 활성화 */
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-swap-inverse:hover {
    transform: rotate(180deg); /* 휙 도는 모션 쾌감 */
    color: #10b981; /* 에메랄드로 반전 리액션 */
}

/* 하이테크 보안 게이지 바 레일 디자인 */
.security-progress-bar-bg {
    width: 100%;
    height: 6px;
    background: #0f1116;
    border-radius: 10px;
    overflow: hidden;
}
.security-progress-bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

/* 🛠️ 세팅 메뉴 리스트 슬릭 아이템 디자인 */
.btn-settings-menu-item {
    width: 100%;
    background: rgba(30, 41, 59, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-settings-menu-item:active {
    background: rgba(30, 41, 59, 0.5);
    transform: scale(0.99);
}

.menu-item-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-icon-gold {
    color: var(--sand-light);
    font-size: 16px;
}

.menu-text-box {
    text-align: left;
}

.menu-main-title {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.menu-sub-desc {
    font-size: 12px;
    color: #64748b;
    margin: 3px 0 0 0;
}

.menu-arrow-right {
    color: #334155;
    font-size: 12px;
}

/* 피드백 메시지 공통 레이아웃 */
.feedback-msg {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    display: none; /* 기본값 숨김 */
}

/* 활성화 시 노출 */
.feedback-msg.error, .feedback-msg.success, .feedback-msg.loading {
    display: block;
}

/* 에러 상태: 소프트 레드 또는 변조 경고 느낌 */
.feedback-msg.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* 성공 상태: VEVEMORE의 아이덴티티 에메랄드 */
.feedback-msg.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

/* 로딩 상태: 고급스러운 골드 포인트 */
.feedback-msg.loading {
    background: rgba(255, 204, 0, 0.05);
    border: 1px solid rgba(255, 204, 0, 0.2);
    color: #ffcc00;
}

.accordion-card {
    background: rgba(30, 41, 59, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

/* 아코디언 헤더 (클릭 영역) */
.accordion-header {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.accordion-header .header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.accordion-header .icon-gold {
    font-size: 18px;
    color: #334155;
}

/* 우측 화살표 회전 애니메이션 */
.accordion-arrow {
    font-size: 18px;
    color: #475569;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
}

/* 🚀 핵심: 슬라이딩 본체 숨김 상태 정의 */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 내부 패딩 격리 (max-height 계산 오류 방지용 패딩 스택) */
.accordion-content-inner {
    padding: 0 20px 24px 20px;
}

/* 🔥 활성화(.active) 되었을 때의 상태 스타일 */
.accordion-card.active {
    border-color: rgba(16, 185, 129, 0.2); /* 활성화 시 에메랄드 테두리 살짝 은은하게 */
}

.accordion-card.active .accordion-body {
    max-height: 500px; /* 본문 내용이 다 열릴 수 있는 넉넉한 최대 높이 지정 */
}

.accordion-card.active .accordion-arrow {
    transform: rotate(180deg);
    color: #10b981; /* 활성화 시 화살표 에메랄드로 변경 */
}

.input-group-wrapper{
    margin-bottom: 15px !important;
}

/* .input-label{
    font-size: 0.9rem; 
    margin-bottom: 15px !important;   
} */

.settings-card .input-label {
    display: block;
    font-size: 14px;
    color: #94a3b8; /* 은은한 슬레이트 그레이 */
    margin-bottom: 2px; /* 💡 4px~8px 정도 공간을 주면 숨통이 트입니다 */
    font-weight: 500;
}

.btn-submit-premium {
    position: relative;
    width: 100%;
    height: 52px; /* 모바일 Thumb-Zone 최적화 터치 높이 */
    padding: 0 24px;
    margin-top: 20px;
    
    /* 글래스모피즘 베이스: 깊고 고급스러운 다크 네이비 + 에메랄드 한 방울 */
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(15, 17, 22, 0.8) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    /* 테두리: 상단은 밝게, 하단은 어둡게 처리하여 입체감 부여 */
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px; /* 16px 그리드와 조화를 이루는 곡률 */
    
    /* 타이포그래피 */
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.3px;
    
    /* 정렬 */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* 은은한 에메랄드 그림자 */
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.05);
}

/* 텍스트와 아이콘 레이아웃 조정 */
.btn-submit-premium .btn-text {
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-submit-premium i {
    z-index: 2;
    font-size: 15px;
    color: #ffcc00; /* 아이콘은 프리미엄 골드로 포인트 */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
}

/* OTP 박스 전체 컨테이너 */
.otp-box-wrapper {
    background-color: #0F172A;
    border: 1px solid #1E293B;
    border-radius: 12px;
    padding: 20px 20px 24px 20px;
    color: #E2E8F0;
    margin-bottom: 16px;  
    display: none;
}

.security-method-box{
    margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #1c2541;
}

#otp-inline-container{
    display: none; text-align: center; margin-top: 15px; background: #0b132b; padding: 15px; border-radius: 8px;
}

/* 헤더 */
.otp-header {
    margin-bottom: 16px;
}
.otp-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 4px 0;
}
.otp-desc {
    font-size: 12px;
    color: #94A3B8;
    margin: 0;
}

/* 안내 박스 */
.otp-guide-box {
    font-size: 13px;
    color: #CBD5E1;
    background-color: transparent;
    padding: 0;
    border: none;
    margin-bottom: 12px;
    line-height: 1.6;
}
.otp-guide-box .highlight-green {
    color: #10B981;
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}
.otp-guide-box b {
    color: #FFFFFF;
}

/* QR 영역 */
.otp-qr-area {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    display:none;
}
.otp-qr-card {
    padding: 8px;
    background-color: #020617;
    border-radius: 8px;
    border: 1px solid #1E293B;

    width: 176px; 
    height: 176px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.otp-qr-image {
    width: 160px;
    height: 160px;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
}

/* 시크릿 키 및 복사 버튼 영역 */
.otp-secret-row {
    background-color: #020617;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #1E293B;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.otp-secret-label {
    display: block;
    font-size: 10px;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.otp-secret-value {
    font-family: monospace;
    font-size: 14px;
    color: #10B981;
    letter-spacing: 1px;
    font-weight: 500;
}
.otp-copy-btn {
    background-color: #021610;
    color: var(--sand-light);
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}
.otp-copy-btn:hover {
    background-color: #059669;
}
/* 복사 완료 시 변하는 버튼 상태 클래스 */
.otp-copy-btn.copied {
    background-color: #059669;
    color: #FFFFFF;
}

/* ─────────────────────────────────────────────────────────
   ✨ 인터랙션 상태 (Hover, Active, Focus)
   ───────────────────────────────────────────────────────── */

/* Hover: 마우스를 올리거나 포커싱 되었을 때 (PC & 럭셔리 감성) */
@media (hover: hover) {
    .btn-submit-premium:hover {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(15, 17, 22, 0.9) 100%);
        border-color: rgba(255, 204, 0, 0.5); /* 테두리가 은은한 골드로 변화 */
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.2), 0 0 5px rgba(255, 204, 0, 0.1);
        color: #ffffff;
    }

    /* 호버 시 아이콘이 우측으로 살짝 전진하는 모션 (네이티브 앱 디테일) */
    .btn-submit-premium:hover i {
        transform: translateX(4px);
        color: #ffffff; /* 화살표 불빛 각성 */
    }
}

/* Active: 모바일에서 손가락으로 누르는 순간 (Haptic Touch 감성) */
.btn-submit-premium:active {
    transform: scale(0.98); /* 쫀득하게 살짝 눌리는 물리 효과 */
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.35) 0%, rgba(10, 11, 14, 0.95) 100%);
    border-color: #ffcc00; /* 골드 락인 */
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.1);
    transition: transform 0.05s linear; /* 누를 때는 즉각적으로 반응 */
}

/* Focus-Visible: 웹 접근성 보정 (더블 보더 현상 방지) */
.btn-submit-premium:focus-visible {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
}

/* Disabled: 로딩 중이거나 입력 폼이 미완성일 때 */
.btn-submit-premium:disabled {
    background: rgba(30, 41, 59, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: #475569 !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-submit-premium:disabled i {
    color: #475569 !important;
    transform: none !important;
}

