/* Private Access Modal CSS */
.private-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.private-modal {
    background: var(--surface, #1a1a1a);
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 1px solid var(--border, rgba(255,255,255,0.1));
    text-align: center;
    color: var(--text-primary, #fff);
}

.private-modal h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--text-heading, #fff);
}

.private-modal p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.private-input {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: var(--bg-primary, #000);
    border: 1px solid var(--border, rgba(255,255,255,0.2));
    border-radius: 8px;
    color: var(--text-primary, #fff);
    outline: none;
    box-sizing: border-box;
}

.private-input:focus {
    border-color: var(--brand-primary, #3b82f6);
}

.private-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.private-buttons button {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    border: none;
    transition: all 0.2s;
}

.private-btn-cancel {
    background: transparent;
    color: var(--text-primary, #fff);
    border: 1px solid var(--border, rgba(255,255,255,0.2)) !important;
}

.private-btn-cancel:hover {
    background: rgba(255,255,255,0.1);
}

.private-btn-submit {
    background: var(--brand-primary, #3b82f6);
    color: white;
}

.private-btn-submit:hover {
    filter: brightness(1.1);
}
