.social-share {
    display: flex;
    gap: 0.5rem;
}

.social-button {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.social-button:hover {
    transform: scale(1.1);
}

.social-button.twitter:hover {
    background: #1DA1F2;
}

.social-button.facebook:hover {
    background: #4267B2;
}

.social-button.linkedin:hover {
    background: #0077B5;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Adjust footer positioning */
.footer-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    z-index: 45;
    transition: all 0.3s ease;
}

/* Move footer up when chat is active */
.chat-active .footer-container {
    bottom: 5rem;
}

/* Collapse social buttons into a menu when in chat mode */
.social-share-collapsed {
    position: relative;
}

.social-share-toggle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.social-share-toggle:hover {
    background: rgba(59, 130, 246, 1);
}

.social-share-menu {
    position: absolute;
    bottom: 3rem;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform-origin: bottom right;
    transition: all 0.2s;
}

.social-share-menu.hidden {
    transform: scale(0);
    opacity: 0;
}

@media (max-width: 480px) {
    .social-button {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.7rem;
    }
    
    .social-share-toggle {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .footer-container {
        bottom: 0.75rem;
        right: 0.75rem;
    }
    
    /* Move footer up more on mobile when chat is active */
    .chat-active .footer-container {
        bottom: 4.5rem;
    }
}
