.donate-page {
    background: linear-gradient(135deg, #0f1419 0%, #1a202c 100%);
    color: #ffffff;
    min-height: 100vh;
}

.payment-selection {
    text-align: center;
    padding: 2rem 0;
}

.selection-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff9900, #ffb84d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.selection-container p {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 3rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.payment-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 153, 0, 0.2);
    border-radius: 16px;
    padding: 3rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-option:hover {
    transform: translateY(-5px);
    border-color: #ff9900;
    box-shadow: 0 20px 40px rgba(255, 153, 0, 0.2);
}

.payment-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(1.2);
}

.payment-option h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.payment-option p {
    color: #cbd5e0;
    font-size: 1rem;
}

.btn {
    background: #ff9900;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #e68900;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #5a6268;
}

@media (max-width: 768px) {
    .selection-container h1 {
        font-size: 2rem;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-option {
        padding: 2rem 1.5rem;
    }
    
    .payment-logo {
        width: 100px;
        height: 50px;
    }
}

.paypal-integration {
    text-align: center;
    padding: 3rem 0;
}

.paypal-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid rgba(255, 153, 0, 0.2);
}

.paypal-container h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 2rem;
    background: linear-gradient(135deg, #ff9900, #ffb84d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.paypal-container p {
    color: #cbd5e0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}