.trandauhot_by_game {
    margin: 15px 0;
}
button.watch-now-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
}

button.watch-now-btn:hover .play-icon {
    color: yellow; /* Màu mới của biểu tượng khi hover */
}
.play-icon {
    fill: white;
    transition: fill 0.3s ease;
}

.play-icon:hover {
    fill: #88ff41;
}
.trandauhot1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

   .matches-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 10px;
}
.controls {
    display: flex;gap:5px;align-items: center;
}
/* Ẩn thanh cuộn */
.matches-container::-webkit-scrollbar {
    display: none;  /* Ẩn thanh cuộn */
}

.matches-container {
    -ms-overflow-style: none;  /* Ẩn thanh cuộn trên IE và Edge */
    scrollbar-width: none;      /* Ẩn thanh cuộn trên Firefox */
}
.match-card {
    flex: 0 0 auto;
    width: 26%;
    scroll-snap-align: start;
    border: 1px solid #24fe417d;
    border-radius: 8px;
    padding: 10px;
    background: #24263a;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

    .controls button {
    background-color: #24fe41;
    color: #14142b;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    line-height: normal;
    margin: 0;
    min-height: 0;
    padding: 0 5px;
    height: 30px;
}

    .controls button:hover {
    background-color: #14142b;
    border: 1px solid #24fe41;
    color: #24fe41;
}
.trandauhot {
            color: #fff;
        }
.match-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
       
.tournament-info {
    width: 80%;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  font-size:14px;
}
 .match-logo img {
    width: 10%;
    height: auto;
    border: 0px !important;
}
.match-info {
    display: flex;
    align-items: center;
}

.match-status {
    font-weight: bold;
    color: #24fe41;
}

/* Teams section */
.match-teams {
    display: flex;
    align-items: center;
    width: 40%;
    flex-direction: column;
    border: 1px solid green;
    border-radius: 8px;
    height: 110px;
    justify-content: center;
    background: #14142b;
}
.match-teams.nguoc {
    flex-direction: column-reverse;
}

/* Style for team 1 */
.team1 {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.cotgiua {
    text-align: center;
    width: 20%;
}
.match-teams img {
    width: 50px;
    height: 50px;
    border: 0px !important;
}

.tournament-name {
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}
span.best-of {
    text-transform: uppercase;
}
 .team-name {
    font-size: 12px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

/* Odds style */
.odds {
    font-weight: bold;
    color: #fef924ba;
}

/* Match score */
.match-score {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

/* Style for team 2 */
.team2 {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
}

.team2 .team-name {
    color: #fff;
}
@media screen and (max-width: 768px) {
    .match-card {
        width: 100%;
        display: flex;
        gap: 5px;
        flex-direction: column;
    }
    .match-teams {display: flex;
    justify-content: space-around;}

}