/* Sports Match-up Block Styles */
.sports-matchup {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sports-matchup__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 120px;
    background: var(--sports-matchup-card-bg, #ffffff);
    border-radius: 30px;
    padding: 80px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Team Sections */
.sports-matchup__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 2;
}

/* Team Icons */
.sports-matchup__team-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.sports-matchup__team-icon--team1 {
    background-color: var(--team1-color, #E50000);
}

.sports-matchup__team-icon--team2 {
    background-color: var(--team2-color, #A07828);
}

/* Team Info Container */
.sports-matchup__team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Team Names */
.sports-matchup__team-name {
    font-size: 35px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.32px;
    margin-bottom: 6px;
}


/* Team Records */
.sports-matchup__team-record {
    font-size: 26px;
    color: #000000;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.32px;
    font-weight: 300;
}

.sports-matchup__team--left .sports-matchup__team-record {
    text-align: left;
}

.sports-matchup__team--right .sports-matchup__team-record {
    text-align: right;
}

/* Center Section */
.sports-matchup__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

/* VS Text */
.sports-matchup__vs {
    font-size: 92px;
    font-weight: bold;
    color: #99A1AF;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Game Status Text */
.sports-matchup__game-status-desktop {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Betting Odds */
.sports-matchup__odds-desktop {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.sports-matchup__odds-box {
    background-color: #F9FAFB;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.32px;
    color: #000000;
    gap: 8px;
}

.sports-matchup__odds-label {
    font-size: 20px;
    font-weight: 300;
}

.sports-matchup__odds-value {
    font-size: 20px;
    font-weight: bold;
}

.sports-matchup__odds-mobile, .sports-matchup__game-status-mobile {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sports-matchup { 
        padding: 16px;
    }
    
    .sports-matchup__card {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }
    
    .sports-matchup__team {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        column-gap: 16px;
        justify-content: center;
    }

    .sports-matchup__team-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: auto;
    }

    
    .sports-matchup__game-status-desktop {
        display: none;
    }
    
    .sports-matchup__vs {
        font-size: 32px;
    }
    
    .sports-matchup__odds-desktop {
        display: none;
    }

    .sports-matchup__odds-mobile {
        display: flex;
        gap: 8px;
        width: 100%;
        flex-direction: column;
    }
    
    .sports-matchup__game-status-mobile {
        display: block;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        color: #000000;
        margin-bottom: 16px;
        text-transform: uppercase;
    }
    
    .sports-matchup__team-icon {
        width: 100px;
        height: 100px;
        font-size: 36px;
        margin-bottom: 12px;
        padding: 8px;
    }
    
    .sports-matchup__team-name {
        font-size: 18px;
    }
    
    .sports-matchup__team-record {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .sports-matchup {
        padding: 12px;
    }
    
    .sports-matchup__card {
        padding: 16px;
        gap: 16px;
    }

    .sports-matchup__team {
        justify-content: flex-start;
    }
    
    .sports-matchup__team-icon {
        width: 70px;
        height: 70px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    

    .sports-matchup__odds-label,
    .sports-matchup__odds-value {
        font-size: 16px;
    }
}
