/* donate.css */

.donate-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.donate-container h2 {
    color: #FFD700;
    margin-bottom: 10px;
}

.donate-container p {
    color: #DAA520;
    margin-bottom: 30px;
}

.donation-options {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 20px;
}

.donation-card {
    background: radial-gradient(circle, #222, #000);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 20px;
    width: 45%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transition: transform 0.2s;
}

.donation-card:hover {
    transform: scale(1.05);
}

.donation-card h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

.qr-code {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #DAA520;
}

.wallet-address {
    color: #FFD700;
    cursor: pointer;
    word-break: break-all;
    margin-bottom: 10px;
}

.wallet-address:hover {
    color: #DAA520;
}

.bank-card p {
    color: #FFD700;
    margin: 10px 0;
}

#bank-account {
    cursor: pointer;
}

#bank-account:hover {
    text-decoration: underline;
}

#copy-bank {
    padding: 8px 16px;
    background: linear-gradient(#FFD700, #DAA520);
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

#copy-bank:hover {
    background: linear-gradient(#DAA520, #FFD700);
}

/* Rating Modal */
#rating-modal .modal-content {
    background: radial-gradient(circle, #222, #000);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #FFD700;
    text-align: center;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

#rating-modal h2 {
    color: #FFD700;
}

#rating-modal p {
    color: #DAA520;
}

.stars {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.stars ion-icon {
    font-size: 32px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.stars ion-icon.filled {
    color: #FFD700;
}

#submit-rating {
    padding: 10px 20px;
    background: linear-gradient(#FFD700, #DAA520);
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-right: 10px;
}

#submit-rating:hover {
    background: linear-gradient(#DAA520, #FFD700);
}

#close-rating {
    padding: 10px 20px;
    background: linear-gradient(#dc3545, #bb2d3b);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#close-rating:hover {
    background: linear-gradient(#bb2d3b, #dc3545);
}

/* Responsiveness */
@media (max-width: 768px) {
    .donation-options {
        flex-direction: column;
        align-items: center;
    }

    .donation-card {
        width: 90%;
        margin-bottom: 20px;
    }

    .qr-code {
        width: 120px;
        height: 120px;
    }
}