﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

#deex-pricing-scope {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

#deex-pricing-scope .plan-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    #deex-pricing-scope .plan-card:hover {
        transform: translateY(-4px);
    }

#deex-pricing-scope .spinner {
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    width: 20px;
    height: 20px;
    animation: deex-spin 1s linear infinite;
}

@keyframes deex-spin {
    to {
        transform: rotate(360deg);
    }
}

#deex-pricing-scope h1, #deex-pricing-scope h2, #deex-pricing-scope h3 {
    margin: 0;
}

#deex-pricing-scope ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#deex-pricing-scope button {
    cursor: pointer;
    border: none;
}

.modal-overlay {
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}