/* =========================================================
   VUDEV - PRICING PAGE (GLASSMORPHISM & PREMIUM UI)
   ========================================================= */

/* Bao bọc toàn trang Chi Phí để tránh đụng độ với Home */
#pricing-page-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

/* 1. MÀU NỀN ẢO DIỆU (AMBIENT GLOW) DÀNH RIÊNG CHO PAGE NÀY */
#pricing-page-wrapper::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(14, 165, 233, 0.1) 40%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    animation: slowPulse 8s ease-in-out infinite alternate;
}

@keyframes slowPulse {
    0% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    100% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

[data-theme="light"] #pricing-page-wrapper::before {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, rgba(14, 165, 233, 0.05) 40%, transparent 70%);
}

/* Ghi đè CSS gốc để tạo độ mở không gian rộng lớn hơn */
#pricing-page-wrapper .pricing-section {
    padding-top: 40px; 
    z-index: 10;
}


