/* Start custom CSS for html, class: .elementor-element-53b1bcf *//* =====================================
   ROOT COLORS
===================================== */
:root {
    --primary-green: #1fef18;
    --green-dark: #14c910;
    --green-glow: rgba(31,239,24,0.6);
    --bitcoin-orange: #f7931a;
    --bitcoin-dark: #e68212;
}

/* =====================================
   SIMPLE BLACK BACKGROUND
===================================== */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: #000;   /* 🔥 pure black */
}

/* =====================================
   CONTAINER (4 IN ONE LINE)
===================================== */
.pricing-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: auto;
}

/* =====================================
   CARD
===================================== */
.pricing-card {
    flex: 1;
    max-width: 280px;
    min-width: 250px;
    padding: 40px 30px;
    border-radius: 24px;
    background: #111; /* dark card */
    border: 1px solid rgba(31,239,24,0.2);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 30px var(--green-glow);
}

/* =====================================
   POPULAR PLAN
===================================== */
.pricing-card.popular {
    background: linear-gradient(135deg, #111, #1fef18);
    box-shadow: 0 0 40px var(--green-glow);
    transform: scale(1.05);
    border: none;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-card.popular::after {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1fef18;
    color: #000;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

/* =====================================
   PRICE
===================================== */
.price {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.price span {
    font-size: 18px;
    vertical-align: super;
}

/* =====================================
   FEATURES
===================================== */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.pricing-card li {
    padding: 10px 0;
    font-size: 14px;
    opacity: 0.9;
}

/* =====================================
   BUTTONS
===================================== */
.pricing-card .btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 15px;
}

/* Space between buttons */
.pricing-card .btn + .btn {
    margin-top: 22px;
}

/* Credit Card */
.btn-card {
    background: var(--primary-green);
    color: #000;
}

.btn-card:hover {
    background: var(--green-dark);
}

/* Crypto */
.btn-crypto {
    background: var(--bitcoin-orange);
    color: #000;
    box-shadow: 0 0 15px rgba(247,147,26,0.4);
}

.btn-crypto:hover {
    background: var(--bitcoin-dark);
    box-shadow: 0 0 25px rgba(247,147,26,0.7);
    transform: translateY(-3px);
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 1200px) {
    .pricing-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 900px) {
    .pricing-card {
        flex: 1 1 45%;
        max-width: 350px;
    }

    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 600px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 90%;
    }
}

/* ===============================
   FIX CONTENT SWITCHER OVERRIDE
=================================*/
.elementor-widget-container,
.elementor-tabs-content-wrapper,
.elementor-tab-content {
    background: transparent !important;
}

.pricing-section {
    background: #000 !important;
    color: #fff !important;
}

.pricing-section,
.pricing-section * {
    font-family: 'Inter', sans-serif !important;
}/* End custom CSS */