
/* Overlay */
#kickout2026-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none; /* switched to flex via JS */
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

/* Popup box */
#kickout2026-popup {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    margin: 16px;
    padding: 28px 26px 30px;
    text-align: center;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: kickoutScale 0.3s ease;
}

@keyframes kickoutScale {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Close button */
#kickout2026-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
    color: #000;
}

/* Text styles */
.kickout-small-heading {
    font-size: 13px;
    letter-spacing: 2px;
    color: #d60000;
    font-weight: 700;
    text-transform: uppercase;
}

.kickout-main-heading {
    font-size: 32px;
    margin: 12px 0 6px;
    color: #000;
    font-weight: 800;
}

.kickout-tagline {
    font-size: 15px;
    color: #333;
    margin-bottom: 22px;
}

/* Button */
.kickout-btn {
    display: inline-block;
    background: #d60000;
    color: #ffffff;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.kickout-btn:hover {
    background: #000;
    color: #fff;
}

/* Footer text */
.kickout-small-text {
    font-size: 12px;
    color: #555;
    margin-top: 18px;
}

/* Mobile */
@media (max-width: 480px) {
    .kickout-main-heading { font-size: 26px; }
    .kickout-tagline { font-size: 14px; }
    .kickout-btn { padding: 12px 26px; }
}
