.site-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding: 4rem 1.5rem;
    background: #000;
    background-color: #000;
    opacity: 1;
}

.site-popup {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.lock-card {
    width: min(680px, 92vw);
    padding: 2.5rem 2.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(236, 110, 13, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    background: #151515;
    color: #f5f5f5;
}

body.locked,
body.locked #app {
    min-height: 100vh;
    background: #000;
}

.dark .site-popup {
    background-color: #1a1a1a;
}

.dark .lock-card {
    background: #151515;
}

.site-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.dark .site-popup__close {
    color: #fff;
}

.site-popup__body h1 {
    margin-bottom: 1.5rem;
}

.lock-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.lock-icon {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(236, 110, 13, 0.2), rgba(236, 110, 13, 0.05));
    border: 1px solid rgba(236, 110, 13, 0.4);
}

.lock-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: #ec6e0d;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lock-copy h1 {
    margin: 0 0 0.4rem;
    font-size: 2rem;
}

.lock-kicker {
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    color: #ec6e0d;
    font-weight: 700;
}

.lock-subtitle {
    margin: 0;
    color: #444;
    font-size: 1rem;
}

.lock-card .lock-subtitle {
    color: #cfcfcf;
}

.site-popup__body form label {
    display: block;
    margin-bottom: 0.5rem;
}

.lock-card .site-popup__body form label {
    color: #f2f2f2;
}
.site-popup__body form input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.dark .site-popup__body form input {
    background-color: #333;
    border-color: #555;
    color: #fff;
}

.site-popup__actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.login-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 0 0 1.5rem;
}

.login-tabs button {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(236, 110, 13, 0.35);
    background: rgba(236, 110, 13, 0.08);
    color: #2a2a2a;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.login-tabs button.active {
    background: #ec6e0d;
    color: #fff;
    box-shadow: 0 12px 30px rgba(236, 110, 13, 0.35);
    transform: translateY(-1px);
}

.dark .login-tabs button {
    background: rgba(236, 110, 13, 0.12);
    color: #f5f5f5;
}

.dark .login-tabs button.active {
    color: #fff;
}

.login-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

@media (max-width: 600px) {
    .lock-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lock-icon {
        margin: 0 auto;
    }

    .lock-card {
        padding: 2rem 1.5rem;
    }
}
