/* Payments Page Specific Styles */

.payments-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 128, 0.1) 100%);
    text-align: center;
}

.payments-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
    border-color: var(--secondary-color);
}

.payment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.payment-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 700;
}

.payment-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.payment-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.detail {
    text-align: center;
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
}

.payment-card img {
		display: block;
    width: 80px;
    height: 80px;
		margin: 0 auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.payment-tip {
    padding: 60px 0;
    background: rgba(26, 26, 46, 0.3);
}

.tip-card {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.tip-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 900;
}

.tip-content p {
    font-weight: 600;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .payments-hero h1 {
        font-size: 2rem;
    }
    
    .payment-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .tip-card {
        flex-direction: column;
        text-align: center;
    }
}
