/* Share HUD Container */
.share-hud-node {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-right: 4px solid var(--secondary-color); /* Neon accent on the opposite side */
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%); /* Mirrored angle */
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.share-hud-node:hover {
    transform: scale(1.1) translateY(-5px);
    background: #121212;
}

/* Icon Styling */
#share_btn {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00f2ff !important;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
    transition: 0.3s;
    font-size: 2.5rem !important; /* Slightly smaller, more refined */
}

#share_btn:hover{
    color: #fff !important;
    text-shadow: 0 0 20px var(--secondary-color);
}

/* #share_btn i {
    font-size: 2.5rem !important; 
    color: #00f2ff !important;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
    transition: 0.3s;
}

#share_btn:hover i {
    color: #fff !important;
    text-shadow: 0 0 20px var(--secondary-color);
} */

/* Status Message Styling */
#result_message {
    margin-top: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 1px;
}