/* Bonus Zone Icon Button - Compact Version Above Search Panel */

.bonus-zone-icon-btn {
    position: absolute;
    bottom: 100px; /* Above search panel (230px) + offset */
    left: 70%;
    transform: translateX(-50%);
    
    width: 48px;
    height: 48px;
    
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.95) 0%, rgba(219, 39, 119, 0.95) 100%);
    border: 2px solid rgba(236, 72, 153, 0.8);
    border-radius: 50%;
    
    font-size: 24px;
    cursor: pointer;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
    backdrop-filter: blur(10px);
    
    transition: all 0.3s ease;
    z-index: 1000;
    
    user-select: none;
    -webkit-user-select: none;
}

.bonus-zone-icon-btn:hover {
    transform: translateX(-50%) scale(1.1);
    background: linear-gradient(135deg, rgba(236, 72, 153, 1) 0%, rgba(219, 39, 119, 1) 100%);
    border-color: rgba(236, 72, 153, 1);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.6);
}

.bonus-zone-icon-btn:active {
    transform: translateX(-50%) scale(0.95);
}

.bonus-zone-icon-btn.hidden {
    display: none;
}

/* Tablet */
@media (max-width: 1024px) {
    .bonus-zone-icon-btn {
        bottom: 100px;
        width: 46px;
        height: 46px;
        font-size: 22px;
    }
}

/* Mobile (matches search-panel responsive) */
@media (max-width: 768px) {
    .bonus-zone-icon-btn {
        left: 70%;
        bottom: 100px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .bonus-zone-icon-btn {
        left: 70%;
        bottom: 100px;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* Extra small mobile */
@media (max-width: 360px) {
    .bonus-zone-icon-btn {
        bottom: 100px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Stop Spoofing Icon Button - Next to Bonus Zone Button */

.stop-icon-btn {
    position: absolute;
    bottom: 200px; /* Same level as bonus zone button */
    left: 50%; /* Right of bonus zone button */
    transform: translateX(-50%);
    
    width: 48px;
    height: 48px;
    
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
    border: 2px solid rgba(239, 68, 68, 0.8);
    border-radius: 50%;
    
    font-size: 24px;
    cursor: pointer;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    backdrop-filter: blur(10px);
    
    transition: all 0.3s ease;
    z-index: 1000;
    
    user-select: none;
    -webkit-user-select: none;
}

.stop-icon-btn:hover {
    transform: translateX(-50%) scale(1.1);
    background: linear-gradient(135deg, rgba(239, 68, 68, 1) 0%, rgba(220, 38, 38, 1) 100%);
    border-color: rgba(239, 68, 68, 1);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.6);
}

.stop-icon-btn:active {
    transform: translateX(-50%) scale(0.95);
}

.stop-icon-btn.hidden {
    display: none;
}

/* Tablet */
@media (max-width: 1024px) {
    .stop-icon-btn {
        bottom: 200px;
        width: 46px;
        height: 46px;
        font-size: 22px;
    }
}

/* Mobile (matches search-panel responsive) */
@media (max-width: 768px) {
    .stop-icon-btn {
        left: 50%;
        bottom: 200px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .stop-icon-btn {
        left: 50%;
        bottom: 200px;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* Extra small mobile */
@media (max-width: 360px) {
    .stop-icon-btn {
        bottom: 200px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
