@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
    transition: all 0.2s;
}

:root {
    /* color */
    --gold-color: #f2b82a;
    /* color */
    --color-1: #561b8a;
    --color-2: #681e94;
    /* color_a */
    --color-1-a: #5f249d7a;
    --color-2-a: #a875ff6b;
    /* color_b */
    --color-1-b: #992de2;
    --color-2-b: #bf56fa;
    /* bg */
    --bg-2: url('/static/img/bg/3451603.jpg');
    --bg-1: url('/static/img/bg/bg.jpg');
}

body::after {
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(50%);
    background-image: var(--bg-1);
    background-position: center;
    background-size: cover;
}

.navbar {
    background: linear-gradient(45deg, var(--color-1) 50%, var(--color-2) 100%);
    box-shadow: inset 5px 5px 10px 0px #fff4, inset -5px -5px 10px 0px #0004, 0 0 10px 0 var(--color-1);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.navbar .container .logo img {
    width: 250px;
}

.navbar .container .row_btn {
    display: flex;
    gap: 5px;
}

.navbar .container .row_btn .login_btn a,
.navbar .container .row_btn .register a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 20px;
}

.navbar .container .row_btn .login_btn a {
    background: linear-gradient(0deg, #363636 50%, #ccc 100%);
    border-radius: 10px;
    border: 2px solid var(--gold-color);
    box-shadow: 0 0 0 0 var(--gold-color);
    transition: all 0.5s;
}

.navbar .container .row_btn .login_btn a:hover {
    background: linear-gradient(180deg, #363636 50%, #ccc 100%);
}

.navbar .container .row_btn .register a {
    background: linear-gradient(0deg, var(--color-1-b) 50%, var(--color-2-b) 100%);
    border-radius: 10px;
    border: 2px solid #f2b82a;
    box-shadow: 0 0 0 0 #FFF;
    transition: all 0.5s;
    color: #FFF;
}

.navbar .container .row_btn .register a:hover {
    background: linear-gradient(180deg, var(--color-2) 50%, var(--color-1) 100%);
}

.content {
    width: 80%;
    margin: 10px auto;
    display: flex;
    gap: 10px;
}

.content .sidebar {
    height: 100%;
    position: sticky;
    top: calc(70.2px + 10px);
    z-index: 9;
}

.content .sidebar ul {
    width: 100%;
}

.content .sidebar ul li {
    list-style: none;
    margin-bottom: 10px;
}

.content .sidebar ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient( 0deg, var(--color-1-a) 50%, var(--color-2-a) 100%);
    padding: 10px;
    border-radius: 10px;
    width: 220px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.content .sidebar ul li a::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    z-index: -1;
    background: linear-gradient(0deg, var(--color-1) 50%, var(--color-2) 100%);
    transition: all 0.2s;
}

.content .sidebar ul li a:hover::after {
    left: 0%;
}

.content .sidebar ul li a img {
    width: 50px;
}

.content .sidebar ul li a.active {
    background: linear-gradient(0deg, var(--color-1) 50%, var(--color-2) 100%);
    border: 2px solid var(--gold-color);
    box-shadow: 0 0 10px 0 var(--gold-color), inset -5px -5px 10px 0px #fff4, inset 5px 5px 10px 0px #0004;
}

.content .container_content {
    width: 70%;
    margin: 0 auto;
}

.content .logo_gif img {
    /* display: block; */
    display: none;
    margin: 0 auto;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--gold-color);
    box-shadow: 0 0 10px 0 var(--gold-color);
}

.content .logo_gif_2 img {
    display: block;
    /* display: none; */
    margin: 0 auto;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--gold-color);
    box-shadow: 0 0 10px 0 var(--gold-color);
}

.content .news {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 10px;
    margin: 5px 0;
    background: linear-gradient(0deg, var(--color-1) 50%, var(--color-2) 100%);
}

.game_casino {
    background: linear-gradient( 0deg, var(--color-1-a) 50%, var(--color-2-a) 100%);
    padding: 10px;
    border-radius: 10px;
}

.game_casino .header_casino {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(0deg, var(--color-1-b) 50%, var(--color-2-b) 100%);
    border: 2px solid #f2b82a;
    box-shadow: 0 0 0 0 #FFF, inset 0 0 0 0 #fff4, inset 0 0 0 0 #0004;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
}

