/* Share Buttons - Matrix Theme */
.matrix-share-btn {
    background-color: #000000 !important;
    border: 2px solid #00ff41 !important;
    color: #00ff41 !important;
    font-family: 'Courier New', monospace !important;
    font-weight: bold;
    padding: 0.5rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.matrix-share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 65, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.matrix-share-btn:hover::before {
    width: 200px;
    height: 200px;
}

.matrix-share-btn:hover {
    background-color: #00ff41 !important;
    color: #000000 !important;
    border-color: #00ff41 !important;
    box-shadow: 0 0 20px #00ff41, 0 0 40px rgba(0, 255, 65, 0.4);
    transform: translateY(-2px);
}

.matrix-share-btn svg {
    filter: drop-shadow(0 0 3px #00ff41);
    transition: transform 0.3s;
}

.matrix-share-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 8px #00ff41);
}

.matrix-share-btn:active {
    transform: translateY(0);
    box-shadow: 0 0 15px #00ff41;
}



