#mc-3d-root {
    --mc-green: #22c55e;
    --mc-dark: #0f172a;
    --mc-card: #1e293b;
    --mc-text: #f8fafc;
    background-color: var(--mc-dark);
    font-family: 'Inter', sans-serif;
    color: var(--mc-text);
    padding: 80px 0;
    overflow: hidden;
}

.mc-header { text-align: center; margin-bottom: 20px; }
.mc-header h1 { font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 15px; color: #fff; }

.mc-toggle-wrap {
    display: flex; align-items: center; justify-content: center;
    gap: 15px; font-weight: 600;
}

.mc-switch { width: 50px; height: 26px; position: relative; display: inline-block; }
.mc-switch input { opacity: 0; width: 0; height: 0; }

.mc-slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background: #334155; transition: .4s; border-radius: 34px;
}

.mc-slider:before {
    position: absolute; content: ""; height: 18px; width: 18px; left: 4px; bottom: 4px;
    background: white; transition: .4s; border-radius: 50%;
}

.mc-switch input:checked + .mc-slider { background: var(--mc-green); }
.mc-switch input:checked + .mc-slider:before { transform: translateX(24px); }

.mc-stage {
    position: relative; width: 100%; height: 600px;
    display: flex; justify-content: center; align-items: center;
    perspective: 1200px; 
    cursor: default; /* Changed from grab */
    touch-action: pan-y;
    user-select: none;
}

.mc-carousel {
    position: relative; width: 320px; height: 520px;
    transform-style: preserve-3d;
}

.mc-card {
    position: absolute; width: 100%; height: 100%;
    background: var(--mc-card); border: 2px solid #334155;
    border-radius: 28px; padding: 35px;
    display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    backface-visibility: hidden;
    cursor: pointer; /* Signal that it is clickable */
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}

/* Hover Effect: Lift and Glow */
.mc-card:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 15px rgba(34, 197, 94, 0.2);
}

.mc-icon { width: 80px; height: 80px; margin-bottom: 20px; pointer-events: none; }
.mc-price { font-size: 2.5rem; font-weight: 800; color: var(--mc-green); margin-bottom: 15px; }
.mc-price small { font-size: 1rem; color: #94a3b8; }

.mc-features { width: 100%; border-top: 1px solid #334155; padding-top: 25px; margin-bottom: 20px; }
.f-row { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 12px; }

.mc-btn {
    width: 100%; background: var(--mc-green); color: #052e16;
    padding: 16px; border-radius: 14px; text-decoration: none;
    font-weight: 800; text-align: center; margin-top: auto;
    transition: background 0.2s;
}

.mc-btn:hover {
    background: #16a34a;
}

.hero {
    position: relative; width: 100%; height: 50vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: #000;
}

.hero-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    filter: brightness(0.5);
}

.hero-content { position: relative; z-index: 2; text-align: center; color: white; }