    .donation-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.donation-card {
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.donation-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 2rem;
    text-align: center;
}

.donation-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

.donation-body {
    padding: 2rem;
}

.donation-message {
    text-align: center;
    margin-bottom: 2rem;
}

.donation-message .lead {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.donation-addresses {
    max-width: 600px;
    margin: 0 auto;
}

.wallet-item {
    background: var(--input-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wallet-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.wallet-item h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wallet-item h4 i {
    font-size: 1.5rem;
}

.wallet-item h4 img {
    max-width: 35px;
    height: auto;
    margin-right: 10px;
}

.wallet-item .input-group {
    display: flex;
    gap: 0.5rem;
}

.wallet-item input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--input-bg);
    color: var(--text-color);
    font-family: monospace;
    font-size: 0.9rem;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.copy-btn i {
    font-size: 1.1rem;
}

.thank-you {
    text-align: center;
    margin-top: 2rem;
    color: #2ecc71;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Specific cryptocurrency colors */
.wallet-item.btc h4 i { color: #f7931a; }
.wallet-item.eth h4 i { color: #627eea; }
.wallet-item.bnb h4 i { color: #f3ba2f; }
.wallet-item.sol h4 i { color: #00ffa3; }
.wallet-item.doge h4 i { color: #c3a634; }

/* Alert styles */
.alert {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.alert i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Donors honor table styles */
.donors-table {
    margin-top: 2rem;
    padding: 1rem;
}

.donors-table h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.donor-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.donor-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.donor-note a:hover {
    text-decoration: underline;
}

.honor-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.honor-table th,
.honor-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.honor-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.honor-table tbody tr:hover {
    background-color: #f8f9fa;
}

.honor-table tbody tr:last-child td {
    border-bottom: none;
}

.empty-message {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .wallet-item {
        background: var(--card-bg);
    }
    
    .copy-btn:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .alert {
        background: rgba(52, 152, 219, 0.1);
    }
}