.game_casino .header_casino img {
    width: 50px;
}

.game_casino .header_casino p {
    color: #FFF;
    font-weight: 400;
}

.game_casino .game {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
}

.game_casino .game img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.game_casino .game img:hover {
    box-shadow: 0 0 10px 0 var(--gold-color);
}

.game_slot {
    background: linear-gradient( 0deg, var(--color-1-a) 50%, var(--color-2-a) 100%);
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0 10px 0;
}

.game_slot .header_slot {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(0deg, var(--color-1-b) 50%, var(--color-2-b) 100%);
    border: 2px solid #f2b82a;
    box-shadow: 0 0 0 0 #FFF, inset 0 0 0 0 #fff4, inset 0 0 0 0 #0004;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
}

.game_slot .header_slot img {
    width: 50px;
}

.game_slot .header_slot p {
    color: #FFF;
    font-weight: 400;
}

.game_slot .game {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
}

.game_slot .game img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.game_slot .game img:hover {
    box-shadow: 0 0 10px 0 var(--gold-color);
}

.seo {
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    padding: 10px;
    border-top: 2px solid var(--gold-color);
    border-bottom: 2px solid var(--gold-color);
    box-shadow: 0 0 10px 0 var(--gold-color);
}

.seo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(20%);
    width: 100%;
    height: 100%;
    background-image: var(--bg-2);
    background-size: cover;
    background-position: center;
}

