/* Bottom Widget (floating button bottom-right) */
.bottom-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #4ECDC4;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    border: 2px solid #4ECDC4;
    backdrop-filter: blur(10px);
    animation: glowRotate 3s linear infinite;
}

.bottom-widget:hover {
    transform: scale(1.05);
    background: rgba(78, 205, 196, 0.1);
    color: #fff;
    border-color: #5FDDD6;
}

.bottom-widget .widget-icon {
    margin-right: 8px;
    font-size: 16px;
}

@keyframes glowRotate {
    0% {
        box-shadow: 
            0 0 3px rgba(78, 205, 196, 0.5),
            0 0 6px rgba(78, 205, 196, 0.3);
    }
    25% {
        box-shadow: 
            0 0 3px rgba(69, 183, 209, 0.5),
            0 0 6px rgba(69, 183, 209, 0.3);
    }
    50% {
        box-shadow: 
            0 0 3px rgba(150, 206, 180, 0.5),
            0 0 6px rgba(150, 206, 180, 0.3);
    }
    75% {
        box-shadow: 
            0 0 3px rgba(255, 234, 167, 0.5),
            0 0 6px rgba(255, 234, 167, 0.3);
    }
    100% {
        box-shadow: 
            0 0 3px rgba(78, 205, 196, 0.5),
            0 0 6px rgba(78, 205, 196, 0.3);
    }
}

/* Bottom Popup */
.bottom-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #4ECDC4;
    border-radius: 15px;
    padding: 20px;
    min-width: 280px;
    max-width: 320px;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.bottom-popup.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.bottom-popup h3 {
    color: #4ECDC4;
    margin-bottom: 15px;
    font-size: 18px;
}

.bottom-popup p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.bottom-popup ul {
    color: #ccc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.bottom-popup li {
    margin-bottom: 5px;
    font-size: 14px;
}

.bottom-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.bottom-popup .close-btn:hover {
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bottom-widget {
        bottom: 20px;
        right: 10px;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .bottom-popup {
        /* bottom: 60px;
        right: 10px;
        left: 10px; */
        min-width: auto;
    }
}