/* Overlay */
.smmpanelbdlab-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 15px;
}

/* Animated Glow Border */
.smmpanelbdlab-popup-box {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 22px;
    padding: 35px 25px 25px;
    text-align: center;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
    animation: smmpanelbdlab-popup-bounce 0.6s ease;
    border: 2px dotted #ccc;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Glowing effect */
.smmpanelbdlab-popup-box::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 24px;
    border: 2px dotted #00c3ff;
    animation: smmpanelbdlab-popup-glow 2s linear infinite;
    pointer-events: none;
}

@keyframes smmpanelbdlab-popup-glow {
    0% { filter: drop-shadow(0 0 5px #00c3ff); }
    50% { filter: drop-shadow(0 0 15px #00c3ff); }
    100% { filter: drop-shadow(0 0 5px #00c3ff); }
}

/* Bounce Animation */
@keyframes smmpanelbdlab-popup-bounce {
    0% { transform: scale(0.6); opacity: 0; }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

/* Close Button */
.smmpanelbdlab-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 38px;
    height: 38px;
    background: #ff3b3b;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(255,0,0,0.4);
}

/* Title */
.smmpanelbdlab-popup-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ff0000;
}

/* Subtitle */
.smmpanelbdlab-popup-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* Buttons */
.smmpanelbdlab-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    padding: 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    margin-bottom: 15px;
    transition: 0.3s;
}

.smmpanelbdlab-popup-whatsapp {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
}
.smmpanelbdlab-popup-whatsapp:hover {
    transform: translateY(-3px);
}

.smmpanelbdlab-popup-telegram {
    background: linear-gradient(135deg, #0088cc, #006fa6);
}
.smmpanelbdlab-popup-telegram:hover {
    transform: translateY(-3px);
}

/* Countdown */
.smmpanelbdlab-popup-countdown {
    font-size: 13px;
    color: #888;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .smmpanelbdlab-popup-title { font-size: 18px; }
    .smmpanelbdlab-popup-btn { font-size: 14px; padding: 12px; }
}