/* ==========================================================================
   Game Matchup Block Styles
   ========================================================================== */

.matchup-block-content {
    padding: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.matchup-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    color: var(--color-text-muted);
    gap: 12px;
}

.matchup-placeholder .placeholder-icon {
    font-size: 2.5rem;
}

/* View Mode */
.matchup-view {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
    gap: 16px;
}

.matchup-status {
    text-align: center;
}

.matchup-status .status-final {
    background: var(--color-success);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.matchup-status .status-date {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.matchup-status .status-upcoming {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Teams */
.matchup-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex: 1;
}

.matchup-teams .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    padding: 12px;
    border-radius: var(--radius-md);
    background: rgba(var(--color-bg-card-rgb), 0.3);
    transition: all 0.3s ease;
}

.matchup-teams .team.winner {
    background: rgba(var(--color-success-rgb), 0.15);
    border: 1px solid rgba(var(--color-success-rgb), 0.3);
}

.matchup-teams .team-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.matchup-teams .team-logo-placeholder {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--color-bg-card-rgb), 0.5);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.matchup-teams .team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.matchup-teams .team-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.matchup-teams .team-record {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.matchup-teams .team-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.matchup-teams .team.winner .team-score {
    color: var(--color-success);
}

.matchup-vs {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

/* Betting Line */
.matchup-betting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px;
    background: rgba(var(--color-bg-card-rgb), 0.3);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

.matchup-betting .betting-label {
    color: var(--color-text-muted);
}

.matchup-betting .betting-value {
    color: var(--color-primary);
    font-weight: 600;
}

/* Editor */
.matchup-editor {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.matchup-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
}

.matchup-summary .vs {
    color: var(--color-text-muted);
    font-weight: 400;
}

.config-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.config-scores {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 400px) {
    .matchup-teams {
        flex-direction: column;
    }
    
    .matchup-vs {
        padding: 8px 0;
    }
}

