/* Floating Share Button Styles */
#floating-share-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#share-toggle-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #bf8a0d;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#share-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

#floating-share-container.active #share-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

/* Platform Colors */
.whatsapp { background: #25D366; }
.telegram { background: #0088cc; }
.facebook { background: #006AFF; }
.instagram { background: #E1306C; }
.reddit { background: #FF4500; }
.x { background: #000000; }
.share-btn.x { color: white; }

/* Mobile optimization */
@media (max-width: 600px) {
    #floating-share-container {
        bottom: 15px;
        right: 15px;
    }
}
