/* /Components/AuthModal.razor.rz.scp.css */
/* AuthModal.razor.css */

.pm-auth-modal-root[b-rbc26y9r5v] {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.pm-auth-backdrop[b-rbc26y9r5v] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.pm-auth-modal[b-rbc26y9r5v] {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(92vw, 420px);
    padding: 32px 28px 26px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(var(--accent-mid-rgb), 0.35);
    border-radius: 32px;
    background:
        radial-gradient(circle at top, rgba(var(--accent-mid-rgb), 0.14), transparent 42%),
        linear-gradient(180deg, rgba(24, 0, 0, 0.96), rgba(8, 0, 0, 0.98));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    color: #fff;
}

.pm-auth-close-btn[b-rbc26y9r5v] {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.pm-auth-close-btn svg[b-rbc26y9r5v] {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
}

.pm-auth-close-btn svg path[b-rbc26y9r5v] {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
}

.pm-auth-form-grid[b-rbc26y9r5v] {
    display: grid;
    gap: 16px;
}

.pm-auth-field[b-rbc26y9r5v] {
    display: grid;
    gap: 6px;
}

.pm-auth-field label[b-rbc26y9r5v] {
    font-size: 0.95rem;
    font-weight: 700;
}

.pm-auth-field[b-rbc26y9r5v]  .pm-auth-input {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.35;
    box-sizing: border-box;
    display: block;
    appearance: none;
    /* Blazor valid/invalid 기본 강조 제거 */
    outline: none;
}

.pm-auth-field[b-rbc26y9r5v]  .pm-auth-input.valid,
.pm-auth-field[b-rbc26y9r5v]  .pm-auth-input.invalid {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.pm-auth-field[b-rbc26y9r5v]  .pm-auth-input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.pm-auth-field[b-rbc26y9r5v]  .pm-auth-input:focus {
    border-color: rgba(var(--accent-mid-rgb), 0.85);
    box-shadow: 0 0 0 4px rgba(var(--accent-mid-rgb), 0.16);
}

.pm-auth-validation[b-rbc26y9r5v] {
    margin-top: 4px;
    color: #ff5a5a;
    font-size: 0.9rem;
    line-height: 1.45;
}

.pm-auth-form-grid + .pm-auth-validation[b-rbc26y9r5v] {
    margin-top: 14px;
}

.pm-auth-primary-btn[b-rbc26y9r5v] {
    width: 100%;
    margin-top: 24px;
    min-height: 54px;
    padding: 14px 18px;
    border: none;
    border-radius: 16px;
    background: radial-gradient(circle at 35% 35%, var(--accent-mid), var(--accent-dark));
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(var(--accent-rgb), 0.24);
}

.pm-auth-primary-btn:disabled[b-rbc26y9r5v] {
    cursor: wait;
    opacity: 0.7;
}

.pm-auth-switch-row[b-rbc26y9r5v] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.pm-auth-switch-link[b-rbc26y9r5v] {
    padding: 0;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(var(--accent-mid-rgb), 0.7);
    text-underline-offset: 4px;
}

.pm-auth-switch-link:hover[b-rbc26y9r5v] {
    color: #ffd6d6;
}

@media (max-width: 640px) {
    .pm-auth-modal[b-rbc26y9r5v] {
        padding: 24px 20px;
    }
}
/* /Components/ChangePasswordModal.razor.rz.scp.css */
/* ChangePasswordModal — AuthModal과 동일한 스타일 구조 */

.pm-auth-modal-root[b-sa7g6t32rv] {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.pm-auth-backdrop[b-sa7g6t32rv] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.pm-auth-modal[b-sa7g6t32rv] {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(92vw, 420px);
    padding: 32px 28px 26px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(var(--accent-mid-rgb), 0.35);
    border-radius: 32px;
    background:
        radial-gradient(circle at top, rgba(var(--accent-mid-rgb), 0.14), transparent 42%),
        linear-gradient(180deg, rgba(24, 0, 0, 0.96), rgba(8, 0, 0, 0.98));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    color: #fff;
}

.pm-auth-close-btn[b-sa7g6t32rv] {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.pm-auth-close-btn svg[b-sa7g6t32rv] {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
}

.pm-auth-close-btn svg path[b-sa7g6t32rv] {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
}

.pm-auth-form-grid[b-sa7g6t32rv] {
    display: grid;
    gap: 16px;
}

.pm-auth-field[b-sa7g6t32rv] {
    display: grid;
    gap: 6px;
}

.pm-auth-field label[b-sa7g6t32rv] {
    font-size: 0.95rem;
    font-weight: 700;
}

.pm-auth-field[b-sa7g6t32rv]  .pm-auth-input {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.35;
    box-sizing: border-box;
    display: block;
    appearance: none;
    outline: none;
}

.pm-auth-field[b-sa7g6t32rv]  .pm-auth-input.valid,
.pm-auth-field[b-sa7g6t32rv]  .pm-auth-input.invalid {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.pm-auth-field[b-sa7g6t32rv]  .pm-auth-input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.pm-auth-field[b-sa7g6t32rv]  .pm-auth-input:focus {
    border-color: rgba(var(--accent-mid-rgb), 0.85);
    box-shadow: 0 0 0 4px rgba(var(--accent-mid-rgb), 0.16);
}

.pm-auth-validation[b-sa7g6t32rv] {
    margin-top: 14px;
    color: #ff5a5a;
    font-size: 0.9rem;
    line-height: 1.45;
}

.pm-auth-primary-btn[b-sa7g6t32rv] {
    width: 100%;
    margin-top: 24px;
    min-height: 54px;
    padding: 14px 18px;
    border: none;
    border-radius: 16px;
    background: radial-gradient(circle at 35% 35%, var(--accent-mid), var(--accent-dark));
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: opacity 0.15s;
}

.pm-auth-primary-btn:disabled[b-sa7g6t32rv] {
    opacity: 0.5;
    cursor: not-allowed;
}
/* /Components/MessageBox.razor.rz.scp.css */
/* MessageBox.razor.css */

/* ── 오버레이 루트 ── */
.pm-msgbox-root[b-el81k1n1il] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── 반투명 블러 배경 ── */
.pm-msgbox-backdrop[b-el81k1n1il] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

/* ── 패널 공통 ── */
.pm-msgbox-panel[b-el81k1n1il] {
    position: relative;
    z-index: 1;
    width: min(88vw, 360px);
    padding: 36px 28px 28px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    animation: pm-msgbox-in-b-el81k1n1il 0.18s ease-out;
}

@keyframes pm-msgbox-in-b-el81k1n1il {
    from { opacity: 0; transform: scale(0.92) translateY(8px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);   }
}

/* ── 타입별 색상 (모두 동일한 붉은 테마, 아이콘으로 구분) ── */
.pm-msgbox-panel--error[b-el81k1n1il],
.pm-msgbox-panel--info[b-el81k1n1il],
.pm-msgbox-panel--success[b-el81k1n1il],
.pm-msgbox-panel--warning[b-el81k1n1il] {
    background:
        radial-gradient(circle at top, rgba(180, 20, 20, 0.18), transparent 50%),
        linear-gradient(180deg, rgba(28, 2, 2, 0.97), rgba(10, 0, 0, 0.99));
    border: 1px solid rgba(220, 50, 50, 0.4);
    box-shadow: 0 0 40px rgba(200, 30, 30, 0.25), 0 24px 60px rgba(0, 0, 0, 0.6);
    color: #fff;
}

/* ── 아이콘 ── */
.pm-msgbox-icon[b-el81k1n1il] {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.pm-msgbox-icon svg[b-el81k1n1il] {
    width: 100%;
    height: 100%;
    display: block;
}

/* ── 메시지 텍스트 ── */
.pm-msgbox-message[b-el81k1n1il] {
    margin: 0;
    font-size: 0.97rem;
    font-weight: 600;
    line-height: 1.55;
    word-break: keep-all;
    white-space: pre-line;
}

/* ── 확인 버튼 ── */
.pm-msgbox-confirm-btn[b-el81k1n1il] {
    margin-top: 6px;
    min-width: 120px;
    padding: 11px 32px;
    border: none;
    border-radius: 999px;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    background: radial-gradient(circle at 35% 35%, var(--accent-dark), var(--accent-deeper));
    outline: 2px solid rgba(var(--accent-rgb), 0.25);
    outline-offset: 3px;
    color: #fff;
    transition: outline-color 0.18s;
}

.pm-msgbox-confirm-btn:hover[b-el81k1n1il] {
    outline-color: rgba(var(--accent-mid-rgb), 0.9);
}
/* /Layout/MainMenu.razor.rz.scp.css */
/* ════════════════════════════════════════
   MainMenu 컴포넌트 전용 Scoped CSS
   Blazor CSS isolation 적용 — MainMenu.razor와 쌍을 이룸
   ════════════════════════════════════════ */

/* ── 햄버거 메뉴 버튼 ── */
.pm-menu-btn[b-lvc7r4cx8s] {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 10000;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: radial-gradient(circle at 35% 35%, var(--accent-dark), var(--accent-deeper));
    outline: 2px solid rgba(var(--accent-rgb), 0.2);
    outline-offset: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: outline-color 0.2s;
}

.pm-menu-btn:hover[b-lvc7r4cx8s] {
    outline-color: rgba(var(--accent-mid-rgb), 0.9);
}

.pm-hamburger[b-lvc7r4cx8s] {
    width: 22px;
    height: 22px;
    display: block;
    filter: drop-shadow(0 0 6px rgba(var(--accent-mid-rgb), 0.7));
    pointer-events: none;
}

/* ── 백드롭 (클릭 시 메뉴 닫힘) ── */
.pm-menu-backdrop[b-lvc7r4cx8s] {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: transparent;
}

/* ── 메뉴 패널 ── */
@keyframes pmMenuSlideIn-b-lvc7r4cx8s {
    from { opacity: 0; transform: translateY(-8px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.pm-menu-panel[b-lvc7r4cx8s] {
    position: fixed;
    top: 82px;
    left: 18px;
    z-index: 9999;
    min-width: 200px;
    padding: 6px;
    border-radius: 18px;
    /* 다크 글래스모피즘 */
    background: rgba(8, 2, 2, 0.78);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(var(--accent-rgb), 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: pmMenuSlideIn-b-lvc7r4cx8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pm-menu-panel ul[b-lvc7r4cx8s] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pm-menu-user-box[b-lvc7r4cx8s] {
    margin: 2px 4px 8px;
    border-radius: 14px;
    background:
        radial-gradient(circle at top left, rgba(var(--accent-mid-rgb), 0.12), transparent 42%),
        linear-gradient(180deg, rgba(40, 4, 4, 0.92), rgba(14, 1, 1, 0.88));
    border: 1px solid rgba(var(--accent-mid-rgb), 0.2);
    overflow: hidden;
}

.pm-menu-user-row[b-lvc7r4cx8s] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    color: #fff;
}

.pm-menu-user-text[b-lvc7r4cx8s] {
    min-width: 0;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pm-menu-user-logout-btn[b-lvc7r4cx8s] {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.25);
    color: #fff;
    cursor: pointer;
    transition: background 0.15s;
}

.pm-menu-user-logout-btn svg[b-lvc7r4cx8s] {
    width: 16px;
    height: 16px;
    display: block;
}

.pm-menu-user-logout-btn:hover[b-lvc7r4cx8s] {
    background: rgba(var(--accent-mid-rgb), 0.35);
}

/* ── 비밀번호 변경 버튼 (닉네임 박스 하단) ── */
.pm-menu-change-pw-btn[b-lvc7r4cx8s] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 12px 10px;
    border: none;
    border-top: 1px solid rgba(var(--accent-mid-rgb), 0.18);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: left;
    transition: background 0.15s, color 0.12s;
}

.pm-menu-change-pw-btn:hover[b-lvc7r4cx8s] {
    background: rgba(var(--accent-rgb), 0.15);
    color: #fff;
}

/* ── 내비 링크 ── */
.pm-menu-panel li a[b-lvc7r4cx8s] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 12px;
    margin: 0;
    transition: background 0.15s, color 0.12s;
}

.pm-menu-link-btn[b-lvc7r4cx8s] {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: left;
    border-radius: 12px;
    margin: 0;
    transition: background 0.15s, color 0.12s;
}

.pm-menu-panel li a:hover[b-lvc7r4cx8s],
.pm-menu-link-btn:hover[b-lvc7r4cx8s] {
    background: rgba(var(--accent-rgb), 0.18);
    color: #fff;
}

/* ── 구분선 ── */
.pm-menu-divider[b-lvc7r4cx8s] {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent
    );
    margin: 4px 8px;
}

/* ── 언어 선택 ── */
.pm-lang-list[b-lvc7r4cx8s] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pm-lang-btn[b-lvc7r4cx8s] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 9px 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Pretendard Variable', 'Pretendard', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: left;
    border-radius: 12px;
    transition: background 0.15s, color 0.12s;
}

.pm-lang-btn:hover[b-lvc7r4cx8s] {
    background: rgba(var(--accent-rgb), 0.14);
    color: rgba(255, 255, 255, 0.85);
}

.pm-lang-btn.active[b-lvc7r4cx8s] {
    color: #fff;
    font-weight: 600;
    background: rgba(var(--accent-rgb), 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
/* /Pages/Home.razor.rz.scp.css */
/* Home.razor.css */

.home-center[b-zdalox7v2j] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px; /* 요소들 간의 간격 */
}

.home-main-img[b-zdalox7v2j] {
    max-width: 100%;
    max-height: 50vh; /* 버튼을 위해 최대 높이를 조금 줄임 */
    object-fit: contain;
    display: block;
}

/* ── 프로모션 배지 ── */
.pm-event-badge[b-zdalox7v2j] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f0c85a, #c99a1f);
    color: #1b1200;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 8px 16px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(102, 73, 0, 0.24);
    box-shadow: none;
    text-shadow: none;
    text-decoration: none;
    line-height: 1;
}

/* pm-play-btn: 햄버거 메뉴와 동일한 다크 그라디언트 + 강한 붉은 펄스/아웃라인 스타일 */
.pm-play-btn[b-zdalox7v2j] {
    min-width: 200px;
    padding: 16px 48px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    background: radial-gradient(circle at 35% 35%, var(--accent-dark), var(--accent-deeper));
    outline: 2px solid rgba(var(--accent-rgb), 0.2);
    outline-offset: 4px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: outline-color 0.2s;
    /* 약간의 글로우를 주어 버튼임을 강조 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.pm-play-btn:hover[b-zdalox7v2j] {
    outline-color: rgba(var(--accent-mid-rgb), 0.9);
}

.pm-play-btn:disabled[b-zdalox7v2j] {
    cursor: wait;
    opacity: 0.7;
}

.pm-auth-pill[b-zdalox7v2j],
.pm-play-message[b-zdalox7v2j] {
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(40, 4, 4, 0.9), rgba(14, 1, 1, 0.82));
    border: 1px solid rgba(var(--accent-mid-rgb), 0.16);
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.pm-play-message[b-zdalox7v2j] {
    max-width: min(90vw, 420px);
    line-height: 1.4;
}

.pm-auth-secondary-btn[b-zdalox7v2j],
.pm-auth-primary-btn[b-zdalox7v2j],
.pm-auth-switch-link[b-zdalox7v2j],
.pm-auth-close-btn[b-zdalox7v2j] {
    font: inherit;
}

@media (max-width: 640px) {
    .home-center[b-zdalox7v2j] {
        padding: 96px 20px 32px;
        justify-content: flex-start;
    }

    .home-main-img[b-zdalox7v2j] {
        max-height: 36vh;
    }

    .pm-play-btn[b-zdalox7v2j] {
        min-width: min(100%, 260px);
    }

    .pm-auth-user-badge[b-zdalox7v2j] {
        width: min(92vw, 420px);
    }
}

