#loading {
    position: fixed;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    width: 200px;
    height: 200px;
    display: none;
    z-index: 100;
}

.header{
    width: 100%;
    height: 200px;
    position: absolute;
    z-index: 0;
}

.banner {
    width: 100%;
    max-width: 800px;
    height: auto;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.banner::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}


.banner.ADD::before  {
    background-image: url(../img/backgroundADD.png);
}

.banner.VIP::before {
    background-image: url(../img/backgroundVIP.png);
}

.footer {
    width: 100%;
    height: auto;
}

/* title */

.title {
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.title.ADD{
    margin-bottom: 50px;
}


.title-text {
    font-size: 35px;
    color: var(--FFFFFF);
    letter-spacing: 5px;
    text-align: center;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
}

.title-subtext {
    font-family: "Cinzel-VariableFont_wght";
    font-size: 11px;
    font-weight: 575;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1;
}

.title-line {
    width: 25px;
    height: 1px;
}

.title.ADD .title-text{
    font-family: "jf-jinxuan-medium";
}

.title.VIP .title-text{
    font-family: "creamfont-1.1";
}

.title.ADD .title-subtext{
    color: var(--FFFFFF);
}

.title.VIP .title-subtext{
    color: var(--592814);
}

.title.ADD .title-line{
    background: var(--FFFFFF);
}

.title.VIP .title-line{
    background: var(--592814);
}




@media (min-width: 451px) {

    .title-text {
        font-size: 35pt;
    }

    .title-subtext {
        font-size: 11pt;
    }
}

/* container */

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 100%;
    margin: auto;
    position: relative;
    z-index: 1;
}


.container-div {
    width: 330px;
    height: auto;
    border: 1px solid var(--FFFFFF);
}

.container-div.ADD{
    background: var(--EDEDEC);
}

.container-div.VIP{
    background: var(--DBD2B8);
    margin-right: 10px;
    padding: 5px;
}


.container-items-div {
    border: 1px solid var(--FFFFFF);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 25px 25px 25px;
    gap: 30px;
}

.container-items-div.ADD {
    background: var(--EDEDEC);
}

.container-items-div.VIP {
    background: var(--DBD2B8);
}


@media (min-width: 451px) {

    .container {
        width: 90%;
        max-width: 550px;
    }

    .container-div {
        width: 100%;
    }
}


/* item */


.items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 30px;
}

.item {
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto;
}

.item.shop.ADD{
    background-image: url(../img/itemADD-shop.png);
}

.item.shop.VIP{
    background-image: url(../img/itemVIP-shop.png);
}

.item.news.ADD{
    background-image: url(../img/itemADD-news.png);
}

.item.news.VIP{
    background-image: url(../img/itemVIP-news.png);
}


.item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.itemLogo {
    width: 60%;
    height: 60%;
    object-fit: contain;
    cursor: pointer;
}


/* button */

.button {
    border: 0.5px solid var(--FFFFFF);
    text-align: center;
    border-radius: 50px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button.ADD:hover,
.button.VIP:hover {
    background: var(--939393);
}

.button.ADD{
    background: var(--13AE67);
    font-family: 'jf-jinxuan-medium';
}

.button.VIP{
    background: var(--A08024);
    font-family: 'creamfont-2.0';
}

.button a,
.button button {
    color: var(--FFFFFF);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 2px;
    width: 100%;
    padding: 0 25px;
    border: 0.5px solid var(--FFFFFF);
    border-radius: 50px;
}

.button.index,
.button button{
    background: var(--B4B4B4);
    font-family: 'jf-jinxuan-medium';
    font-size: 12px;
}

@media (min-width: 451px) {

    .button a {
        font-size: 15pt;
    }

    .button.index,
    .button button{
        font-size: 12pt;
    }
}

/* page */

.pages {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    font-size: 14pt;
}

.pages.ADD{
    font-family: "jf-jinxuan-medium";
    color: var(--13AE67);
}

.pages.ADD .page-prev,
.pages.ADD .page-next {
    color: var(--898989);
}

.pages.ADD .page-active{
    background: var(--13AE67);
    color: var(--FFFFFF);
    width: 20px;
    text-align: center;
    border-radius: 5px;
}

.pages.VIP{
    font-family: "creamfont-1.1";
    color: var(--592814);
}

.pages.VIP .page-prev,
.pages.VIP .page-next {
    color: var(--926F26);
}

.pages.VIP .page-active{
    background: var(--592814);
    color: var(--FFFFFF);
    width: 20px;
    text-align: center;
    border-radius: 5px;
}


@media (min-width: 451px) {

    .pages {
        font-size: 14pt;
    }
}


