{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html
{
    scroll-behavior: smooth;
}
body
{
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    color: #FFF;
}
img
{
    vertical-align: middle;
}
.page-wrapper
{
    min-height: 100vh;
    background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top;
    background-attachment: fixed;
    padding-left: 15px;
    padding-right: 15px;
}
.page-container
{
    position: relative;
    margin: 0 auto;
    padding-top: 165px;
}
.logo h1
{
    text-align: center;
}
.logo img
{
    width: 100%;
    height: auto;
    max-width: 200px;
}
.mb-logo
{
    display: none;
    text-align: center;
}
.mb-logo img
{
    width: 100%;
    height: auto;
    max-width: 180px;
}
.slogan
{
    text-align: center;
    display: none;
}
.slogan img
{
    width: 100%;
    height: auto;
    max-width: 500px;
}
@media screen and (max-width: 1600px)
{
    .page-container {
        position: relative;
        margin: 0 auto;
        padding-top: 150px;
    }
}
@media screen and (max-width: 991px)
{
    .page-container {
        padding-top: 0;
    }
    .page-wrapper
    {
        background-image: url(../images/bg-mobile.webp);
        background-size: cover;
    }
    .mb-logo
    {
        display: block;
    }
    .slogan
    {
        text-align: center;
        display: block;
    }
}
@media screen and (max-width: 768px)
{
    .logo img
    {
        max-width: 120px;
    }
    .slogan
    {
        display: block;
    }
    .mb-logo
    {
        display: block;
        text-align: center;
    }
    .mb-logo img
    {
        width: 100%;
        height: auto;
        max-width: 130px;
    }
    .page-container {
        padding-top: 15px;
    }
}
/*======================================================================================================================
FORM
======================================================================================================================*/
.form
{
    text-align: center;
    width: 720px;
    height: 490px;
    margin: 0 auto;
    position: relative;
}
.form-slogan
{
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.form-slogan img
{
    width: 540px;
    height: auto;
}
.form .form__contain
{
    background-image: url(../images/bg-form.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 720px;
    height: 490px;
    position: absolute;
    z-index: 2;
    padding-top: 76px;
}
.form .tabs
{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-image: url(../images/bg-tab.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 420px;
    height: 80px;
    margin: 0 auto 5px;
}
.form .tabs a
{
    display: block;
    transition: 0.1s ease-in-out;
}
.form .tabs a.login-tab.active
{
    background-image: url(../images/login-tab-active.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 50%;
    max-width: 228px;
    height: 68px;
}
.form .tabs a.login-tab
{
    background-image: url(../images/login-tab.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 50%;
    max-width: 198px;
    height: 40px;
}
.form .tabs a.register-tab.active
{
    background-image: url(../images/register-tab-active.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 50%;
    max-width: 168px;
    height: 68px;
}
.form .tabs a.register-tab
{
    background-image: url(../images/register-tab.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 50%;
    max-width: 140px;
    height: 38px;
}
.form form
{
    display: none;
}
.form form.active
{
    display: block;
}
.form form .inputs
{
    height: 180px;
}
.form form .form-group
{
    position: relative;
    width: 440px;
    margin: 0 auto 8px auto;
}
.form form input:focus
{
    border: none;
    outline: none;
    box-shadow: none;
}
.form form input
{
    box-sizing: border-box;
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    max-width: calc(100% - 50px);
    height: 50px;
    color: black;
    font-size: 20px;
    padding-left: 50px;
    padding-right: 40px;
    border-radius: 20px;
}
.form form input::placeholder {
    font-family: Nunito, sans-serif !important;
    font-size: 16px;
    color: #4814b0;
}
.form form .form-group .icon
{
    position: absolute;
    top: 0;
    left: 24px;
    width: 46px;
    height: calc(100% + 1px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #5713c0;
}
.form form .form-group .icon.username
{
    background-image: url(../images/icon-user.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.form form .form-group .icon.password
{
    background-image: url(../images/icon-lock.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.form form .form-group .icon.captcha
{
    background-image: url(../images/icon-captcha.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.form form .form-group .captcha-generate {
    position: absolute;
    top: 0;
    right: 25px;
    width: 150px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: bolder;
    font-size: 30px;
    background: #7E7E7E;
    cursor: pointer;
    font-style: italic;
    border-radius: 0 15px 15px 0;
}
.form form .form-group .icon i
{
    font-size: 24px;
}
.form form .form-group .show
{
    position: absolute;
    top: 0;
    right: 30px;
    width: 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #5713c0;
    cursor: pointer;
}
.form form .form-group .show i
{
    font-size: 24px;
}
.form form button
{
    box-shadow: none;
    border: none;
    outline: none;
    background: none;
}
.form .login-form button
{
    width: 100%;
    height: auto;
    max-width: 100%;
}
.form .register-form button
{
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: translateY(10px);
}
.form .register-form button img
{
    width: 100%;
    height: auto;
    max-width: 430px;
}
@media screen and (max-width: 1600px)
{
    .form-slogan img
    {
        width: 420px;
        height: auto;
    }
    .form {
        text-align: center;
        width: 580px;
        height: 420px;
        margin: 0 auto;
        position: relative;
    }
    .form .form__contain {
        background-image: url(../images/bg-form.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 2;
        padding-top: 62px;
    }
    .form .tabs {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-image: url(../images/bg-tab.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        width: 340px;
        height: 60px;
        margin: 0 auto 5px;
    }
    .form form input {
        border: none;
        outline: none;
        box-shadow: none;
        width: 100%;
        max-width: calc(100% - 50px);
        height: 42px;
        color: black;
        font-size: 20px;
        padding-left: 65px;
        padding-right: 40px;
        border-radius: 20px;
    }
    .form form .form-group {
        position: relative;
        width: 384px;
        margin: 0 auto 8px auto;
    }
    .form form .inputs {
        height: 154px;
    }
    .form button img
    {
        width: 100%;
        height: auto;
        max-width: 380px;
    }
    .form .tabs a.login-tab.active {
        background-image: url(../images/login-tab-active.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        width: 50%;
        max-width: 150px;
        height: 47px;
    }
    .form .tabs a.login-tab {
        background-image: url(../images/login-tab.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        width: 50%;
        max-width: 114px;
        height: 28px;
    }
    .form .tabs a.register-tab {
        background-image: url(../images/register-tab.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        width: 50%;
        max-width: 108px;
        height: 26px;
    }
    .form .tabs a.register-tab.active {
        background-image: url(../images/register-tab-active.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        width: 50%;
        max-width: 120px;
        height: 42px;
    }
}
@media screen and (max-width: 991px)
{
    .form
    {
        width: 700px;
        height: 500px;
        margin: 0 auto;
        position: relative;
    }
    .form-slogan {
        display: none;
    }
    .form .form__contain {
        width: 700px;
        height: 500px;
        padding-top: 80px;
    }
    .form .tabs {
        width: 420px;
    }
    .form form .form-group {
        width: 420px;
    }
    .form form .inputs {
        height: 194px;
    }
}
@media screen and (max-width: 768px)
{
    .form
    {
        display: none;
    }
}
/*======================================================================================================================
SWIPER
======================================================================================================================*/
.left-bar
{
    position: absolute;
    top: 15px;
    left: 0;
}
.swiper {
    width: 100%;
    height: auto;
    max-width: 200px;
}
.swiper .swiper-slide img
{
    width: 100%;
    height: auto;
    max-width: 200px;
}
@media screen and (max-width: 1600px)
{
    .swiper {
        width: 100%;
        height: auto;
        max-width: 200px;
    }
    .swiper .swiper-slide img
    {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}
@media screen and (max-width: 991px)
{
    .left-bar
    {
        display: none;
    }
}
/*======================================================================================================================
DOWNLOAD
======================================================================================================================*/
.download
{
    display: none;
}
@media screen and (max-width: 768px)
{
    .download
    {
        display: block;
        text-align: center;
        margin: 15px 0;
    }
    .download #android
    {
        display: block;
        background-image: url(../images/android-download-789club.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        width: 300px;
        max-width: 100%;
        height: 75px;
        margin: 0 auto;
    }
    .download #ios
    {
        display: block;
        background-image: url(../images/ios-download-789club.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        width: 300px;
        max-width: 100%;
        height: 70px;
        margin: 0 auto;
    }
    .download small
    {
        font-size: 10px;
        font-style: italic;
        list-style: none;
        display: block;
        color: white;
    }
}
/*======================================================================================================================
FIRE WALL
======================================================================================================================*/
.fire-wall
{
    display: none;
}
.hidden-pc {
    display: none;
}
@media screen and (max-width: 768px)
{
    .hidden-pc {
        display: block;
    }
    .fire-wall
    {
        display: block;
        text-align: center;
    }
    .fire-wall .title
    {
        background-image: url(../images/fire-wall-title.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        width: 200px;
        height: 15px;
        margin: 0 auto;
    }
    .fire-wall a
    {
        display: block;
        background-image: url(../images/fire-wall-btn.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        width: 440px;
        max-width: 170px;
        height: 44px;
        margin: 0 auto;
    }
    .fire-wall small
    {
        font-size: 10px;
        font-style: italic;
        list-style: none;
        display: block;
        color: #fff;
    }
}

.game-icon
{
    display: flex;
    justify-content: center;
    align-items: center;
}
.game-icon .game-icon__item
{
    padding: 15px;
}
.game-icon .game-icon__item img
{
    width: 100%;
    height: auto;
    max-width: 200px;
}
@media screen and (max-width: 1600px)
{
    .game-icon .game-icon__item img {
        width: 100%;
        height: auto;
        max-width: 130px;
    }
}
@media screen and (max-width: 991px)
{
    .game-icon
    {
        display: none;
    }
}
/**/
.web-play {
    text-align: center;
}
.web-play a img {
    max-width: 400px;
}
@media screen and (max-width: 1600px)
{
    .web-play a img {
        max-width: 320px;
    }
}
@media screen and (max-width: 768px)
{
    .web-play {
        /*display: none;*/
    }
    .web-play a img {
        max-width: 280px;
    }
}
/**/
.seo-content {
    max-width: 640px;
    margin: 0 auto;
    padding-bottom: 15px;
    margin-top: 15px;
}
.seo-content img {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-bottom: 15px;
}
.seo-content p {
    margin-bottom: 15px;
}
.seo-content ul {
    padding-left: 30px;
    margin-bottom: 15px;
}
.seo-content .nano-content {
    display: none;
    height: 400px;
    overflow-y: auto;
}
.seo-content h1 {
    text-align: center;
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 22px;
}
.seo-content .read-more {
    display: block;
    text-decoration: none;
    text-align: right;
    color: white;
    text-shadow: 1px 1px 0 #c02e05, 1px -1px 0 #c02e05, -1px 1px 0 #c02e05, -1px -1px 0 #c02e05, 1px 0 0 #c02e05, 0 1px 0 #c02e05, -1px 0 0 #c02e05, 0 -1px 0 #c02e05;
}
/* width */
.seo-content ::-webkit-scrollbar {
    width: 3px;
}
/* Track */
.seo-content ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.41);
}
/* Handle */
.seo-content ::-webkit-scrollbar-thumb {
    background: rgba(255,255,0,.5);
}
/* Handle on hover */
.seo-content ::-webkit-scrollbar-thumb:hover {
    background: #555;
}
@media screen and (max-width: 768px)
{
    .seo-content h1 {
        font-size: 15px;
    }
    .seo-content .read-more {
        font-size: 12px;
    }
    .seo-content .nano-content {
        font-size: 12px;
    }
}
/*======================================================================================================================
WELCOME
======================================================================================================================*/
.welcome {
    position: fixed;
    bottom: 15px;
    right: 15px;

    width: auto;
    height: 63px;

    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}
.welcome a {
    display: block;
}
.welcome a img {
    width: 100%;
    max-width: 70px;
    height: auto;
    transition: 0.2s ease-in-out;
}
.welcome a:hover img {
    filter: drop-shadow(0 0 10px red);
    transform: scale(0.9);
}
.mb-welcome {
    display: none;
}
@media screen and (max-width: 991px) {
    .welcome {
        display: none;
    }
    .mb-welcome {
        display: block;
    }
    .mb-welcome a {
        display: block;
    }
    .mb-welcome a img {
        width: 100%;
        max-width: 45px;
        height: auto;
        transition: 0.2s ease-in-out;
    }
    .mb-welcome .left {
        position: fixed;
        left: 15px;
        top: 15px;
        width: auto;
        height: 45px;

        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 10px;
    }
    .mb-welcome .right {
        position: fixed;
        right: 15px;
        top: 15px;
        width: auto;
        height: 45px;

        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 10px;
    }
}
/*======================================================================================================================
ADV
======================================================================================================================*/
.adv {
    text-align: center;
    display: none;
}
.adv img {
    width: 100%;
    max-width: 280px;
    height: auto;
}
@media screen and (max-width: 768px) {
    .adv {
        display: block;
    }
}
