/* Floating support + subscribe (site-wide) */

#blackthorn-site-chrome {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    font-family: "Courier New", monospace;
}

#blackthorn-site-chrome a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#blackthorn-site-chrome a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}

.btc-donate {
    background: linear-gradient(145deg, #a68960, #8b7355);
    color: #0a0a0a;
    padding: 10px 16px;
    font-weight: bold;
    font-size: 13px;
    border: 1px solid #d4c5a9;
}

.btc-donate svg {
    flex-shrink: 0;
}

.btc-label {
    white-space: nowrap;
}

.btc-subscribe {
    width: 44px;
    height: 44px;
    background: #1a1a1a;
    color: #d4c5a9;
    border: 1px solid #8b7355;
    font-size: 20px;
}

@media (max-width: 480px) {
    .btc-label {
        display: none;
    }
    .btc-donate {
        width: 48px;
        height: 48px;
        padding: 0;
        border-radius: 50%;
    }
}
