/* Matchmaker Wizard Premium Styles */

.matchmaker-wizard {
    min-height: 80vh;
}

.step-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    display: none;
}

.step-card.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.glass-pill {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.glass-pill.selected {
    background: rgba(var(--primary-rgb), 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2);
}

.match-score-badge {
    background: linear-gradient(135deg, var(--primary-color), #2dd4bf);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.reason-pulse {
    animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Custom Checkbox Hidden but accessible */
.step-option-check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.step-option-label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #1e293b;
    border: 2px solid #334155;
    transition: all 0.2s ease;
}

.step-option-check:checked + .step-option-label {
    border-color: #047756;
    background: rgba(4, 119, 86, 0.1);
}

.progress-bar-inner {
    transition: width 0.5s ease-in-out;
}
