.next-match-card {
    max-width: 450px;
    margin: 20px auto;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.match-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 20px;
    text-align: center;
}

.match-header h3 {
    margin: 0;
    color: #bdc3c7;
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 600;
}

.match-content {
    padding: 25px;
    background: white;
}

.match-date {
    text-align: center;
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    font-weight: 500;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 15px;
}

.team {
    flex: 1;
    text-align: center;
}

.team-flag {
    font-size: 48px;
    margin-bottom: 8px;
    line-height: 1;
}

.team-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.team-odds {
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
}

.match-vs {
    font-size: 14px;
    color: #95a5a6;
    font-weight: 600;
    flex-shrink: 0;
}

.draw-odds {
    text-align: center;
    padding: 12px;
    background: #ecf0f1;
    border-radius: 8px;
    margin-bottom: 20px;
}

.draw-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-right: 8px;
}

.draw-value {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.bet-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 90%;
    padding: 16px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.bet-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 204, 113, 0.4);
}

.bookmaker-logo {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}


@media (max-width: 480px) {
    .next-match-card {
        margin: 20px 10px;
    }

    .team-flag {
        font-size: 36px;
    }

    .team-name {
        font-size: 14px;
    }

    .team-odds {
        font-size: 18px;
    }

    .match-content {
        padding: 20px 15px;
    }
}