﻿.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    /*font-family: "Silkscreen", sans-serif;*/
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: "Silkscreen", sans-serif;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #C2C2C2;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background-color: #303030;
    border: 1px solid #454545;
    border-radius: 12px;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #568CF4;
}

.pricing-card.popular {
    border-color: #A95BD6;
    box-shadow: 0 0 20px rgba(169, 91, 214, 0.2);
}

.pricing-card.popular:hover {
    border-color: #A95BD6;
    box-shadow: 0 10px 30px rgba(169, 91, 214, 0.4);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, #568CF4, #A95BD6);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 8px;
    font-family: 'Inter', sans-serif;
}

.pricing-card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #454545;
}

.package-name {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: "Silkscreen", sans-serif;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
}

.currency {
    font-size: 1.8rem;
    color: #C2C2C2;
    margin-right: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.amount {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
}

.package-description {
    color: #C2C2C2;
    margin: 0;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.pricing-card-body {
    padding: 2rem;
}

.credits-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: rgba(86, 140, 244, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(86, 140, 244, 0.2);
}

.credits-amount {
    display: block;
    font-size: 2rem;
    color: #568CF4;
    font-weight: 700;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.credits-label {
    color: #C2C2C2;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.features-list li svg {
    color: #4CAF50;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.pricing-card-footer {
    padding: 0 2rem 2rem;
}

.pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.pricing-btn-primary {
    background: linear-gradient(90deg, #568CF4, #A95BD6);
    color: white;
}

.pricing-btn-primary:hover {
    background: linear-gradient(90deg, #A95BD6, #568CF4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(169, 91, 214, 0.4);
}

.pricing-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #454545;
}

.pricing-btn-secondary:hover {
    background-color: #454545;
    border-color: #568CF4;
    transform: translateY(-2px);
}

.pricing-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.pricing-footer {
    text-align: center;
    padding: 2rem 0;
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C2C2C2;
    font-size: 0.9rem;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.pricing-note svg {
    margin-right: 0.5rem;
    color: #568CF4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-container {
        padding: 1rem 0.5rem;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card-header,
    .pricing-card-body,
    .pricing-card-footer {
        padding: 1.5rem;
    }
    
    .package-price .amount {
        font-size: 2.5rem;
    }
    
    .credits-amount {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .pricing-card-header,
    .pricing-card-body,
    .pricing-card-footer {
        padding: 1rem;
    }
    
    .package-price .amount {
        font-size: 2rem;
    }
}

/* Animation for loading state */
.pricing-btn:disabled {
    position: relative;
    overflow: hidden;
}

.pricing-btn:disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading-shine 1.5s infinite;
}

@keyframes loading-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
