/* ===== MATCH JOURNEY STYLES ===== */

.match-chain {
    display: grid;
    gap: 24px;
    margin-top: 32px;
    padding: 20px 0;
}

.match-stage {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #E0E0E0;
}

.match-stage.active {
    border-left-color: #00BDBD;
    background: linear-gradient(135deg, rgba(0, 189, 189, 0.05) 0%, white 100%);
}

.match-stage.completed {
    border-left-color: #00BC8C;
    background: linear-gradient(135deg, rgba(0, 188, 140, 0.05) 0%, white 100%);
}

.match-stage.locked {
    opacity: 0.6;
    border-left-color: #BDBDBD;
    background: #F5F5F5;
}

.match-stage:hover:not(.locked) {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stage-icon {
    font-size: 3em;
    margin-bottom: 16px;
    display: block;
    text-align: center;
}

.match-stage h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 12px;
    font-family: 'Bree Serif', serif;
}

.match-stage p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.match-stage .btn-secondary {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1em;
    background: linear-gradient(135deg, #00BDBD 0%, #00A5A5 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Bree Serif', serif;
    transition: all 0.3s ease;
    font-weight: 600;
}

.match-stage .btn-secondary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 189, 189, 0.3);
    background: linear-gradient(135deg, #00A5A5 0%, #008F8F 100%);
}

.match-stage .btn-secondary:disabled {
    background: #BDBDBD;
    cursor: not-allowed;
    opacity: 0.5;
}

.match-stage.completed .btn-secondary {
    background: linear-gradient(135deg, #00BC8C 0%, #00A67A 100%);
}

.match-stage.completed .btn-secondary:hover {
    background: linear-gradient(135deg, #00A67A 0%, #009068 100%);
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .match-chain {
        gap: 16px;
    }
    
    .match-stage {
        padding: 24px;
    }
    
    .stage-icon {
        font-size: 2.5em;
    }
    
    .match-stage h3 {
        font-size: 1.5em;
    }
    
    .match-stage p {
        font-size: 1em;
    }
}
