/* Reseller Pricing Tier Styles */
.reseller-pricing-tiers {
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
}

.pricing-header {
    text-align: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: block;
    width: 100%;
}

.pricing-header:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60%;
    height: 3px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgba(255,255,255,0), #FFD700, rgba(255,255,255,0));
}

.pricing-tier-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 25px;
}

.pricing-tier {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 25px;
    width: calc(25% - 20px);
    min-width: 150px;
    margin: 10px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.pricing-tier:nth-child(1) { animation-delay: 0.1s; }
.pricing-tier:nth-child(2) { animation-delay: 0.2s; }
.pricing-tier:nth-child(3) { animation-delay: 0.3s; }
.pricing-tier:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.tier-quantity {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    background: linear-gradient(to right, #ffffff, #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shimmer 2s infinite linear;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% {background-position: -100% 0;}
    100% {background-position: 200% 0;}
}

.tier-label {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tier-price {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    margin-top: 5px;
}

.per-code {
    font-size: 14px;
    opacity: 0.7;
    font-weight: normal;
}

.tier-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #000;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.best-value {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.08);
}

/* Responsive styles */
@media (max-width: 768px) {
    .pricing-tier-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-tier {
        width: 100%;
        max-width: 280px;
        margin: 10px 0;
    }
}
