/* GeoStatsBet Banner Styles */

.geostatsbet-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 9998;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.3s ease;
    max-width: 90%;
    text-align: center;
}

.geostatsbet-banner.visible {
    opacity: 1;
}

.geostatsbet-banner.fade-out {
    opacity: 0;
}

.geostatsbet-banner:hover {
    transform: translateX(-50%) scale(1.02);
    background: linear-gradient(135deg, #1f1f3a 0%, #1a2744 100%);
}

/* Popup Overlay */
.geostatsbet-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geostatsbet-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Box */
.geostatsbet-popup {
    background: #fff;
    border-radius: 12px;
    padding: 40px 50px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.geostatsbet-popup-overlay.active .geostatsbet-popup {
    transform: scale(1);
}

.geostatsbet-popup h3 {
    margin: 0 0 20px 0;
    font-size: 24px;
    color: #1a1a2e;
    font-weight: 600;
}

.geostatsbet-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.geostatsbet-popup-close:hover {
    color: #333;
}

.geostatsbet-popup-wrapper {
    position: relative;
}
