body {
    background-image: var(--img-bg-cream);
    background-repeat: repeat;
}

#themeBlock {
    width: 100%;
    background-color: #5da9a9;
}

#packageArea {
    background-image: var(--img-game-bg-page);
    background-repeat: no-repeat;
    background-position: 50% bottom;
    background-size: 100%;

    width: 100%;
    max-width: 1300px;
    height: 800px;
    margin: 0 auto;
    overflow: hidden;
}

#packageWrapper {
    padding: 378px 0 50px;
    width: 85%;
    margin: 0 auto;

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


#packageDesc {
    width: 575px;
    text-align: center;
}

@keyframes shrinkShow {
    to {
        opacity: 1;
        transform: scale(1.0);
    }
}

#packageDesc > p {
    opacity: 0;
    transform: scale(1.5);
}

#packageDesc > p.title {
    font-size: 72px;
    line-height: 84px;
    margin: 0;
    text-shadow: 2px 5px 10px #757575;

    animation: shrinkShow 0.5s forwards 1s;
}

#packageDesc > p.desc {
    font-size: 18px;
    line-height: 35px;
    margin: 5px 50px 50px;
    text-shadow: 2px 5px 10px #757575;

    animation: shrinkShow 0.5s forwards 1.3s;
}

/*******************************************************/
/***  game introduction  ***/
#gameBlock {
    background-image: var(--img-bg-green);
    background-repeat: repeat;

    width: 100%;
    overflow: hidden;
    padding-bottom: 100px;
    position: relative;
}

#gameArea {
    background-image: var(--img-bg-orange);
    background-repeat: repeat;
    position: relative;

    width: 300%;
    border-radius: 0 0 50% 50%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    padding: 100px 0 130px;
}

.redGrid {
    background-image: var(--img-red-grid);
    background-repeat: repeat-x;
    background-size: auto 128px;
    background-position: 50% 0;
    width: 100%;
    height: 128px;
}

#animal1 {
    position: absolute;
    width: 150px;
    left: calc(50% + 410px);
    top: 750px;
}

#animal2 {
    position: absolute;
    left: calc(50% - 570px);
    top: 1100px;
    width: 170px;
}

#gameWrapper {
    background-image: var(--img-bg-content);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    padding: 50px 50px 80px 50px;
    position: relative;
}

#gameWrapper .slideInfo > p.title {
    color: red;
}

#gameWrapper .slideInfo > p.desc {
    color: #a46033;
}

.corner_topLeft {
    position: absolute;
    top: -23px;
    left: -23px;
    width: 120px;
}

.corner_topRight {
    position: absolute;
    top: -23px;
    right: -23px;
    transform: rotateY(180deg);
    width: 120px;
}

.corner_bottomLeft {
    position: absolute;
    bottom: -10px;
    left: -23px;
    transform: rotateX(180deg);
    width: 120px;
}

.corner_bottomRight {
    position: absolute;
    bottom: -10px;
    right: -23px;
    transform: rotate(180deg);
    width: 120px;
}

.clsCard {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slideImg {
    width: 48%;
}

.slideImg > img {
    width: 100%;
    transition: all 0.4s;
}

.slideImg > img:hover {
    transform: scale(1.1);
}

.slideInfo {
    width: 48%;
}

.slideInfo > p.title {
    font-size: 36px;
    line-height: 40px;
    margin: 5px auto 12px;
}

.slideInfo > p.desc {
    margin: 0;
    font-family: sans-serif;
}

.clsCardColumn {
    display: inline-flex;
    flex-direction: column;
    align-self: baseline;
    margin-top: 50px;
}

.clsCardColumn > .slideInfo {
    width: unset;
    text-align: center;
    margin-top: 10px;
}

.clsCardColumn > .slideInfo > p.title {
    font-size: 32px;
}

.clsCardColumn > .slideImg {
    width: unset;
}

#buildingArea {
    padding: 100px 0 170px;
    position: relative;
    overflow: hidden;
}

