.matches-content {
    display: flex;
    flex-direction: row;
    align-items: center; 
    width: 100%;
    margin-top: 50px;
}

.title {
    text-align: left;
    width: 100%;
}

.matches-container {
    display: flex;
    flex-direction: row; 
    align-items: center;    
    gap: 20px;             
    flex-wrap: wrap; 
}

.matches-box {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    width: 300px;
    height: 300px; 
    background-color: #e0dfdf; 
    padding: 10px; 
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1); 
    transition: transform 0.2s, box-shadow 0.2s;
}

.matches-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.matches-box h2 {
    margin: 0;
    font-size: 22px; 
}

.matches-box p.matches {
    margin: 0;
    align-self: flex-start; 
    font-size: 16px;
    line-height: 1.4;
}

.matches-box .buybutton {
    align-self: flex-end;   
    margin-top: 15px;
    background-color: #527244; 
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-weight: bold;
    transition: background-color 0.2s;
}

.matches-box .buybutton:hover {
    background-color: #435733; 
}