:root {
    --mtsud-bg-1: #33581a;
    --mtsud-bg-2: #32641a;
    --mtsud-clr-1: rgba(255, 255, 255, 1);
    --mtsud-clr-2: rgba(255, 255, 255, 0.65);
    --mtsud-brd-1: rgba(255, 255, 255, 0.18);
    --dot-ripple-1: rgba(77, 170, 87, 1);
    --dot-ripple-2: rgba(77, 170, 87, 0.9);
    --dot-ripple-3: rgba(77, 170, 87, 0);
}

* {
    margin: 0;
    padding: 0;
    font-family: 'inter';
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mtsud-wrp {
    width: 100%;
    float: left;
    background: url(https://cdn.ndtv.com/sports_ndtvin/fifaworldcup2026/fifa-bg-dark-26.webp) center center no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    padding: 10px 5px 10px 10px;
}

.mtsud-wrp::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    z-index: 0;
}

.mtsud-inr {
    width: 100%;
    position: relative;
    z-index: 2;
}

.mtsud-head {
    position: relative;
    margin-bottom: 10px;
}

.mtsud-head_inr {
    display: inline-flex;
    align-items: center;
}

.mtsud-ttl_wrp {
    position: relative;
    padding: 20px 15px 20px 60px;
}

.mtsud-head_title {
    display: flex;
    font-size: 11px;
    font-weight: 500;
    color: var(--mtsud-clr-1);
    margin: 0;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.mtsud-head_icn {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-left: 5px;
}

.mtsud-head_icn svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ripple-dot {
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--dot-ripple-1);
    margin-right: 5px;
}

.ripple-dot:after {
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    -webkit-animation: circle-pulse 2s infinite;
    animation: circle-pulse 2s infinite;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 var(--dot-ripple-1);
    box-shadow: 0 0 0 0 var(--dot-ripple-1);
}

@keyframes circle-pulse {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 var(--dot-ripple-2);
        box-shadow: 0 0 0 0 var(--dot-ripple-2);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 8px var(--dot-ripple-3);
        box-shadow: 0 0 0 8px var(--dot-ripple-3);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-box-shadow: 0 0 0 0 var(--dot-ripple-3);
        box-shadow: 0 0 0 0 var(--dot-ripple-3);
    }
}

.mtsud-body {
    height: 390px;
    overflow: hidden;
    scrollbar-gutter: stable;
}

.mtsud-match_list {
    margin-bottom: 20px;
    padding: 0 5px;
    position: relative;
}


.mtsud-match_item-wrp {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 10px;
}


.mtsud-match_item {
    background-color: rgba(0, 0, 0, .07);
    border-radius: 10px;
    border: solid 1px var(--mtsud-brd-1);
    padding: 10px;
    display: flex;
    width: 100%;
    flex-direction: column;

}

.mtsud-match_item:not(:first-child) {
    margin-top: 10px;
}

.mtsud-stage {
    text-align: center;
    color: var(--mtsud-clr-2);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
}

.mtsud-match-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mtsud-mid_info {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: calc(100% + 160px);
    /* margin-bottom: auto; */
}

.mtsud-mid_top {
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
}

.mtsud-mid_btm {
    margin-top: auto;
    display: flex;
    align-items: center;
}

.mtsud-team {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mtsud-team img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.mtsud-team_nam {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    line-height: 1;
    color: var(--mtsud-clr-2);
    text-align: center;
}

.mtsud-score {
    width: 60px;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: var(--mtsud-clr-1);
}

.mtsud-upcoming .mtsud-score,
.mtsud-recent .mtsud-score {
    font-size: 14px;
    font-weight: 400;
    color: var(--mtsud-clr-2);
}

.mtsud-status {
    flex: 1;
    white-space: nowrap;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    color: var(--mtsud-clr-1);
}

.mtsud-upcoming .mtsud-status,
.mtsud-recent .mtsud-status {
    font-size: 18px;
}

.mtsud-loser {
    color: var(--mtsud-clr-2);
}

.mtsud-lodmor {
    width: 100%;
    padding: 40px;
    background: linear-gradient(0deg, rgba(31, 40, 28, 1) 0%, rgba(31, 40, 28, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.mtsud-lodmor_btn {
    position: absolute;
    bottom: 20px;
    display: inline-block;
    border: 0;
    background-color: #3d4838;
    padding: 12px 20px;
    border-radius: 60px;
    color: var(--mtsud-clr-1);
    font-size: 13px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}

#clickbtn {
    display: none;
}

#clickbtn:checked~.mtsud-inr .mtsud-lodmor {
    display: none;
}

#clickbtn:checked~.mtsud-inr .mtsud-body {
    overflow-y: auto;
}

.mtsud-body::-webkit-scrollbar {
    display: block;
    width: 5px;
}

.mtsud-body::-webkit-scrollbar-thumb {
    display: block;
    width: 5px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .25);

}

@media (max-width: 359px) {

    .mtsud-wrp {
        padding: 5px;
    }

    .mtsud-team img {
        width: 30px;
        height: 30px;
    }

    .mtsud-team_nam {
        font-size: 11px;
    }

    .mtsud-score {
        width: auto;
    }

    .mtsud-mid_top {
        height: 30px;
    }
}