/* Source Code Link Styles */
.source-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #000;
    color: #fff;
    padding: 0.75em 1.25em;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.source-link svg {
    fill: currentColor;
}

.source-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}