/* FIX BOTTOM ICONS - Professional SVG Icons */

/* Bottom Controls Container */
.bottom-controls {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    z-index: 1000 !important;
}

/* Icon Buttons */
.bottom-controls .icon-button {
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(196, 69, 105, 0.2) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* SVG Icons */
.bottom-controls .icon-button svg {
    width: 28px !important;
    height: 28px !important;
    stroke: #C44569 !important;
    transition: all 0.3s ease !important;
}

/* Hover Effects */
.bottom-controls .icon-button:hover {
    transform: translateY(-3px) scale(1.1) !important;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(196, 69, 105, 0.3) !important;
}

.bottom-controls .icon-button:hover svg {
    stroke: #FF6B9D !important;
}

/* Active State */
.bottom-controls .icon-button:active {
    transform: translateY(-1px) scale(1.05) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bottom-controls {
        bottom: 20px !important;
        left: 20px !important;
        gap: 12px !important;
    }
    
    .bottom-controls .icon-button {
        width: 48px !important;
        height: 48px !important;
    }
    
    .bottom-controls .icon-button svg {
        width: 24px !important;
        height: 24px !important;
    }
}

/* Ensure visibility only on gameMode screen */
body:not(.gameMode-active) .bottom-controls {
    display: none !important;
}