@font-face {
    font-family: "LalSabuj";
    src: url("../fonts/Lal-Sabuj.ttf") format("truetype");
    font-weight: normal;
}
@font-face {
    font-family: "Clash";
    src: url("../fonts/Clash.otf") format("truetype");
    font-weight: normal;
}
.catch-game-container {
    display: grid;
    grid-template-columns: auto 532px;
    gap:30px;
    margin-bottom: 60px;
}
.catch-game-score-board{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: url("../images/cow/score-borad-bg.jpg");
    background-size: cover;
    border-radius: 20px;
    font-family: "LalSabuj";
    color: #fff;
    padding: 30px;
    text-align: center;
}
.catch-game-score-board h2 {
    font-family: "Trebuchet MS", sans-serif;
}
.catch-game-score-board h1 {
    font-size: 48px;
    line-height: 60px;
    margin: 0;
}
.catch-game-score-board .score-value {
    -webkit-text-stroke-width: 0px;
    -webkit-text-stroke-color: #FFAA3C;
    font-family: "Clash";
    font-size: 167px;
    font-weight: 700;
    line-height: 184px;
    background: linear-gradient(134deg, #F37C13 10.79%, #F54914 80.61%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 24px;
}
.score-subtext, .score-note {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 24px;
}
.catch-game-score-board .btn-share {
    background: transparent;
    border-radius: 40px;
    border: 1px solid #FFF;
    color: #FFE8A1;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.catch-canvas {
    position: relative;
    aspect-ratio: 1 / 1;
}
.catch-canvas img{
    position: absolute;
    opacity: 1;
    user-select: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
}
ol li {
    list-style-position: inside;
    margin-bottom: 10px;
}

@media (max-width: 1150px) {
    .catch-game-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
}
@media (max-width: 776px) {
    .catch-game-score-board h1 {
        font-size: 30px;
        line-height: 35px;
    }

    .catch-game-score-board .score-value {
        font-size: 73px;
        line-height: 80px;
        margin-top: 15px;
        -webkit-text-stroke-width: 1px;
    }

    .score-subtext, .score-note {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 15px;
    }

    .catch-game-score-board .btn-share {
        font-size: 18px;
        line-height: 22px;
    }
}