.seo .container_seo {
    width: 80%;
    display: flex;
    gap: 10px;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.seo .container_seo img {
    width: 550px;
}

.seo .container_seo p {
    width: 100%;
    color: #fff;
    font-weight: 300;
    text-align: justify;
    text-indent: 30px;
}

.swiper_con .header p {
    color: #fff;
    text-align: center;
    position: relative;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.swiper_con .header p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background-color: var(--gold-color);
    box-shadow: 0 0 10px 0 var(--gold-color);
}

.swiper {
    width: 80%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
    padding: 10px;
}

.silde_img img {
    width: 100%;
    border: 2px solid var(--gold-color);
    box-shadow: 0 0 10px 0 var(--gold-color);
    border-radius: 10px;
}

.text_footer {
    width: 80%;
    margin: 10px auto;
    display: grid;
    justify-content: center;
    text-align: center;
}

.text_footer .text_1 {
    color: var(--gold-color);
    font-size: 2rem;
    text-shadow: 0 0 10px var(--gold-color);
}

.text_footer .text_2 {
    color: #fff;
    font-size: 1.5rem;
    text-shadow: 0 0 0 #fff;
}

.text_footer img {
    margin: 10px auto 0 auto;
    filter: drop-shadow2(0 0 5px var(--gold-color));
}

.menu_bar {
    width: 100%;
    overflow: hidden;
    padding: 10px;
    position: sticky;
    z-index: 9;
    display: none;
}

.menu_bar .container {
    display: flex;
}

.menu_bar .item {
    width: 70px;
    text-align: center;
    background: linear-gradient(0deg, var(--color-1-b) 50%, var(--color-2-b) 100%);
    padding: 10px;
    border-radius: 10px;
    border: 2px solid var(--gold-color);
    box-shadow: 0 0 0 0 var(--gold-color);
}

.menu_bar .item a {
    text-decoration: none;
    color: #fff;
}

.menu_bar .item a img {
    width: 40px;
}

.menu_bar .item a p {
    font-size: 1rem;
}

.menu_bar .swiper-button-next,
.menu_bar .swiper-button-prev {
    color: var(--gold-color);
    text-shadow: 0 0 10px var(--gold-color);
}

.menu_mobile {
    display: none;
    width: 100%;
    background: linear-gradient(0deg, var(--color-1) 50%, var(--color-2) 100%);
    position: fixed;
    padding: 10px 0;
    border-radius: 10px 10px 0 0;
    border-top: 2px solid var(--gold-color);
    box-shadow: 0 0 0 0 var(--gold-color), inset 0 0 0 0 #fff4, inset 0 0 0 0 #0004, 0 0 0 0 var(--color-1);
    bottom: 0;
    z-index: 99;
}

.menu_mobile .container_menu {
    width: 90%;
    display: flex;
    gap: 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.menu_mobile .container_menu .menu_item a {
    text-decoration: none;
    color: #fff;
}

.menu_mobile .container_menu .menu_item a img {
    width: 60px;
    filter: drop-shadow2(0 0 0 var(--gold-color));
}

.menu_mobile .container_menu .menu_item:nth-child(3) a img {
    transform: scale(1.5) translateY(-20px);
}

.overlay {
    display: none;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    background: #0005;
    z-index: 99;
}

.overlay.active {
    display: block;
}

.form_login {
    background: linear-gradient(0deg, var(--color-1) 50%, var(--color-2) 100%);
    width: max-content;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 250%) scale(0.5);
    opacity: 0;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid var(--gold-color);
    box-shadow: 0 0 10px 0 var(--gold-color);
    color: #fff;
    transition: all 0.2s;
    z-index: 100;
}

.form_login.active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.form_login .close_btn a {
    color: #fff;
    background: linear-gradient(0deg, red 50%, rgb(143, 0, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid #fff;
    box-shadow: 0 0 0 0 #fff;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.form_login .header h1 {
    font-weight: 500;
    text-align: center;
    text-shadow: 0 0 5px var(--gold-color);
}

.form_login .phone {
    display: grid;
    gap: 5px;
    text-align: center;
    justify-content: center;
    margin: 10px 0;
}

.form_login .phone input {
    width: 250px;
    height: 40px;
    border-radius: 10px;
    outline: none;
    border: 2px solid var(--gold-color);
    background: linear-gradient(0deg, var(--color-1) 50%, var(--color-2) 100%);
    box-shadow: inset 0 0 0 0 #0004, inset 0 0 0 0 #fff4, 0 0 0 0 var(--gold-color);
    text-align: center;
    font-size: 1.1rem;
    margin: 0 auto;
    color: #fff;
}

.form_login .password {
    display: grid;
    gap: 5px;
    text-align: center;
    justify-content: center;
    margin: 0 0 10px 0;
}

.form_login .password input {
    width: 250px;
    height: 40px;
    border-radius: 10px;
    outline: none;
    border: 2px solid var(--gold-color);
    background: linear-gradient(0deg, var(--color-1) 50%, var(--color-2) 100%);
    box-shadow: inset 0 0 0 0 #0004, inset 0 0 0 0 #fff4, 0 0 0 0 var(--gold-color);
    text-align: center;
    font-size: 1.1rem;
    margin: 0 auto;
    color: #fff;
}

.form_login .btn_from {
    display: grid;
    gap: 5px;
    text-align: center;
    justify-content: center;
    margin: 0 0 10px 0;
}

.form_login .btn_from input {
    width: 250px;
    height: 40px;
    border-radius: 10px;
    outline: none;
    border: 2px solid #FFF;
    background: linear-gradient(0deg, var(--color-1-b) 50%, var(--color-2-b) 100%);
    box-shadow: inset 0 0 0 0 #0004, inset 0 0 0 0 #fff4, 0 0 0 0 #FFF;
    text-align: center;
    font-size: 1.1rem;
    margin: 0 auto;
    color: #FFF;
    cursor: pointer;
}

.form_login .register_link {
    margin: 20px 0 0 10px;
    border-top: 2px solid var(--gold-color);
    padding: 10px 0 0 0;
    text-align: center;
}

.form_register {
    background: linear-gradient(0deg, var(--color-1) 50%, var(--color-2) 100%);
    width: max-content;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 250%) scale(0.5);
    opacity: 0;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid var(--gold-color);
    box-shadow: 0 0 10px 0 var(--gold-color);
    color: #fff;
    transition: all 0.2s;
    z-index: 100;
}

.form_register.active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.form_register .close_btn_2 a {
    color: #fff;
    background: linear-gradient(0deg, red 50%, rgb(143, 0, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid #fff;
    box-shadow: 0 0 0px 0 #fff;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.form_register .header h1 {
    font-weight: 500;
    text-align: center;
    text-shadow: 0 0 5px var(--gold-color);
}

.form_register .phone {
    display: grid;
    gap: 5px;
    text-align: center;
    justify-content: center;
    margin: 10px 0;
}

.form_register .phone input {
    width: 250px;
    height: 40px;
    border-radius: 10px;
    outline: none;
    border: 2px solid var(--gold-color);
    background: linear-gradient(0deg, var(--color-1) 50%, var(--color-2) 100%);
    box-shadow: inset 0 0 0 0 #0004, inset 0 0 0 0 #fff4, 0 0 0 0 var(--gold-color);
    text-align: center;
    font-size: 1.1rem;
    margin: 0 auto;
    color: #fff;
}

.form_register .password {
    display: grid;
    gap: 5px;
    text-align: center;
    justify-content: center;
    margin: 0 0 10px 0;
}

.form_register .password input {
    width: 250px;
    height: 40px;
    border-radius: 10px;
    outline: none;
    border: 2px solid var(--gold-color);
    background: linear-gradient(0deg, var(--color-1) 50%, var(--color-2) 100%);
    box-shadow: inset 0 0 0 0 #0004, inset 0 0 0 0 #fff4, 0 0 0 0 var(--gold-color);
    text-align: center;
    font-size: 1.1rem;
    margin: 0 auto;
    color: #fff;
}

.form_register .btn_from {
    display: grid;
    gap: 5px;
    text-align: center;
    justify-content: center;
    margin: 0 0 10px 0;
}

.form_register .btn_from input {
    width: 250px;
    height: 40px;
    border-radius: 10px;
    outline: none;
    border: 2px solid #FFF;
    background: linear-gradient(0deg, var(--color-1-b) 50%, var(--color-2-b) 100%);;
    box-shadow: inset 0 0 0 0 #0004, inset 0 0 0 0 #fff4, 0 0 0 0 #FFF;
    text-align: center;
    font-size: 1.1rem;
    margin: 0 auto;
    color: #FFF;
    cursor: pointer;
}

.form_register .register_link {
    margin: 20px 0 0 10px;
    border-top: 2px solid var(--gold-color);
    padding: 10px 0 0 0;
    text-align: center;
}

.comp_game {
    width: 100%;
    overflow: hidden;
    padding: 10px;
    position: sticky;
}

.comp_game .container {
    display: flex;
}

.comp_game .item {
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
}

.comp_game .item a {
    text-decoration: none;
    color: #fff;
}

.comp_game .item a img {
    width: 100%;
    filter: drop-shadow2(0 0 10px var(--gold-color));
}

@media screen and (max-width: 1024px) {
    .seo {
        height: 600px;
    }
    .seo .container_seo {
        display: grid;
    }
    .seo .container_seo img {
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .navbar .container .row_btn .login_btn a {
        display: none;
    }
    .content {
        display: grid;
    }
    .menu_bar {
        display: block;
        top: calc(70.2px + 5px);
    }
    .content .sidebar {
        display: none;
    }
    .content .sidebar_mobile {
        display: block;
    }
    .content .logo_gif img {
        display: block;
        height: 100%;
    }
    .content .logo_gif_2 img {
        display: none;
    }
    .seo {
        height: 600px;
    }
    .seo .container_seo {
        display: grid;
    }
    .seo .container_seo img {
        margin: 0 auto;
    }
    .text_footer .text_2 {
        font-size: 1.4rem;
    }
    .menu_mobile {
        display: block;
    }
    .comp_game {
        width: 520px;
        margin: 0 auto;
    }
    .content .container_content {
        width: 100%;
    }
    .text_footer {
        margin-bottom: 150px;
    }
}

@media screen and (max-width: 600px) {
    .navbar .container .logo img {
        width: 200px;
    }
    .navbar .container .row_btn .register a {
        padding: 5px 10px;
    }
    .menu_bar {
        /* top: calc(57.56px + 10px); */
        top: 57.56px;
    }
    .game_slot .game {
        grid-template-columns: repeat(2, 1fr);
    }
    .game_casino .game {
        grid-template-columns: repeat(2, 1fr);
    }
    .text_footer .text_1 {
        font-size: 1rem;
    }
    .text_footer .text_2 {
        font-size: 0.6rem;
    }
    .seo .container_seo img {
        width: 300px;
    }
    .text_footer img {
        width: 300px;
    }
    .menu_mobile .container_menu .menu_item a img {
        width: 35px;
    }
    .menu_mobile .container_menu .menu_item a p {
        font-size: 0.6rem;
    }
    .menu_mobile .container_menu .menu_item:nth-child(3) a img {
        transform: scale(1.8) translateY(-10px);
    }
    .comp_game {
        width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 499px) {
    .navbar .container .logo img {
        width: 200px;
    }
    .navbar .container .row_btn .register a {
        padding: 5px 10px;
    }
    .menu_bar {
        /* top: calc(57.56px + 10px); */
        top: 57.56px;
    }
    .game_slot .game {
        grid-template-columns: repeat(2, 1fr);
    }
    .game_casino .game {
        grid-template-columns: repeat(2, 1fr);
    }
    .text_footer .text_1 {
        font-size: 1rem;
    }
    .text_footer .text_2 {
        font-size: 0.6rem;
    }
    .seo .container_seo img {
        width: 300px;
    }
    .text_footer img {
        width: 300px;
    }
    .menu_mobile .container_menu .menu_item a img {
        width: 35px;
    }
    .menu_mobile .container_menu .menu_item a p {
        font-size: 0.6rem;
    }
    .menu_mobile .container_menu .menu_item:nth-child(3) a img {
        transform: scale(1.8) translateY(-10px);
    }
}

@media screen and (max-width: 428px) {
    .navbar .container .logo img {
        width: 200px;
    }
    .navbar .container .row_btn .register a {
        padding: 5px 10px;
    }
    .seo .container_seo img {
        width: 300px;
    }
    .text_footer .text_2 {
        font-size: 1rem;
    }
    .text_footer img {
        width: 400px;
    }
    .menu_mobile .container_menu .menu_item a {
        font-size: 0.6rem;
    }
    .menu_mobile .container_menu .menu_item a img {
        width: 50px;
    }
    .text_footer {
        margin-bottom: 100px;
    }
    .game_slot,
    .game_casino {
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 425px) {
    .comp_game {
        width: 300px;
        margin: 0 auto;
    }
    .navbar .container {
        width: 95%;
    }
    .navbar .container .logo img {
        width: 150px;
    }
    .navbar .container .row_btn .register a {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    .content {
        width: 95%;
    }
    .menu_bar {
        display: block;
        top: calc(44.92px);
    }
    /* .content .sidebar_mobile ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  } */
    .content .sidebar_mobile ul li {
        margin-bottom: 0;
    }
    .game_casino .game {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .game_slot .game {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .seo .container_seo img {
        width: 300px;
    }
    .text_footer .text_1 {
        font-size: 1.5rem;
    }
    .text_footer .text_2 {
        font-size: 0.7rem;
    }
    .text_footer img {
        width: 350px;
    }
    .menu_mobile .container_menu .menu_item a {
        font-size: 0.6rem;
    }
    .menu_mobile .container_menu .menu_item a img {
        width: 40px;
        filter: drop-shadow2(0 0 0 var(--gold-color));
    }
    .menu_mobile .container_menu .menu_item:nth-child(3) a img {
        transform: scale(1.5) translateY(-10px);
    }
}

@media screen and (max-width: 375px) {
    /* .content .sidebar_mobile ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  } */
    .content .sidebar_mobile ul li {
        margin: 0 auto;
    }
    .game_casino .game {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    .game_slot .game {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    .seo {
        height: 500px;
    }
    .seo .container_seo p {
        font-size: 0.8rem;
    }
    .menu_mobile .container_menu .menu_item a {
        font-size: 0.5rem;
    }
    .form_login {
        width: 300px;
    }
    .comp_game {
        width: 300px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 320px) {
    .form-body {
        height: 100%;
    }
    .seo .container_seo img {
        width: 235px;
    }
    .text_footer img {
        width: 235px;
    }
    .menu_mobile .container_menu .menu_item a {
        font-size: 0.5rem;
    }
    .menu_mobile .container_menu .menu_item a img {
        width: 35px;
        filter: drop-shadow2(0 0 0 var(--gold-color));
    }
    .menu_mobile .container_menu .menu_item:nth-child(3) a img {
        transform: scale(1.5) translateY(-10px);
    }
    .form_login {
        width: 250px;
    }
    .form_register {
        width: 250px;
    }
}


/* webkit - scrollbar*/

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.65);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
}

.form_register .select_value {
    display: grid;
    gap: 5px;
    text-align: center;
    justify-content: center;
    margin: 0 0 10px 0;
}

.form_register .select_value select {
    width: 250px;
    height: 40px;
    background: linear-gradient(0deg, var(--color-1), var(--color-2));
    border-radius: 10px;
    border: 2px solid var(--gold-color);
    box-shadow: 0 0 0 0 var(--gold-color);
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
}

.form_register .select_value select option {
    background: var(--color-1);
    text-align: center;
}

.form_register .select_value select::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.form_register .select_value select {
    text-align: center;
}

.form_register .select_value select .lt {
    text-align: center;
}

.link_log,
.link_reg {
    color: #fff;
    font-weight: 600;
}


/* NEW CSS */

div>img {
    pointer-events: none;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row-new {
    --bs-gutter-x: 0.5rem;
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    flex: 1 0 0%;
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto;
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%;
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.33333%;
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.66667%;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }
    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.66667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }
    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.66667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }
    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.66667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }
    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .row-cols-xl-max>* {
        flex: 0 0 auto;
        width: 10%;
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }
    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.66667%;
    }
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.rounded-1 {
    border-radius: 0.2rem !important;
}

.rounded-2 {
    border-radius: 0.25rem !important;
}

.rounded-3 {
    border-radius: 0.3rem !important;
}

.rounded-4 {
    border-radius: 0.5rem !important;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background: linear-gradient(0deg, var(--color-1) 50%, var(--color-2) 100%);
    border: 2px solid var(--gold-color);
    box-shadow: 0 0 10px 0 var(--gold-color), inset -5px -5px 10px 0px #fff4, inset 5px 5px 10px 0px #0004;
    background-clip: border-box;
    border-radius: 0.5rem;
    color: #fff;
}

.card>hr {
    margin-right: 0;
    margin-left: 0;
}

.card>.list-group {
    border-top: inherit;
    border-bottom: inherit;
}

.card>.list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card>.list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.card>.card-header+.list-group,
.card>.list-group+.card-footer {
    border-top: 0;
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

.card-title {
    margin-bottom: 0.5rem;
}

.card-subtitle {
    margin-top: -0.25rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link+.card-link {
    margin-left: 1rem;
}

.card a {
    text-decoration: none;
    color: #fff;
}

.card-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
    margin-right: -0.5rem;
    margin-bottom: -0.5rem;
    margin-left: -0.5rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(0.5rem - 1px);
    border-top-right-radius: calc(0.5rem - 1px);
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(0.5rem - 1px);
    border-bottom-left-radius: calc(0.5rem - 1px);
}

.card-group>.card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }
    .card-group>.card {
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .card-group>.card+.card {
        margin-left: 0;
        border-left: 0;
    }
    .card-group>.card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .card-group>.card:not(:last-child) .card-img-top,
    .card-group>.card:not(:last-child) .card-header {
        border-top-right-radius: 0;
    }
    .card-group>.card:not(:last-child) .card-img-bottom,
    .card-group>.card:not(:last-child) .card-footer {
        border-bottom-right-radius: 0;
    }
    .card-group>.card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .card-group>.card:not(:first-child) .card-img-top,
    .card-group>.card:not(:first-child) .card-header {
        border-top-left-radius: 0;
    }
    .card-group>.card:not(:first-child) .card-img-bottom,
    .card-group>.card:not(:first-child) .card-footer {
        border-bottom-left-radius: 0;
    }
}

.modal-promotion {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(0deg, var(--color-1), var(--color-2));
    border-radius: 10px;
    box-shadow: 0 0 10px 0 var(--gold-color);
    padding: 10px;
    border: 2px solid var(--gold-color);
    z-index: 999;
    display: none;
    width: 35%;
}

.modal-promotion.active {
    display: block;
}

.modal-promotion .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-promotion .container .promotion-text {
    display: block;
    text-align: left;
    flex-direction: column;
    color: rgb(255, 255, 255);
    width: 100%;
}

.modal-promotion .container .header {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-align: center;
}

.modal-promotion .container img {
    border-radius: 10px;
    margin: 10px 0;
    width: 100%;
}

.modal-promotion .container button {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(0deg, var(--color-1), var(--color-2));
    border-radius: 10px;
    box-shadow: 0 0 10px 0 var(--gold-color);
    border: 2px solid var(--gold-color);
    font-size: 1.1rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .modal-promotion {
        width: 90%;
    }
}

.game img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    max-width: 239px;
}