:root {
    --bg-dark: #030509;
    --card-bg: rgba(15, 23, 42, 0.4);
    --accent-cyan: #00f2ff;
    --accent-blue: #3b82f6;
    --accent-purple: #7c3aed;
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --border-glass: rgba(255, 255, 255, 0.08);
    --glow-shadow: 0 0 30px rgba(59, 130, 246, 0.2)
}

.bg-blobs {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .3
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
    top: -10%;
    left: -10%
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    bottom: -5%;
    right: -5%
}

.pricing-card {
    background: rgb(15 23 42 / .6);
    backdrop-filter: blur(16px);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 20px;
    padding: 50px 40px;
    transition: 0.4s ease;
    z-index: 1;
    width: 100%;
    max-width: 370px;
    margin: 0 auto
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgb(114 126 208 / 69%)
}

.label {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px
}

.package-title {
    font-size: 20px;
    color: var(--text-dim);
    font-family: 'Orbitron' !important
}

.price-value {
    font-size: 80px;
    font-weight: 800;
    background: linear-gradient(to bottom, #fff 40%, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.currency {
    font-size: 30px
}

.cta-btn {
    width: 100%;
    height: 55px;
    border-radius: 30px;
    border: none;
    background: #fff;
    transition: 0.3s ease;
    font-weight: 700;
    line-height: 1.5
}

.cta-btn:hover {
    background: #727ed0;
    box-shadow: 0 0 25px rgb(114 126 208 / 67%);
    color: #fff
}

.payment-text {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 20px
}

.features-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-bottom: 30px;
    display: block;
    font-family: 'Orbitron' !important
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden
}

.features-list::-webkit-scrollbar {
    width: 6px
}

.features-list::-webkit-scrollbar-track {
    background: #1e293b
}

.features-list::-webkit-scrollbar-thumb {
    background: #727ed0;
    border-radius: 10px
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 15px
}

.icon-circle {
    width: 28px;
    height: 28px;
    background: rgb(114 126 208 / 22%);
    border: 1px solid #727ed0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #727ed0;
    font-weight: 700
}

.feature-text p {
    color: var(--text-dim);
    font-size: 14px
}

.pricing-section {
    background-color: #000;
    color: #FFF;
    position: relative;
    padding: 200px 0px !important
}

.pricing-section .container {
    width: 100%
}

.features-container {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1
}

.price-container {
    margin-bottom: 10px
}