﻿.bayiradar-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}

    .bayiradar-popup-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.bayiradar-popup {
    position: relative;
    background: #fff;
    border-radius: 18px;
    max-width: 560px;
    width: calc(100% - 32px);
    padding: 36px 36px 30px;
    box-shadow: 0 24px 60px rgba(0,0,0,.25);
    text-align: center;
    transform: translateY(16px) scale(.96);
    transition: transform .3s ease;
}

.bayiradar-popup-overlay.show .bayiradar-popup {
    transform: translateY(0) scale(1);
}

.bayiradar-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
}

    .bayiradar-popup-close:hover {
        color: #0f172a;
    }

.bayiradar-popup span.tag {
    display: inline-block;
    background: rgba(255,165,0,.12);
    color: orange;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.bayiradar-popup h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}

.bayiradar-popup-subtitle {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: orange !important;
    margin: -6px 0 14px !important;
}

.bayiradar-popup p {
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
    margin: 0 0 16px;
}

.bayiradar-popup-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .bayiradar-popup-list li {
        font-size: 13.5px;
        color: #334155;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .bayiradar-popup-list i {
        color: orange;
        margin-top: 2px;
        font-size: 13px;
    }

.bayiradar-popup-stats {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 0 0 20px;
    padding: 14px 8px;
    background: #f8fafc;
    border-radius: 12px;
}

    .bayiradar-popup-stats .stat {
        flex: 1;
        text-align: center;
    }

    .bayiradar-popup-stats .stat strong {
        display: block;
        font-size: 20px;
        font-weight: 800;
        color: orange;
        line-height: 1.1;
    }

    .bayiradar-popup-stats .stat span {
        display: block;
        font-size: 11.5px;
        color: #64748b;
        margin-top: 2px;
    }

.bayiradar-popup-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.bayiradar-popup-btn {
    display: inline-block;
    background: orange;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 999px;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .bayiradar-popup-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(255,165,0,.35);
        color: #fff;
    }

.bayiradar-popup-btn-outline {
    display: inline-block;
    background: #fff;
    color: orange;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 11px 24px;
    border-radius: 999px;
    border: 1.5px solid orange;
    transition: transform .2s ease, background .2s ease;
}

    .bayiradar-popup-btn-outline:hover {
        transform: translateY(-2px);
        background: rgba(255,165,0,.08);
        color: orange;
    }

@media (max-width: 480px) {
    .bayiradar-popup {
        padding: 26px 20px 22px;
    }
}
