/* ========================================
   Premium Components - 공통 UI 컴포넌트
   (모달, 토스트, 드롭다운 오버레이, 버튼 등)
   ======================================== */

/* ========================================
   토스트 알림
   ======================================== */

.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 14px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notification.success .toast-icon {
    color: #10b981;
}

.toast-notification.error .toast-icon {
    color: #ef4444;
}

.toast-notification.info .toast-icon {
    color: #6366f1;
}

.toast-icon {
    font-size: 18px;
    font-weight: bold;
}

/* ========================================
   신고 모달
   ======================================== */

.report-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.report-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.report-modal {
    background: var(--bg-card);
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
    overflow: hidden;
}

.report-modal-overlay.show .report-modal {
    transform: translateY(0);
}

.report-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

.report-modal-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.report-modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-main);
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.report-modal-close:hover {
    background: var(--accent);
    color: white;
}

.report-modal-body {
    padding: 20px;
}

.report-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.report-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.report-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--bg-main);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: var(--text-primary);
}

.report-option:hover {
    background: rgba(233, 69, 96, 0.1);
}

.report-option input {
    display: none;
}

.report-radio {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
}

.report-option input:checked ~ .report-radio {
    border-color: var(--accent);
}

.report-option input:checked ~ .report-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.report-detail {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-primary);
    resize: none;
    height: 80px;
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
}

.report-detail:focus {
    border-color: var(--accent);
}

.report-detail::placeholder {
    color: var(--text-light);
}

.report-modal-footer {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid var(--border);
}

.report-btn-cancel,
.report-btn-submit {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.report-btn-cancel {
    background: var(--bg-main);
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.report-btn-cancel:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.report-btn-submit {
    background: linear-gradient(135deg, var(--accent), #ff6b6b);
    border: none;
    color: white;
}

.report-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.report-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ========================================
   드롭다운 오버레이 (모바일)
   ======================================== */

.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 899;
    display: none;
}

.dropdown-overlay.active {
    display: block;
}

/* ========================================
   버튼 비활성화 상태
   ======================================== */

.content-action-btn:disabled,
.comment-like:disabled,
.file-download:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========================================
   공통 배지 스타일
   ======================================== */

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    line-height: 1.4;
}

.badge-new {
    background: rgba(233, 69, 96, 0.15);
    color: var(--accent);
}

.badge-hot {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.badge-notice {
    background: rgba(99, 102, 241, 0.15);
    color: #6366f1;
}

.badge-secret {
    background: rgba(107, 114, 128, 0.15);
    color: #6b7280;
}

/* ========================================
   공통 폼 스타일
   ======================================== */

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-main);
    color: var(--text-primary);
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

/* ========================================
   공통 버튼 스타일
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #ff6b6b);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.btn-secondary {
    background: var(--bg-main);
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.btn-success:hover {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* ========================================
   페이지네이션
   ======================================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 24px 0;
}

.pagination a,
.pagination strong {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.pagination strong,
.pagination .active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.pagination .pg_prev,
.pagination .pg_next,
.pagination .pg_start,
.pagination .pg_end {
    font-weight: bold;
}

/* ========================================
   스켈레톤 로딩
   ======================================== */

.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-main) 25%,
        var(--border) 50%,
        var(--bg-main) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 14px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 20px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* ========================================
   스크롤바 커스텀
   ======================================== */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #e8e8e8;
}

::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 5px;
    border: 2px solid #e8e8e8;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* 다크모드 스크롤바 */
[data-theme="dark"] ::-webkit-scrollbar-track {
    background: #1e1e1e;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: #555;
    border-color: #1e1e1e;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ========================================
   유틸리티 클래스
   ======================================== */

.sr-only,
.sound_only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-accent { color: var(--accent); }
.text-success { color: #10b981; }
.text-danger { color: #ef4444; }
.text-warning { color: #f59e0b; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

.d-flex { display: flex; }
.d-none { display: none; }
.d-block { display: block; }

.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ========================================
   반응형 유틸리티
   ======================================== */

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .show-mobile {
        display: none !important;
    }
}
/* ========================================
   인증 모달 (로그인/회원가입) — 골드 다크 테마
   ======================================== */

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 16px;
}

.auth-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: none;
    border-radius: 20px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(212, 175, 55, 0.08);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.auth-modal::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(212,175,55,0.5), rgba(212,175,55,0.1), rgba(212,175,55,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.auth-modal::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.04), transparent 50%);
    pointer-events: none;
}

.auth-modal-overlay.show .auth-modal {
    transform: translateY(0) scale(1);
}

/* ── 로고 ── */
.auth-logo {
    text-align: center;
    padding: 20px 20px 0;
    position: relative;
    z-index: 2;
}

.auth-logo-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto;
    background: linear-gradient(135deg, #d4af37, #aa8a2e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(212,175,55,0.3);
}

.auth-logo-icon svg {
    width: 22px;
    height: 22px;
    color: #0d0d0d;
}

/* ── 닫기 버튼 ── */
.auth-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 3;
}

.auth-modal-close:hover {
    background: rgba(255,255,255,0.1);
    color: #d4af37;
}

.auth-modal-close svg {
    width: 16px;
    height: 16px;
}

/* ── 탭 ── */
.auth-tabs {
    display: flex;
    position: relative;
    padding: 12px 20px 0;
    gap: 0;
    z-index: 2;
}

