.matched-pair {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 0.3s ease-out forwards;
    z-index: 1000;
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.match-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.match-players-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

@keyframes fadeInScale {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.match-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.match-player img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.match-player span {
    color: #fff;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.match-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.match-timer {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 15px rgba(0,0,0,1);
    font-family: 'Outfit', sans-serif;
}

.match-actions {
    display: flex;
    gap: 12px;
}

.match-btn {
    padding: 8px 20px;
    border-radius: 12px;
    border: none;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.match-btn-kiss {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.match-btn-skip {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.decision-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 50px;
    height: 50px;
    z-index: 60;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    display: flex;
    align-items: center;
    justify-content: center;
}

.decision-overlay.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.decision-overlay.is-kiss {
    background: url('/images/kiss.png') no-repeat center center;
    background-size: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.decision-overlay.is-skip {
    font-size: 3rem;
    font-weight: 900;
    color: #ef4444;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.decision-overlay.is-skip::after {
    content: "✖";
}

