/* Modern Floating Buttons - Restored & Premium (Image 2 Match) */
.floating-btn {
    position: fixed;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    /* Pill Shape */
    text-decoration: none;
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
    z-index: 9999;
}

.floating-btn:hover {
    transform: scale(1.05);
}

/* Red Pill Button (PLAY MATKA) */
.floating-play {
    bottom: 65px;
    left: 20px;
    background: #ff4444;
    /* Bright Red */
    color: white;
}

/* Green Pill Button (WhatsApp) */
.floating-whatsapp {
    bottom: 20px;
    left: 20px;
    background: #00c853;
    /* Bright Green */
    color: white;
}

/* Refresh Button - Bottom Right (DPBoss Style) */
/* Refresh Button - Bottom Right (DPBoss Style) */
.floating-refresh {
    bottom: 20px;
    right: 20px;
    background: #000080 !important;
    /* Navy Blue */
    color: #fff !important;
    border-radius: 50px !important;
    padding: 10px 22px !important;
    /* Slightly more horizontal padding */
    font-size: 0.85rem !important;
    letter-spacing: 0.5px !important;
    justify-content: center;
    font-weight: 800 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    white-space: nowrap !important;
    /* Prevent text wrapping/leakage */
    min-width: fit-content !important;
}

.floating-refresh:hover {
    transform: scale(1.1);
    background: #0000a0 !important;
}

@media (max-width: 600px) {
    .floating-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
    }

    .floating-play {
        bottom: 58px;
        left: 15px;
    }

    .floating-whatsapp {
        bottom: 15px;
        left: 15px;
    }

    .floating-refresh {
        bottom: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}