.landingpage_logo img,
.content_titleLayout img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.content_rewardItem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* landingpage  */
.landingpage_contentLayout {
    position: relative;
    width: 100%;
    max-width: 1300px;
    padding: 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.landingpage_logo {
    width: 800px;
}

.landingpage_date {
    width: 490px;
    height: 45px;
    padding: 5px 10px;

    background: url("../images/date.png");
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;

}

.landingpage_date span {
    color: #ffffb5;
    text-shadow: 1px 2px #000;
    font-size: 15px;
    font-weight: 500;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;
}

.landingpage_btn {
    width: 230px;
    height: 70px;

    background: url("../images/button/01.png");
    background-position: center;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    box-shadow: 0 -5px 10px 0 #ffaa5f;
    border: 1px solid transparent;
    transition: .5s;

    cursor: pointer;
}

.landingpage_btn:hover {
    box-shadow: 0 -5px 10px 5px #2f71ff;
}

.landingpage_btn span {
    width: 100%;
    color: #7b2e00;
    /* text-shadow: 1px 2px #000; */
    font-size: 16px;
    line-height: 17px;
    font-weight: 600;
}

.landingpage_popupBtn {
    position: absolute;
    right: 10px;
    /* top: 100px; */

    /* width: 600px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.landingpage_popup {
    width: 120px;
    height: 120px;
    padding: 10px;
    padding-top: 18px;
    border-radius: 50%;

    background: url("../images/button/02.png");
    background-position: center;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    border: 1px solid transparent;
    cursor: pointer;
    transition: .7s;

}

.landingpage_popup:hover {
    box-shadow: inset 0 -10px 10px 2px #ff9361;
}

.landingpage_popup span {
    width: 100%;
    color: #7b2e00;
    /* text-shadow: 1px 2px #000; */
    font-size: 16px;
    line-height: 17px;
    font-weight: 600;
}

/* content  */
.content_mainLayout {
    position: relative;

    width: 100%;
    height: calc(100dvh - 96px);
    /* height: 100dvh; */
    padding: 10px 20px;
    padding-top: 60px;

    background: url("../images/bg_content.png");
    background-position: center;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;

    overflow: auto;
    color: #fff;
}

.content_btnBack {
    position: absolute;
    top: 70px;
    left: 20px;

    width: 130px;
    height: 39px;
    background: url("../images/button/01.png");
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;

    box-shadow: 0 -3px 5px 0 #ffaa5f;
    border: 1px solid transparent;
    transition: .5s;
    cursor: pointer;
}

.content_btnBack i {
    color: #7b2e00;
    font-size: 13px;
    font-weight: 900;
}

.content_btnBack span {
    color: #7b2e00;
    font-size: 13px;
    line-height: 13px;
    font-weight: 600;
}

.content_subLayout {
    width: 100%;
    max-width: 900px;
    /* height: 100%; */
    padding: 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.content_titleLayout {
    width: 550px;
    height: 50px;
}

.content_layout {
    width: 100%;
    /* height: 100dvh; */
    min-height: 100dvh;
    padding: 20px 30px;
    overflow: auto;

    background: #000000a3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.content_topicLayout {
    width: 430px;
    height: 70px;
    min-height: 70px;
    padding-top: 10px;

    background: url("../images/content_title.png");
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content_topicLayout span {
    font-size: 26px;
    font-weight: 800;
    color: #1e1e1e;
    text-shadow: 0px 2px #ffffffc2;
}

.content_rewardLayout {
    width: 100%;
    height: 100%;
    min-height: 200px;
    padding: 30px 20px;

    background: #000;
    border: 3px solid #f8ab16;

    display: flex;
    align-items: start;
    gap: 10px;
}

.content_rewardItemLayout {
    width: 180px;
    min-width: 180px;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.content_rewardItemLayout2 {
    width: 280px;
    min-width: 280px;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.content_rewardItem {
    min-width: 100px;
    height: 130px;

    background: #fff;
    border: 3px solid #f8ab16;

    display: flex;
    align-items: center;
    justify-content: center;
}

.content_rewardDetailLayout {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
}

.content_rewardBtn {
    width: 270px;
    height: 85px;

    background: url("../images/button/03.png");
    background-position: center;
    background-size: cover;
    border: 1px solid transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: all .5s;

    box-shadow: 1px 1px 1px transparent;
}

.content_rewardBtn:hover {
    box-shadow: 2px 1px 8px 1px #ffffb3;
}

.content_rewardBtn span {
    color: #7b2e00;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    text-shadow: 1px 1px 1px #ffffb3;
}