/* Support Page Styles */

.donate-hero {
    text-align: center;
    padding: 2rem 0 1.5rem;
}

.donate-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.donate-hero p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 420px;
    margin: 0 auto;
}

/* Crypto Selector */
.crypto-selector {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    margin: 1.5rem auto;
    padding: 0.35rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    max-width: 400px;
}

.crypto-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border: none;
    background: transparent;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
    color: var(--text-muted);
}

.crypto-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.crypto-btn:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.crypto-btn.active {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

/* Wallet Display */
.wallet-display {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    max-width: 340px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.qr-container {
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.qr-container svg,
.qr-container img {
    display: block;
    width: 120px;
    height: 120px;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.75rem;
}

/* RTL support for address box */
[dir="rtl"] .address-box {
    direction: ltr;
}

.address-text {
    flex: 1;
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 0.75rem;
    word-break: break-all;
    text-align: left;
    color: var(--text-primary);
    line-height: 1.4;
}

.copy-btn {
    padding: 0.4rem 0.75rem;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: all 0.2s;
}

.copy-btn:hover {
    filter: brightness(1.1);
}

.copy-btn.copied {
    background: #22c55e;
}

/* Network Badges */
.network-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* RTL support for network badge */
[dir="rtl"] .network-badge {
    direction: ltr;
}

.network-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* BTC */
.network-badge.btc {
    background: rgba(247, 147, 26, 0.15);
    color: #F7931A;
}
.network-badge.btc .dot {
    background: #F7931A;
}

/* Lightning */
.network-badge.lightning {
    background: rgba(121, 45, 228, 0.15);
    color: #9D6AE8;
}
.network-badge.lightning .dot {
    background: #792DE4;
}

/* ETH */
.network-badge.eth {
    background: rgba(98, 126, 234, 0.15);
    color: #8299F2;
}
.network-badge.eth .dot {
    background: #627EEA;
}

/* BNB */
.network-badge.bnb {
    background: rgba(243, 186, 47, 0.15);
    color: #F3BA2F;
}
.network-badge.bnb .dot {
    background: #F3BA2F;
}

/* TRX */
.network-badge.trx {
    background: rgba(239, 0, 39, 0.15);
    color: #FF4D5A;
}
.network-badge.trx .dot {
    background: #EF0027;
}

/* USDT */
.network-badge.usdt {
    background: rgba(38, 161, 123, 0.15);
    color: #50AF95;
}
.network-badge.usdt .dot {
    background: #26A17B;
}

/* SOL */
.network-badge.sol {
    background: rgba(153, 69, 255, 0.15);
    color: #B57BFF;
}
.network-badge.sol .dot {
    background: #9945FF;
}

/* Donate Info Section */
.donate-info {
    max-width: 520px;
    margin: 2.5rem auto 0;
    text-align: center;
    padding: 0 1rem;
}

.donate-info h2 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.donate-info > p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.donate-info > p strong {
    color: var(--accent-primary);
}

/* Impact List */
.impact-list {
    text-align: left;
    margin: 1.25rem 0;
}

[dir="rtl"] .impact-list {
    text-align: right;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.impact-item:last-child {
    border-bottom: none;
}

.impact-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.impact-item strong {
    color: var(--text-primary);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-badge::before {
    content: '\2713';
    color: #22c55e;
}

/* Wallet Info Toggle */
.wallet-info {
    display: none;
}

.wallet-info.active {
    display: block;
}

/* Responsive */
@media (max-width: 480px) {
    .donate-hero h1 {
        font-size: 1.5rem;
    }
    
    .crypto-selector {
        max-width: 100%;
    }
    
    .crypto-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .wallet-display {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .address-text {
        font-size: 0.65rem;
    }
}
