﻿.vip-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ce6121 100%);
    padding: 60px 0;
    min-height: 100vh;
}

.pricing-tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.pricing-tabs {
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: inline-flex;
    border: 1px solid #ddd;
    flex-wrap: wrap;
    justify-content: center;
}

    .pricing-tabs .nav-link {
        color: #1a1d20;
        font-weight: 800;
        border-radius: 50px;
        padding: 10px 20px;
        transition: all 0.3s;
        border: none;
        font-size: 0.9rem;
        cursor: pointer;
        background: transparent;
    }

        .pricing-tabs .nav-link:hover {
            background: #f8f9fa;
        }

        .pricing-tabs .nav-link.active {
            background: #ffcc00;
            color: #1a1d20;
            box-shadow: 0 2px 8px rgba(255, 204, 0, 0.4);
        }

.nav-link.tab-vip.active {
    background: #1a1d20 !important;
    color: #ffcc00 !important;
    box-shadow: 0 2px 8px rgba(26, 29, 32, 0.4) !important;
}

.nav-link.tab-gold.active {
    background: #dc3545 !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4) !important;
}

.nav-link.tab-premium.active {
    background: #198754 !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.4) !important;
}

.plan-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

    .plan-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    }

.plan-header {
    padding: 20px;
    text-align: center;
    color: white;
}

.plan-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: #1a1d20;
    margin: 15px 0;
    white-space: nowrap;
}

    .plan-price span {
        font-size: 0.85rem;
        color: #6c757d;
        font-weight: 700;
    }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

    .feature-list li {
        padding: 10px 0;
        border-bottom: 1px dashed #eee;
        color: #495057;
        font-weight: 600;
        font-size: 0.85rem;
    }

        .feature-list li i {
            margin-right: 8px;
            font-size: 1rem;
        }

.btn-buy {
    font-weight: 800;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 0 0 18px 18px;
    transition: 0.3s;
    text-transform: uppercase;
}

.tier-vip {
    border-top: 5px solid #1a1d20;
}

    .tier-vip:hover {
        border-color: #1a1d20;
    }

    .tier-vip .plan-header {
        background: #1a1d20;
    }

    .tier-vip .feature-list li i.bi-check-circle-fill {
        color: #1a1d20;
    }

    .tier-vip .btn-buy {
        background: #1a1d20;
        color: #ffcc00;
    }

        .tier-vip .btn-buy:hover {
            background: #ffcc00;
            color: #1a1d20;
        }

.tier-gold {
    border-top: 5px solid #dc3545;
    border-width: 3px;
    border-color: #dc3545;
}

    .tier-gold:hover {
        border-color: #dc3545;
    }

    .tier-gold .plan-header {
        background: #dc3545;
    }

    .tier-gold .feature-list li i.bi-check-circle-fill {
        color: #dc3545;
    }

    .tier-gold .btn-buy {
        background: #dc3545;
        color: white;
    }

        .tier-gold .btn-buy:hover {
            background: #b02a37;
        }

.tier-premium {
    border-top: 5px solid #198754;
}

    .tier-premium:hover {
        border-color: #198754;
    }

    .tier-premium .plan-header {
        background: #198754;
    }

    .tier-premium .feature-list li i.bi-check-circle-fill {
        color: #198754;
    }

    .tier-premium .btn-buy {
        background: #198754;
        color: white;
    }

        .tier-premium .btn-buy:hover {
            background: #146c43;
        }

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #1a1d20;
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.70rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
