body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #0a0a1f;
    color: #fff;
}

.VpsZone {
    margin-top: 8rem;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-wrapper {
    position: relative;
    margin: 2rem auto;
    padding: 2rem 1rem;
    background: rgba(15, 10, 50, 0.25);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    box-shadow: 0 12px 36px rgba(130,70,255,0.2);
    max-width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
    z-index: 10;
}

.carousel-controls button {
    background: rgba(40, 20, 80, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    color: #fff;
    font-size: 1.6rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(130,70,255,0.3);
    transition: all 0.3s ease;
}

.carousel-controls button:hover {
    background: rgba(130,70,255,0.85);
    transform: scale(1.15);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    position: relative;
    flex-wrap: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    height: 350px;
}

.pricing-card {
    flex: 0 0 250px;
    background: rgba(25,20,40,0.35);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 26px rgba(123,92,255,0.15);
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
    opacity: 1;
    transform: scale(1);
    pointer-events: none;
    height: 320px;
}

.pricing-card.active {
    transform: scale(1.12) translateY(-5px);
    opacity: 1;
    pointer-events: all;
    z-index: 3;
    box-shadow: 0 28px 90px rgba(130,70,255,0.55);
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(130,70,255,0.5));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.pricing-card.prev {
    transform: scale(0.92);
    opacity: 0.65;
    pointer-events: none;
    z-index: 2;
    filter: brightness(0.85);
}

.pricing-card.next {
    transform: scale(0.92);
    opacity: 0.65;
    pointer-events: none;
    z-index: 2;
    filter: brightness(0.85);
}

.pricing-card.blurred {
    filter: blur(3px) brightness(0.6);
    pointer-events: none;
    opacity: 0.55;
    transition: all 0.5s ease;
}

.pricing-card.blurred .btn-primary.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: default;
}

.pricing-card h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.price {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.price span {
    font-weight: 400;
    font-size: 0.95rem;
    color: #ccc;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.features li {
    text-align: left;
    margin: 0.5rem 0;
    color: #d6ccff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.features li i {
    color: #a855f7;
    margin-right: 0.6rem;
}

.btn-primary {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.7rem 1.3rem;
    background: linear-gradient(135deg, #7b5cff, #5b21b6);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(130,70,255,0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9d4edd, #6d28d9);
    transform: translateY(-3px) scale(1.05);
}

.vps-questions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.vps-questions .question h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.cpu-btn {
    background: rgba(30,15,70,0.45);
    backdrop-filter: blur(10px);
    border: none;
    color: #fff;
    font-size: 1rem;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cpu-btn.active,
.cpu-btn:hover {
    background: rgba(130,70,255,0.85);
    transform: scale(1.05);
}

#budget-select {
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    border: none;
    background: rgba(30,15,70,0.45);
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .carousel-wrapper {
        max-width: 90%;
        height: 380px;
    }

    .carousel-controls button {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .pricing-grid {
        gap: 1.5rem;
        height: 380px;
    }
}

@media (max-width: 900px) {
    .carousel-wrapper {
        height: 400px;
    }

    .carousel-controls button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .pricing-card {
        min-height: 370px;
        height: 370px;
    }

    .pricing-grid {
        height: 420px;
    }
}

@media (max-width: 720px) {
    .carousel-wrapper {
        height: 420px;
    }

    .carousel-controls button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .pricing-card {
        min-height: 400px;
        height: 400px;
    }

    .pricing-grid {
        height: 480px;
    }
}

@media (max-width: 600px) {
    .carousel-wrapper {
        height: 440px;
    }

    .carousel-controls button {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .pricing-card {
        min-height: 400px;
        height: 400px;
    }

    .pricing-grid {
        height: 520px;
    }
}

@media(max-width: 900px){
    .VpsZone {
        margin-top: 3rem;
        margin-bottom: 2rem;
    }
}

@media(max-width: 600px){
    .VpsZone {
        margin-top: 5rem;
        margin-bottom: 2rem;
    }

    .vps-questions {
        display: block;
    }

    .question {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 50px;
    }

    #budget-select {
        width: 100%;
        max-width: 300px;
        padding: 8px;
        font-size: 16px;
        margin-top: 10px;
    }

    .cpu-btn {
        width: 80%;
        margin-bottom: 10px;
    }
}
