/* ── Donate Page ───────────────────────────────────────── */

.bs-don {
    max-width: 100%;
}

/* Hero */
.bs-don-hero {
    margin-bottom: 24px;
}

.bs-don-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px;
    line-height: 1.25;
}

.bs-don-intro {
    font-size: 15px;
    color: #555;
    margin: 0 0 8px;
    max-width: 680px;
    line-height: 1.55;
}

.bs-don-intro a {
    color: #206389;
    text-decoration: none;
}

.bs-don-intro a:hover {
    color: #1DB0E1;
}

.bs-don-thank {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    margin: 12px 0 0;
}

/* ── Coin Cards ───────────────────────────────────────── */

.bs-don-coins {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bs-don-coin {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 16px 20px;
}

.bs-don-coin__header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 160px;
}

.bs-don-coin__logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.bs-don-coin__name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: block;
    line-height: 1.3;
}

.bs-don-coin__name:hover {
    color: #1DB0E1;
}

.bs-don-coin__ticker {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.bs-don-coin__note {
    font-size: 11px;
    color: #999;
    display: block;
    margin-top: 1px;
}

/* Address + Copy */
.bs-don-coin__body {
    flex: 1;
    min-width: 0;
}

.bs-don-coin__addr-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bs-don-coin__address {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    color: #333;
    background: #f7f7f7;
    padding: 6px 10px;
    border-radius: 6px;
    word-break: break-all;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

.bs-don .bs-don-coin__copy,
.bs-don .bs-don-coin__copy span,
.bs-don .bs-don-coin__copy svg {
    color: #000;
}

.bs-don-coin__copy {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.15s ease, color 0.15s ease;
    flex-shrink: 0;
}

.bs-don .bs-don-coin__copy:hover,
.bs-don .bs-don-coin__copy:hover span,
.bs-don .bs-don-coin__copy:hover svg {
    border-color: #1DB0E1;
    color: #1DB0E1;
}

.bs-don-coin__copy.copied {
    border-color: #4ade80;
    color: #4ade80;
}

.bs-don-coin__ens {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.bs-don-coin__ens strong {
    color: #206389;
}

/* QR Code */
.bs-don-coin__qr {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bs-don-coin__qr-wrap {
    position: relative;
    display: inline-block;
}

.bs-don-coin__qr-wrap img {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    display: block;
    transition: opacity 0.15s ease;
}

.bs-don-coin__qr:hover .bs-don-coin__qr-wrap img {
    opacity: 0.85;
}

.bs-don-coin__qr-label {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: #999;
    margin-top: 4px;
}

.bs-don-coin__qr-label svg {
    flex-shrink: 0;
}

/* Lightbox */
.bs-don-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bs-don-lightbox[hidden] {
    display: none;
}

.bs-don-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.bs-don-lightbox__content {
    position: relative;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
}

.bs-don-lightbox__content img {
    width: 240px;
    height: 240px;
    display: block;
    border-radius: 8px;
}

.bs-don-lightbox__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 12px;
}

/* Lightning */
.bs-don-coin--lightning .bs-don-coin__body {
    display: flex;
    align-items: center;
}

.bs-don-coin__tippin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f7931a;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.bs-don-coin__tippin:hover {
    background: #e8850f;
    color: #fff;
}

/* ── CTA Section ──────────────────────────────────────── */

.bs-don-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #206389;
    border-radius: 10px;
    padding: 24px 28px;
    margin-top: 24px;
}

.bs-don-cta__img {
    width: 80px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.85;
}

.bs-don-cta__body {
    flex: 1;
    min-width: 0;
}

.bs-don-cta__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.bs-don-cta__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.bs-don-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 28px;
    background: #fff;
    color: #206389;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.15s ease, color 0.15s ease;
}

.bs-don-cta__btn:hover {
    background: #e8f7fc;
    color: #206389;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 768px) {
    .bs-don-title {
        font-size: 24px;
    }

    .bs-don-coin {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .bs-don-coin__header {
        min-width: auto;
    }

    .bs-don-coin__addr-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .bs-don-coin__qr img {
        width: 100px;
        height: 100px;
    }

    .bs-don-cta {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .bs-don-cta__img {
        order: -1;
    }
}
