#login-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #1e1e1e;
    padding: 32px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    width: min(480px, calc(100vw - 40px));
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Privacy section sits inline within the container — no nested box */
.privacy-card {
    text-align: left;
    margin: 16px 0 20px;
    padding: 14px 0;
    border-top: 1px solid #2e2e2e;
    border-bottom: 1px solid #2e2e2e;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}

.privacy-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.privacy-header h3 {
    margin: 0;
    font-size: 11px;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.privacy-header span {
    font-size: 12px;
    line-height: 1;
}

.privacy-section h4 {
    margin: 0 0 6px 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
}

.data-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
    color: #999;
}

.data-list li {
    padding-left: 16px;
    position: relative;
}

.collect li::before {
    content: "•";
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.restricted li::before {
    content: "✕";
    color: #e74c3c;
    position: absolute;
    left: 0;
    font-size: 10px;
    font-weight: bold;
    top: 3px;
}

.privacy-footer {
    grid-column: 1 / -1;
    font-size: 11px;
    color: #555;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #2a2a2a;
}

.privacy-footer a {
    color: #2481cc;
    text-decoration: none;
}

.privacy-footer a:hover {
    text-decoration: underline;
}
