/* ViciPoll Onboarding - Gold Standard Edition */
.vici-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.96); 
    /* Set to 9999998 so the Translator Globe (9999999) stays on top */
    z-index: 9999998;
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity 0.4s ease, visibility 0.4s;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto; 
    will-change: opacity; /* GPU Optimization */
}

.vici-popup-overlay.vici-closing {
    pointer-events: none !important;
    opacity: 0 !important;
}

.vici-popup-card {
    background: #fff;
    width: 100%;
    max-width: 440px; 
    border-radius: 25px;
    padding: 30px;
    position: relative;
    margin: auto; 
    border: 4px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transform: translateZ(0); 
}

/* The "Vici-Traffic" Gradient Border */
.vici-popup-card::before {
    content: '';
    position: absolute;
    top: -4px; bottom: -4px; left: -4px; right: -4px;
    background: linear-gradient(135deg, #1ba33f 0%, #ffc107 50%, #dc3545 100%);
    z-index: -1;
    border-radius: 28px;
}

.vici-popup-title {
    font-weight: 900;
    font-size: 25px;
    color: #000 !important; /* Force black for neural clarity */
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
    text-transform: uppercase;
}

.vici-popup-body section { margin-bottom: 20px; }

.vici-popup-body label {
    display: block;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 1.5px;
}

/* Colors linked to the Report/Vote buttons */
.vici-popup-body .about-label { color: #1ba33f; }
.vici-popup-body .usage-label { color: #dc3545; }

.vici-popup-body p {
    font-size: 14px;
    line-height: 1.5;
    color: #222;
    margin: 0;
    font-weight: 600;
}

.vici-popup-note {
    background: #fff9e6;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 10px;
    color: #555;
    border-left: 4px solid #ffc107;
    margin-top: 15px;
    line-height: 1.4;
}

.vici-popup-footer {
    text-align: center;
    margin-top: 25px;
}

.vici-pill-exit {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 50px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vici-pill-exit:hover {
    background: #333;
    transform: scale(1.05) translateY(-2px);
}

@media (max-height: 550px) {
    .vici-popup-card { padding: 20px; margin-top: 15px; margin-bottom: 15px; }
}