html {
    max-height: 100vh;
}

body {
    color: #fff;
}

@media (min-width:992px) {
    .container {
        max-width: 860px;
    }


}
.section{
    margin-top: 3rem;
}

.bg-main {
    background-color: #0f1221;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;

}
h4{
    font-size: clamp(1.5rem, 3.6vw, 2.5rem);
}

h5 {
    font-size: clamp(1.25rem, 4.5vw, 2.5rem);
}
h6 {
    font-size: clamp(1rem, 3vw, 2.3rem);
}

div,
p,
li,
span {
    font-weight:300;
    font-size: clamp(1rem, 2.6vw, 1.7rem);
}

.text-game {
    color: #FFE667;
}

.text-success {
    color: #4DFAAB !important;
}

/* Nav */
nav>h4 {
    font-style: italic;
    padding-top: 1.5rem;
    font-weight: 600;
}

/* Symbol image box */
.symbol-group {
    align-items: center;
    flex-direction: column;
    display: flex;
}

.symbol-img-box {
    align-items: center;
    justify-content: center;
    display: flex;
}

.symbol-img-box>img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* 連線賠率文字 */
.pay-item {
    display: flex;
    align-items: center;
    margin-bottom: .25rem;
}

.num {
    min-width: 3em;
    text-align: right;
    font-weight: lighter;
    padding-right: .25rem;
}

.line {
    background-color: rgba(255, 255, 255, 0.6);
    width: 1px;
    height: 1.4em;
    margin: 0 10px;
}

.pay {
    min-width: 3em;
    text-align: left;
    font-weight: 700;
}



/* 文字圖片框 */

.text-with-image {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* font-size: 1rem; */
    /* 或你自己的設定 */
    line-height: 1.5;
    list-style: disc;
    /* 恢復圓點樣式 */
    list-style-position: inside;
    /* 或 outside，根據你要的對齊效果 */
}

/* 適合方型圖片 */
.image-box {
    max-height: calc(1em * 2.6);
    /* 文字高度的1.5倍 */
    aspect-ratio: 1 / 1;
    /* 正方形 */
    flex-shrink: 0;
}

/* 適合橫型圖片 */
.image-box-2 {
    max-height: calc(1em * 2);
    /* 文字高度的1.5倍 */
    aspect-ratio: 2 / 1;
    /* 正方形 */
    flex-shrink: 0;
}

.image-box-2 img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    /* 等比例縮放，不裁切 */
    display: block;
}

.image-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    /* 等比例縮放，不裁切 */
    display: block;
}

/* 適合長寬相近的圖片 */
.inline-image {
    height: 2.5em;
    /* 文字高度的 2.5 倍 */
    vertical-align: middle;
    /* 垂直置中對齊文字 */
    object-fit: contain;
    padding: 0 .5rem;
}

/* 適合長方型圖片 */
.inline-image2 {
    height: 1.5em;
    /* 文字高度的 1.5 倍 */
    vertical-align: middle;
    /* 垂直置中對齊文字 */
    object-fit: contain;
    padding: 0 .5rem;

}