.clsOrange {
    width: 75px;
    position: absolute;
}

#orange1 {
    top: 30px;
    left: 30%;
}

#orange2 {
    top: 400px;
    right: 3%;
}

#orange3 {
    top: 650px;
    left: 20%;
}

#orange4 {
    top: 750px;
    right: 2%;
}

#orange5 {
    top: 1000px;
    left: 2%;
}

#orange6 {
    top: 1400px;
    left: 50%;
}

#buildingWrapper {
    background-image: var(--img-bg-content);
    background-repeat: no-repeat;
    background-size: 100% 100%;

    width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    position: relative;
}

#buildingWrapper .slideInfo > p.title {
    color: red;
}

#buildingWrapper .slideInfo > p.desc {
    color: #a46033;
}


/**************************************************/
/**** nft *****/
#nftBlock {
    background-image: var(--img-orange-bar);
    background-repeat: no-repeat;
    background-position: 50% bottom;

    width: 100%;
    overflow: hidden;
    padding-bottom: 170px;
    position: relative;
}

#nftArea {
    background-image: var(--img-bg-orange);
    background-repeat: repeat;

    position: relative;
    width: 300%;
    border-radius: 0 0 50% 50%;
    left: -100%;
    overflow: hidden;
    padding: 30px 0 100px;
}

#coinWrapper {
    width: 900px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#coinWrapper > img {
    width: 100%;
}

#nftInfo {
    width: 600px;
}

#nftInfo > p.title {
    font-size: 58px;
    line-height: 70px;
    margin: 0;
}

#nftInfo > p.desc {
    margin: 0;
    width: 80%;
    line-height: 36px;
}


/**************************************************/
/**** social *****/
#socialBlock {
    background-image: var(--img-bg-green);
    background-repeat: repeat;

    width: 100%;
    overflow: hidden;
    position: relative;
}

#socialArea {
    width: 1130px;
    margin: 120px auto 300px;
}

#imgSocial1 {
    position: absolute;
    width: 120px;
    left: calc(50% - 530px);
    top: 10px;
}

#imgSocial2 {
    position: absolute;
    width: 120px;
    left: calc(50% - 100px);
    top: 1350px;
}

#socialWrapper {
    background-image: var(--img-bg-content);
    background-repeat: no-repeat;
    background-size: 100% 100%;

    width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    padding: 50px 0;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    position: relative;
}

#socialWrapper .slideInfo > p.title {
    color: red;
}

#socialWrapper .slideInfo > p.desc {
    color: #a46033;
}

#imgGrass {
    background-image: var(--img-fence);
    background-repeat: repeat-x;
    background-size: auto 200px;

    width: 100%;
    height: 200px;

    position: absolute;
    bottom: 0;
}


/*******************************************************/
/* Shop Area*/

#shopBlock {
    width: 100%;
    overflow: hidden;
}

#shopArea {
    background-image: var(--img-bg-green);
    background-repeat: repeat;

    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    /*border-radius: 50% 50% 0 0;*/
    /*width: 180%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, 0);*/
}

#shopWrapper {
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sunflower {
    position: absolute;
    width: 100px;
}

#sunflower1 {
    top: 20px;
}

#sunflower2 {
    left: 20px;
    top: 280px;
}

#sunflower3 {
    right: 100px;
    top: 380px;
}

#shopInfo {
    width: 600px;
    margin-right: 50px;
    z-index: 2;
}

#shopInfo > p {
    font-size: 32px;
}

#shopImg {
    width: 400px;
}

#shopImg > img {
    position: relative;
    left: -80px;
}

#nftBtn {
    background-image: var(--img-btn-blue);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 200px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
    margin-top: 30px;
    cursor: pointer;
}

#grass2 {
    background-image: var(--img-leaves-bar);
    background-repeat: repeat-x;
    background-size: auto 128px;
    background-position: 50% 75px;
    width: 100%;
    height: 160px;
    position: relative;
    z-index: -1;
}
