:root {
    --pink: #F5516A;
    --pink-light: #ff8aa0;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.20);
}

.membership-wrapper {
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.membership-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--pink);
    margin-bottom: 35px;
}

.membership-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1300px;
}

/* CARD */
.plan-card {
    width: 330px;
    padding: 28px;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    position: relative;
    text-align: center;
    transition: 0.35s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 45px rgba(0,0,0,0.35);
}

/* RIBBON */
.ribbon {
    background: var(--pink);
    color: white;
    padding: 6px 16px;
    position: absolute;
    font-weight: bold;
    top: 14px;
    left: -20px;
    transform: rotate(-15deg);
    border-radius: 6px;
}

/* ICON */
.plan-icon {
    font-size: 48px;
}

/* TITLE */
.plan-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--pink);
}

/* PRICE */
.price {
    font-size: 30px;
    margin: 12px 0;
    color: var(--white);
}

.price-value {
    color: var(--pink);
    font-weight: 800;
}

/* FEATURES */
.features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #161515d9;
    font-size: 15px;
}

.features li.ok span:last-child {
    color: var(--pink);
}

/* BUTTON */
.join-btn {
    width: 100%;
    padding: 14px 0;
    background: var(--pink);
    color: white;
    border: none;
    margin-top: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(245, 81, 106, 0.5);
}

.join-btn:hover {
    background: var(--pink-light);
    box-shadow: 0 0 22px rgba(245, 81, 106, 0.7);
}

/* PINK GLOW */
.glow-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--pink);
    opacity: 0.35;
    filter: blur(120px);
    bottom: -30px;
    right: -30px;
    border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .plan-card {
        width: 90%;
        max-width: 380px;
    }
}






/* -----------------------------------------
   PASTEL GRADIENT 3D CARD STYLES (FINAL)
------------------------------------------ */

/* Pink Gradient Card */
.plan-card:nth-child(3) {
    background: linear-gradient(114deg, #98183c, #ffdbe3);
    border-color: rgba(255, 135, 164, 0.5);
    box-shadow: 0 20px 40px rgba(255, 140, 170, 0.45);
    animation: floatCard 4s ease-in-out infinite;
}
.plan-card:nth-child(3) .glow-circle {
    background: #ff8fb1;
}

/* Blue Gradient Card */
.plan-card:nth-child(2) {
    background: linear-gradient(114deg, #2c60ef, #b4b9c8);
    border-color: rgba(155, 180, 255, 0.5);
    box-shadow: 0 20px 40px rgba(155, 180, 255, 0.45);
    animation: floatCard 4s ease-in-out infinite 0.5s;
}
.plan-card:nth-child(2) .glow-circle {
    background: #9db1ff;
}

/* Yellow Gradient Card */
.plan-card:nth-child(1) {
    background: linear-gradient(114deg, #e4b10b, #ffdb80);
    border-color: rgba(255, 210, 120, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 120, 0.45);
    animation: floatCard 4s ease-in-out infinite 1s;
}
.plan-card:nth-child(1) .glow-circle {
    background: #ffd97a;
}

/* White text everywhere */
.plan-card * {
    color: #000000 !important;
}

/* White icons */
.plan-card svg path {
    stroke: #ffffff !important;
}

/* 3D LOOK (depth + tilt hover) */
.plan-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    border-radius: 22px;
    padding: 32px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.plan-card:hover {
    transform: translateY(-12px) rotateX(10deg) rotateY(-10deg) scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* Glow Behind Card */
.glow-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -45px;
    right: -45px;
    filter: blur(120px);
    opacity: 0.7;
    border-radius: 50%;
}

/* Floating 3D Animation */
@keyframes floatCard {
    0%   { transform: translateY(0px) scale(1); }
    50%  { transform: translateY(-10px) scale(1.015); }
    100% { transform: translateY(0px) scale(1); }
}









/* ---------------------------------------------
   ULTRA LIGHT GLASSMORPHIC PASTEL CARDS
---------------------------------------------- */

.plan-card {
    background: rgba(255, 255, 255, 0.18);  /* Base glass layer */
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 32px;
    transition: 0.4s ease;
    position: relative;
}


.glass-card {
    width: 280px;
    padding: 28px;
    border-radius: 24px;
    color: #fff;
    font-weight: 600;

    /* GLASS EFFECT */
    background: rgba(255, 255, 255, 0.15); /* Base glass */
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    /* GLASS BORDER */
    border: 1.5px solid rgba(255, 255, 255, 0.35);

    /* LIGHT GLOW */
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.08),
        0 0 55px rgba(255, 255, 255, 0.45);

    /* 3D FEEL */
    transform: perspective(900px) rotateX(3deg);
    transition: 0.4s ease;
}

/* Hover = Strong 3D Glass Lift */
.glass-card:hover {
    transform: perspective(900px) rotateX(0deg) scale(1.06);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.10),
        0 0 75px rgba(255, 255, 255, 0.65);
}
