/* Pricing Page Specific Styles Only */

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h1 {
    font-size: 3em;
    color: #8B0000;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.tab-button {
    padding: 15px 30px;
    background: linear-gradient(45deg, #2a0505, #4a0000);
    color: white;
    border: 2px solid #8B0000;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2em;
    font-weight: bold;
}

.tab-button.active {
    background: linear-gradient(45deg, #8B0000, #a00000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

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

.license-pricing {
    background: linear-gradient(135deg, rgba(20, 0, 0, 0.9), rgba(40, 0, 0, 0.8));
    border: 2px solid #4a0000;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slider-container {
    margin: 30px 0;
    text-align: center;
}

.slider-label {
    font-size: 1.3em;
    color: #e1e1e1;
    margin-bottom: 20px;
    font-weight: bold;
}

.slider-wrapper {
    position: relative;
    margin: 20px 0;
}

.price-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #2a0505, #8B0000, #a00000);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.price-slider::-webkit-slider-thumb {
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8B0000, #ff4444);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 15px rgba(139, 0, 0, 0.5);
}

.price-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8B0000, #ff4444);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slider-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9em;
    color: #ccc;
}

.price-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.price-card {
    background: linear-gradient(135deg, rgba(30, 0, 0, 0.9), rgba(50, 0, 0, 0.8));
    border: 2px solid #6a0000;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.price-card:hover::before {
    left: 100%;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
    border-color: #8B0000;
}

.payment-method {
    font-size: 1.1em;
    color: #ff6666;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 2em;
    color: #8B0000;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.captcha-pricing {
    background: linear-gradient(135deg, rgba(0, 20, 0, 0.9), rgba(0, 40, 0, 0.8));
    border: 2px solid #004a00;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.captcha-pricing .price-card {
    background: linear-gradient(135deg, rgba(0, 30, 0, 0.9), rgba(0, 50, 0, 0.8));
    border-color: #006a00;
}

.captcha-pricing .price-card:hover {
    border-color: #00aa00;
    box-shadow: 0 10px 25px rgba(0, 170, 0, 0.3);
}

.captcha-pricing .price-amount {
    color: #00aa00;
}

.captcha-pricing .payment-method {
    color: #66ff66;
}

.rabat-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rabat-card {
    background: linear-gradient(135deg, rgba(40, 20, 0, 0.9), rgba(60, 30, 0, 0.8));
    border: 2px solid #8B4500;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.rabat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 0, 0.3);
}

.rabat-card h3 {
    color: #ffaa00;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.discount-badge {
    background: linear-gradient(45deg, #ff6600, #ffaa00);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
    margin-bottom: 15px;
    display: inline-block;
}

.purchase-info {
    background: linear-gradient(135deg, rgba(0, 0, 40, 0.9), rgba(0, 0, 60, 0.8));
    border: 2px solid #0066cc;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.purchase-info h2 {
    color: #66aaff;
    margin-bottom: 20px;
}

.discord-link {
    display: inline-block;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.discord-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

/* Mobile Responsiveness for Pricing Page */
@media (max-width: 768px) {
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 200px;
    }

    .price-display {
        grid-template-columns: 1fr;
    }

    .pricing-header h1 {
        font-size: 2em;
    }

    .license-pricing, .captcha-pricing {
        padding: 20px;
    }
    
    .pricing-container {
        padding: 20px 15px;
    }
    
    .rabat-section {
        grid-template-columns: 1fr;
    }
    
    .slider-label {
        font-size: 1.1em;
    }
    
    .price-amount {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .pricing-header h1 {
        font-size: 1.8em;
    }
    
    .tab-button {
        width: 180px;
        font-size: 1em;
        padding: 12px 20px;
    }
    
    .license-pricing, .captcha-pricing {
        padding: 15px;
    }
    
    .price-card {
        padding: 20px;
    }
    
    .rabat-card {
        padding: 25px;
    }
    
    .purchase-info {
        padding: 25px 20px;
    }
}