.crypto-method {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin: 5px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.crypto-method:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.crypto-method i {
    font-size: 18px;
    color: var(--gold);
}

/* Specific crypto icon colors */
.fa-bitcoin {
    color: #f7931a !important;
}

.fa-ethereum {
    color: #627eea !important;
}

.fa-litecoin {
    color: #345d9d !important;
}

.fa-tether {
    color: #26a17b !important;
}

.fa-dogecoin {
    color: #c3a634 !important;
}

.fa-xrp {
    color: #23292f !important;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}
