
.payment-section {
    margin-bottom: 30px;
}

.section-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.payment-instructions {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-info {
    background: linear-gradient(135deg, #ffffff34 0%, #ffffff1e 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #fff;
}

.card-holder {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
}

.card-number {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.copy-btn {
    font-family: 'Vazirmatn';
    background: #fff;
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 10px 20px;
    color: #2c2c2c;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.copy-icon {
    font-size: 16px;
}

/* Subscriptions Section */
.subscriptions-section {
    margin-bottom: 30px;
}

.card-subscription-option {
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;

}

.option-details h3 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.option-details-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.monthly-price {
    display: flex;
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
}

.popular-badge {
    background: #0066cc;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 10px;
    max-height: 150px;
    display: inline-block;
}

.option-price {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

/* Receipt Section */
.receipt-section {
    text-align: center;
}

.receipt-text {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

.support-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.support-btn {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 15px 25px;
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 200px;
}

.support-btn:hover {
    background: #e9ecef21;
}

/* Responsive Design */
@media (max-width: 600px) {
    .support-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .support-btn {
        max-width: 100%;
        width: 100%;
    }
    
    .card-number {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }

    .option-details h3{
        font-size: 16px;
    }

    .option-price{
        font-size: 14px;
    }
    .popular-badge{
        font-size: 10px;
    }
}

/* Animation for copy button */
@keyframes copySuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.copy-success {
    animation: copySuccess 0.3s ease;
} 