* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}

.bg {
    background: url(img/background.png);
    width: 100%;
    height: 100%;
    position: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.main {
    width: 100%;
    height: 100%;
    position: absolute;
    margin-top: 8px;
    overflow-x: hidden;
}

/* ======== header ======== */
.main .header {
    width: 500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    margin-bottom: 20px;
}

.main .header .icon {
    width: 150px;
}
.main .header .icon img{
    width: 100%;
    padding: 10px;
}

/* .main .header .icon img {
    background: linear-gradient(
        to right, 
        #BF953F, 
        #FCF6BA, 
        #B38728, 
        #FBF5B7, 
        #AA771C);
    border-radius: 100%;
    width: 60px;
    height: 60px;
    padding: 0px;
} */

.main .header .icon p {
    font-size: 16px;
    color: rgb(210, 227, 16);
    font-weight: bold;
}

.main .header .logo {
    width: 350px;
}

.main .header .logo img {
    width: 100%;
}

/* ======== social-link ======== */
.main .social-link {
    width: 500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px auto;
}

.main .social-link .left,
.main .social-link .right {
    width: 50%;
    padding: 8px;
}

.main .social-link .left img,
.main .social-link .right img {
    width: 100%;
    transition: all 0.3s;
    transform: scale(1);
}
.main .social-link .left img:hover,
.main .social-link .right img:hover {
    transform: scale(1.1); 
}

/* ======== banner ======== */
/* .main .banner{
    width: 500px;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
}
.main .banner img {
    width: 70%;
    margin: auto;
    border: 10px;
    display: block;
    margin-bottom: 50px;
} */
.main .banner {
    width: 500px;
    margin: auto;
    border: 10px;
}

.main .banner video {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
}
.ban-img2{
    /* animation: zoom-in-zoom-out 4s ease infinite; */
    animation: loader 2.5s ease infinite;

}

@keyframes loader {
    0% {
        transform: scale(0.8, 0.8);
        rotate: -8deg;
    }
    
    25% {
        transform: scale(1, 1);
        rotate: 8deg;
    }
    50% {
        transform: scale(1, 1);
        rotate: -8deg;
    }
    75% {
        transform: scale(1, 1);
        rotate: 8deg;
    }
    
    100% {
        transform: scale(0.8, 0.8);
        rotate: -8deg;
    }
}
/* ======== Link ======== */
.main .link {
    width: 500px;
    margin: auto;
    margin-top: 40px;
}

.main .link-to-play {
    display: inline-block;
}

.main .link-to-play .box {
    width: 50%;
    float: left;
    padding: 8px;
}

.main .link-to-play .box img {
    width: 100%;
    transition: all 0.3s;
    transform: scale(1);
}
.main .link-to-play .box img:hover {
    transform: scale(1.1); 
}

@media (min-width: 320px) and (max-width: 480px) {
    .main .header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 20px auto;
    }
    .main .header .icon {
        width: 150px;
        text-align: center;
    }
    .main .header .icon img {
        /* background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
        border-radius: 100%;
        width: 45px;
        height: 45px;
        padding: 10px; */
        width: 100%;
    }
    .main .header .icon p {
        font-size: 11px;
        color: rgb(210, 227, 16);
    }
    .main .header .logo {
        width: 280px;
    }
    .main .header .logo img {
        width: 100%;
    }
    .main .social-link {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0px auto;
    }
    .main .social-link .left,
    .main .social-link .right {
        width: 50%;
    }
    .main .social-link .left img,
    .main .social-link .right img {
        width: 100%;
    }
     .main .banner {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: auto;
        padding:0 15px;
    }

    .main .banner video {
        width: 100%;
        border-radius: 5px;
        object-fit: cover;
    }
    .main .link {
        width: 100%;
        margin: 8px auto;
    }
    .main .link-to-play {
        display: inline-block;
    }
    .main .link-to-play .box {
        width: 50%;
        float: left;
    }
    .main .link-to-play .box img {
        width: 100%;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .main .header {
        width: 85%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0px auto;
    }
    .main .header .icon {
        width: 150px;
        text-align: center;
    }
    .main .header .icon img {
        /* background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
        border-radius: 100%;
        height: 50px;
        padding: 10px; */
        width: 100%;
    }
    .main .header .icon p {
        font-size: 13px;
        color: rgb(227, 192, 16);
    }
    .main .header .logo {
        width: 250px;
    }
    .main .header .logo img {
        width: 100%;
    }
    .main .social-link {
        width: 85%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 20px auto;
    }
    .main .social-link .left,
    .main .social-link .right {
        width: 50%;
    }
    .main .social-link .left img,
    .main .social-link .right img {
        width: 100%;
    }
     /* .main .banner {
        width: 100%;
        display: flex;
        margin: auto;
        justify-content: center;
    } */
    .main .banner {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: auto;
        padding: 0 15px;
    }
    
    .main .banner video {
        width: 80%;
        border-radius: 5px;
        object-fit: cover;
    }

    .main .link {
        width: 85%;
        margin: 10px auto;
    }
    .main .link-to-play {
        display: inline-block;
    }
    .main .link-to-play .box {
        width: 50%;
        float: left;
    }
    .main .link-to-play .box img {
        width: 100%;
    }
}