.auth-tab {
    flex: 1;
    padding: 10px 0;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.25s;
    position: relative;
    z-index: 1;
    font-family: inherit;
}

.auth-tab.active {
    color: #d4af37;
}

.auth-tab:hover:not(.active) {
    color: rgba(255,255,255,0.7);
}

.auth-tab-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: #d4af37;
    border-radius: 2px;
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 패널 ── */
.auth-panels {
    padding: 16px 20px 20px;
    position: relative;
    z-index: 2;
}

.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
    animation: authFadeIn 0.3s ease;
}

@keyframes authFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── 폼 ── */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── 라벨 ── */
.auth-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── 인풋 그룹 ── */
.auth-input-group {
    position: relative;
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon-right {
    position: absolute;
    right: 12px;
    width: 16px;
    height: 16px;
    color: rgba(255,255,255,0.25);
    pointer-events: none;
    transition: color 0.3s ease;
}

.auth-input {
    width: 100%;
    padding: 11px 38px 11px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    background: #252525;
    color: #fff;
    font-size: 13px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    font-family: inherit;
}

.auth-input::placeholder {
    color: rgba(255,255,255,0.25);
}

.auth-input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
    background: rgba(212,175,55,0.05);
}

.auth-input:focus ~ .auth-input-icon-right {
    color: #d4af37;
}

.auth-input-wrap:has(.auth-input:focus) .auth-input-icon-right {
    color: #d4af37;
}

.auth-input-group.success .auth-input {
    border-color: #10b981;
}

.auth-input-group.error .auth-input {
    border-color: #ef4444;
}

.auth-field-msg {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    padding-left: 4px;
    min-height: 0;
    line-height: 1.3;
    transition: color 0.2s;
}

.auth-field-msg.success {
    color: #10b981;
}

.auth-field-msg.error {
    color: #ef4444;
}

/* ── PIN 입력 ── */
.auth-pin-section {
    margin: 4px 0;
}

.auth-pin-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.auth-pin-label span {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-pin-label small {
    font-size: 9px;
    color: #d4af37;
    opacity: 0.7;
}

.auth-pin-inputs {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.auth-pin-input {
    width: 38px;
    height: 42px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    background: #252525;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
    font-family: inherit;
}

.auth-pin-input:focus {
    border-color: #d4af37;
    background: rgba(212,175,55,0.08);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
    transform: scale(1.05);
}

.auth-pin-input.filled {
    border-color: #d4af37;
    background: rgba(212,175,55,0.1);
}

.auth-pin-section.error .auth-pin-input {
    border-color: #ef4444;
}

/* ── 옵션 (자동로그인, 링크) ── */
.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2px 0;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    user-select: none;
}

.auth-checkbox input {
    display: none;
}

.auth-checkmark {
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.auth-checkbox input:checked + .auth-checkmark {
    background: #d4af37;
    border-color: #d4af37;
}

.auth-checkbox input:checked + .auth-checkmark::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid #0d0d0d;
    border-bottom: 2px solid #0d0d0d;
    transform: rotate(-45deg) translateY(-1px);
}

.auth-link {
    font-size: 12px;
    color: #d4af37;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.2s;
}

.auth-link:hover {
    opacity: 1;
}

/* ── 버튼 ── */
.auth-btn {
    position: relative;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    font-family: inherit;
    overflow: hidden;
}

.auth-btn-primary {
    background: linear-gradient(135deg, #d4af37, #aa8a2e);
    color: #0d0d0d;
    box-shadow: 0 4px 24px rgba(212,175,55,0.3);
}

.auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212,175,55,0.4);
}

.auth-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.auth-btn-primary:hover::before {
    left: 100%;
}

.auth-btn-primary:active {
    transform: translateY(0);
}

.auth-btn-outline {
    width: 100%;
    padding: 11px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.auth-btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}

.auth-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.auth-btn.loading .auth-btn-text {
    opacity: 0;
}

.auth-btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #0d0d0d;
    border-top-color: transparent;
    border-radius: 50%;
    animation: authSpin 0.6s linear infinite;
}

.auth-btn.loading .auth-btn-spinner {
    display: block;
    position: absolute;
}

@keyframes authSpin {
    to { transform: rotate(360deg); }
}

/* ── 구분선 ── */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 12px 0;
    gap: 12px;
}

.auth-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.auth-divider-text {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── 메시지 ── */
.auth-message {
    text-align: center;
    font-size: 12px;
    padding: 0 4px;
    min-height: 0;
    line-height: 1.4;
    transition: color 0.2s;
}

.auth-message.error {
    color: #ef4444;
}

.auth-message.success {
    color: #10b981;
}

/* ── 스크롤바 ── */
.auth-modal::-webkit-scrollbar {
    width: 4px;
}

.auth-modal::-webkit-scrollbar-track {
    background: transparent;
}

.auth-modal::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

/* ── 반응형 ── */
@media (max-width: 480px) {
    .auth-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .auth-modal {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
    }

    .auth-modal::before {
        border-radius: 20px 20px 0 0;
    }

    .auth-modal-overlay.show .auth-modal {
        transform: translateY(0);
    }

    .auth-panels {
        padding: 14px 16px 24px;
    }

    .auth-pin-input {
        width: 34px;
        height: 38px;
        font-size: 16px;
    }

    .auth-pin-inputs {
        gap: 5px;
    }
}
