/* QR Code */
.qr-code-popup {
    position: absolute;
    bottom: 16px;
    right: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
    filter: blur(5px);
    transform: scale(0.95);
    transition: opacity 0.25s cubic-bezier(0.5, 0, 0, 1), visibility 0.25s cubic-bezier(0.5, 0, 0, 1), filter 0.25s cubic-bezier(0.5, 0, 0, 1), transform 0.25s cubic-bezier(0.5, 0, 0, 1);
}

.qr-code-text {
    font-family: 'ABCDiatypeSemi-Mono', monospace;
    font-size: 0.875em;
    color: #808080;
    position: absolute;
    bottom: 24px;
    left: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
    filter: blur(5px);
    transform: scale(0.95);
    transition: opacity 0.25s cubic-bezier(0.5, 0, 0, 1), visibility 0.25s cubic-bezier(0.5, 0, 0, 1), filter 0.25s cubic-bezier(0.5, 0, 0, 1), transform 0.25s cubic-bezier(0.5, 0, 0, 1);
}

.qr-code-image {
    width: 72px;
    height: 72px;
}

.download-link:hover ~ .qr-code-text {
    opacity: 1;
    visibility: visible;
    filter: blur(0px);
    transform: scale(1);
}

.download-link:hover ~ .qr-code-popup {
    opacity: 1;
    visibility: visible;
    filter: blur(0px);
    transform: scale(1);
}

/* Dark mode QR Code */
body.dark-mode .qr-code-text {
    color: #808080;
}

body.dark-mode .qr-code-image {
    filter: invert(1);
}