/* =============================================
   Donation Section
   ============================================= */

.donation-section {
    position: relative;
    padding-bottom: 120px;
}

.donation-top-line,
.donation-bottom-line {
    display: block;
    width: 100%;
    margin-bottom: 0;
}

.donation-top-line  { margin-bottom: 36px; }
.donation-bottom-line { margin-top: 36px; }

.donation-inner {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    padding: 0 20px;
}

/* Left text column */
.donation-text-col {
    max-width: 604px;
}
.dark-text{
    font-weight: 600;
    background: linear-gradient(90deg, #DDB1D5 0%, #7A4675 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.donation-icon {
}

.donation-heading {
    font-size: 36px;
    font-weight: 600;
    color: #f6f6f6;
    margin-bottom: 12px;
}

.donation-desc {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0.02em;
    background: linear-gradient(108.42deg, #FFFFFF 2.51%, #999999 63.12%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    opacity: 0.8;
}

/* Right cards column */
.donation-cards-col {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
}

/* Individual wallet card */
.donation-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(228, 187, 221, 0.15);
    border-radius: 8px;
    padding: 16px 20px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.donation-card:hover {
    border-color: rgba(228, 187, 221, 0.35);
    background: rgba(255, 255, 255, 0.07);
}

.donation-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.donation-chain-icon {
    flex-shrink: 0;
}

.donation-card-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(228, 187, 221, 0.75);
}

/* Address row */
.donation-address-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    padding: 8px 12px;
}

.donation-address {
    flex: 1;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    color: #f6f6f6;
    word-break: break-all;
    letter-spacing: 0.02em;
    background: transparent;
    border: none;
    outline: none;
    user-select: all;
}

/* Copy button */
.donation-copy-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: rgba(228, 187, 221, 0.6);
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}

.donation-copy-btn:hover {
    color: #E4BBDD;
    background: rgba(228, 187, 221, 0.1);
}

.donation-copy-btn:focus-visible {
    outline: 2px solid rgba(228, 187, 221, 0.5);
    outline-offset: 2px;
}

/* Copied feedback text */
.donation-copy-feedback {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 10, 25, 0.92);
    border: 1px solid rgba(228, 187, 221, 0.25);
    color: #E4BBDD;
    font-size: 11px;
    font-family: inherit;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.donation-copy-btn.copied .donation-copy-feedback {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .donation-inner {
        flex-direction: column;
        gap: 28px;
    }

    .donation-text-col {
        max-width: 100%;
        flex: auto;
    }

    .donation-address {
        font-size: 11px;
    }
}