
@keyframes right-in {
    0%   {right: -210px;}
    100% {right: 0;}
}

@keyframes leftFlyIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.twitterWrapper {
    background-image: var(--img-home-twitter);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 200px 70px;

    position: fixed;
    width: 200px;
    height: 70px;
    right: -210px;
    bottom: 20px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;

    animation-name: right-in;
    animation-duration: 500ms;
    animation-delay: 1.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

.twitterContainer {
    padding: 3px;
}

.twitter-logo {
    width: 30px;
    vertical-align: middle;
}

.bottleWrapper, .mintEntryWrapper {
    position: fixed;
    right: -210px;
    bottom: 200px;
    z-index: 10;
    display: flex;

    animation-name: right-in;
    animation-duration: 500ms;
    animation-delay: 1.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

.bottleWrapper > a > img, .mintEntryWrapper > a > img {
    width: 150px;
}

#canvas1 {
    position: relative;
    width: 260px;
    height: 380px;
    top: -100px;
    left: 550px;
}

#areaGame {
    background-image: var(--img-home-bg1);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: auto 1028px;
    width: 100%;
    height: 1028px;
    margin: 0 auto;
    overflow: hidden;
}

#areaGame > .gameintro {
    width: 950px;
    padding-top: 200px;
    margin: 0 auto;
    color: white;
    text-align: left;
}

#areaGame .gametag {
    opacity: 0;
    transform: translateX(-100px);
    animation: leftFlyIn .5s forwards 1.5s;
    margin-bottom: 10px;
}

.gametag > img {
    width: 200px;
}

#areaGame .slogan {
    font-size: 65px;
    line-height: 85px;
    font-weight: bold;
    text-shadow: 5px 5px 15px black;

    opacity: 0;
    transform: translateX(-100px);
    animation: leftFlyIn .5s forwards 1.5s;
}

#areaGame .shortdesc {
    font-size: 24px;
    line-height: 44px;
    font-weight: bold;
    text-shadow: 2px 2px 10px black;

    opacity: 0;
    transform: translateX(-100px);
    animation: leftFlyIn .5s forwards 1.7s;
}

.button-area {
    display: flex;
    margin-top: 20px;

    opacity: 0;
    transform: translateX(-100px);
    animation: leftFlyIn .5s forwards 2s;
}

#buttonPlay {
    background-image: var(--img-home-learn);
    background-repeat: no-repeat;
    background-size: 300px 100%;
    height: 85px;
    line-height: 85px;
    width: 300px;
}

#buttonPlay > a {
    width: 260px;
    height: 80px;
    display: inline-block;
    text-decoration: none;
    margin-left: 20px;
    cursor: pointer;
    color: white;
}

#buttonPlay > a > span {
    padding-left: 50px;
    font-size: 23px;
    font-weight: bold;
}

#buttonGame {
    background-image: var(--img-btn-green2);

    background-repeat: no-repeat;
    background-size: 280px 100%;
    margin-left: 20px;
    margin-top: 2px;
    width: 280px;
    height: 80px;
    line-height: 80px;

    text-align: center;
    cursor: pointer;
    color: #f4e7c1;
    font-size: 20px;
}

#buttonGame > a {
    width: 260px;
    height: 80px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    color: white;
}

#gameTestIntro {
    color: #0ff;
    text-shadow: black 2px 2px 10px;
    width: 200px;
    margin: 10px auto 0;
    font-size: 18px;
    text-align: center;
}

.canvasWrapper {
    width: 1130px;
    margin: auto;
    position: relative;
}

#areaInfo {
    background-image: var(--img-bg-cream);
    background-repeat: repeat;

    width: 100%;
    height: 1200px;
    margin: 0 auto;
    position: relative;
}

.flagWrapper {
    position: relative;
    top: -5px;
}

.flagList {
    display: flex;
    justify-content: center;
}

@keyframes fly-up {
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.clsFlag {
    width: 360px;
    display: inline-block;
    margin: 0 10px;

    transform: translateY(100px);
    opacity: 0;
}

.clsFlag > .portrait {
    text-align: center;
}

.flagContent {
    color: #1AA383;
    padding-top: 20px;
    width: 90%;
    margin: 0 auto;
}

.flagContent > strong {
    font-size: 35px;
    text-shadow: 5px 5px 15px #dbf3db;
}

.flagContentText {
    margin-top: 30px;
    line-height: 25px;
    font-weight: bold;
    text-shadow: 3px 3px 8px #dbf3db;
}

.videoArea {
    margin-top: 50px;
    width: 100%;
}

.videoWrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
}

.videoContainer {
    background-image: var(--img-home-video);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    width: 1000px;
    height: 550px;
    position: relative;
    left: 160px;
}

.videoTitle {
    padding-top: 72px;
    padding-bottom: 20px;
    font-size: 25px;
    font-weight: bold;
}

.videoInner {
    width: 700px;
    height: 360px;
    margin: 0 auto;

    background-image: radial-gradient(circle closest-corner, #24e1f7, #1dc3d6);
    position: relative;
}

.videoPlaceholder {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.imgGirl {
    position: absolute;
    width: 300px;
    left: 45px;
    top: 170px;
}

.imgDog, .imgChicken {
    position: absolute;
    left: 980px;
    top: 420px;
}

.gametype {
    margin-top: 20px;
    font-size: 13px;
    color: white;
    display: flex;
    justify-content: center;
}

.interval {
    margin: 0 25px;
}

.gametype > .platform {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-market {
    width: 25px;
    height: 25px;
    margin: 0 5px 0 10px;
}


#areaSlice {
    background-image: var(--img-bg-green);
    background-repeat: repeat;
    background-position: 50%;
    width: 100%;
    /*max-width: 1294px;*/
    height: 992px;
    overflow: hidden;
}

#sliceIntro {
    width: 750px;
    margin: 80px auto 50px;
}

#sliceIntro > .title {
    font-size: 44px;
    line-height: 50px;
    font-weight: bold;
    text-align: center;
    text-shadow: 5px 5px 8px #71b871;
}

#sliceIntro > .content {
    font-size: 24px;
    line-height: 44px;
    margin: 20px 30px;
    font-weight: bold;
    text-align: center;
    text-shadow: 3px 3px 8px #71b871;
}

.swiper {
    width: 100%;
    min-width: 800px;
    height: 590px;
    margin: 0 auto;
    --swiper-navigation-color: white;
}

#swiperArea > .swiper-button-prev {
    left: calc((100% - 790px) / 2 - 50px);
}

#swiperArea > .swiper-button-prev::after, #swiperArea > .swiper-button-next::after {
    font-size: 75px;
}

#swiperArea > .swiper-button-next {
    right: calc((100% - 790px) / 2 - 50px);
}

#areaBlockchain {
    background-image: var(--img-home-bg3);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: auto 1100px;
    width: 100%;
    height: 1100px;
    overflow: hidden;
}

#blockchainIntro {
    width: 750px;
    margin: 150px auto 50px;
    text-align: right;
}


#blockchainIntro > .title {
    font-size: 60px;
    font-weight: bold;
    line-height: 80px;
    text-shadow: 5px 5px 15px black;
}

#blockchainIntro > .content {
    font-size: 24px;
    line-height: 44px;
    margin-top: 20px;
    font-weight: bold;
    text-shadow: 5px 5px 15px black;
}

#imgWrapper {
    position: relative;
    width: 800px;
    height: 450px;
    margin: 0 auto;

    opacity: 0;
    transform: translateY(100px);
}

#imgWrapper > img {
    position: absolute;
}

#idImgNFT {
    left: 50px;
    top: -30px;
    width: 160px;
}

#idImgCoin {
    right: 60px;
    bottom: 80px;
    width: 240px;
}

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

#grass {
    top: 65px;
}

#grass > img {
    height: 200px;
}

.center-img {
    left: 50%;
    transform: translateX(-50%);
}

#redGrid {
    background-image: var(--img-red-grid);
    background-repeat: repeat;
    width: 100%;
    height: 128px;
    position: absolute;
    top: 0;
}

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

#registerArea > p.title {
    font-size: 60px;
}

.register-tip {
    font-size: 24px;
    line-height: 36px;
}

#emailBg {
    background-image: var(--img-home-email);
    background-size: 100% 100%;

    width: 100%;
    height: 70px;
}

#email {
    width: 350px;
    height: 45px;
    border: none;
    outline: none;

    margin: 13px 0 0 45px;
    font-size: 22px;
    color: red;
    background-color: #f1e7c2;
}

#agreeArea {
    width: 450px;
    display: flex;
    justify-content: space-between;
}

#agreeArea > input {
    margin-right: 20px;
    margin-top: 20px;
    width: 60px;
    height: 60px;
}

#agreeArea  p {
    font-size: 15px;
    line-height: 23px;
    font-family: Arial, Helvetica, sans-serif;
}

#agreeArea  a {
    text-decoration-color: white;
    color: white;
}

#btnEnlist {
    background-image: var(--img-home-learn);
    background-repeat: no-repeat;
    background-size: 300px 100%;
    margin: 20px auto 0;
    width: 300px;
    height: 85px;
    line-height: 85px;
    text-align: center;
    cursor: pointer;
}

#btnEnlist > span {
    font-size: 24px;
}

#leavesBar {
    background-image: var(--img-leaves-bar);
    background-repeat: repeat-x;
    background-size: auto 200px;
    background-position: left bottom;
    height: 260px;
}

#idImgGrass {
    background-image: var(--img-fence);
    background-repeat: repeat-x;
    background-size: auto 200px;
    background-position: left bottom;

    height: 200px;
    margin-top: 50px;
}

#subscribeSuccess > p:first-child {
    font-size: 36px;
}

