@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500&family=Montserrat:wght@500;700&family=Rajdhani:wght@700&family=Yantramanav&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  color: white;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  box-sizing: border-box;
}

h1, h2, h3, h4 {
  font-style: normal;
  font-weight: 400;
  margin: 0px;
  padding: 0px;
}

.container {
  width: 1140px;
  margin: 0 auto;
}
@media (max-width: 1230px) {
  .container {
    width: 900px;
  }
}
@media (max-width: 960px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}

body {
  background-color: rgb(24, 24, 24);
}

.banner {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.33) 0%, rgba(18, 18, 18, 0.822065) 68.61%, #181818 93.42%), url(../images/banner.jpg);
  background-size: cover;
  background-position: center;
  padding-bottom: 50px;
}
.banner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.banner nav .links {
  background-color: rgba(255, 255, 255, 0.58);
  transform: skew(-45deg);
  padding: 0px 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media (max-width: 1000px) {
  .banner nav .links {
    margin-right: 50px;
  }
}
@media (max-width: 900px) {
  .banner nav .links {
    margin-right: 0px;
    width: 100%;
    padding: 0px;
    transform: skew(0deg);
    background-color: rgba(255, 255, 255, 0);
  }
}
.banner nav .links button {
  transform: skew(45deg);
  color: black;
  background-color: transparent;
  border: none;
  margin: auto 0px;
  padding: 20px 40px;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  color: #FFFFFF;
  transition: 0.3s;
}
@media (max-width: 900px) {
  .banner nav .links button {
    width: 100%;
    transform: skew(0deg);
    text-decoration: underline;
  }
}
.banner nav .links button:hover {
  cursor: pointer;
  transition: 0.3s;
  color: black;
  background-color: white;
  box-shadow: 0px 0px 20px black;
}
.banner nav .logo {
  display: flex;
}
@media (max-width: 900px) {
  .banner nav .logo {
    width: 100%;
    justify-content: center;
    padding: 20px 0px;
  }
}
.banner nav .logo img {
  margin: auto 0px;
}
.banner .banner_inner {
  text-align: center;
}
.banner .banner_inner h1 {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 86px;
  line-height: 31px;
  color: white;
  margin-top: 150px;
}
.banner .banner_inner h1 .red {
  color: rgb(255, 49, 49);
}
@media (max-width: 900px) {
  .banner .banner_inner h1 {
    font-size: 36px;
    line-height: 31px;
    margin-top: 50px;
  }
}
.banner .banner_inner h2 {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 48px;
  line-height: 59px;
  color: white;
  margin-top: 30px;
}
@media (max-width: 900px) {
  .banner .banner_inner h2 {
    font-size: 16px;
    line-height: 59px;
    margin-top: 10px;
  }
}
.banner .banner_inner p {
  margin-top: 10px;
  font-family: "Yantramanav";
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: white;
  padding: 0px 240px;
}
@media (max-width: 1200px) {
  .banner .banner_inner p {
    padding: 0px 100px;
  }
}
@media (max-width: 900px) {
  .banner .banner_inner p {
    padding: 0px 20px;
    font-size: 16px;
    line-height: 29px;
    margin-top: 0px;
  }
}

.btn_play {
  transform: skew(-30deg);
  color: white;
  background-color: black;
  border: 4px solid white;
  padding: 12px 100px;
  margin-top: 40px;
  border-radius: 5px;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
  box-shadow: 0px 0px 40px 10px white;
  transition: 0.3s;
}
.btn_play div {
  transform: skew(30deg);
}

.btn_play:hover {
  transition: 0.3s;
  color: black;
  background-color: white;
  border: 4px solid black;
  box-shadow: 0px 0px 40px 10px black;
  cursor: pointer;
}
.btn_play:hover div {
  color: black;
}

.plus18 {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Inter";
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  display: flex;
  justify-content: center;
}
.plus18 .text {
  color: rgba(255, 255, 255, 0.5);
  margin: auto 0;
  margin-left: 20px;
}

.someinfo {
  background-color: rgba(255, 49, 49, 0.53);
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  padding: 30px 0px;
  text-align: center;
}
@media (max-width: 900px) {
  .someinfo {
    padding: 15px 0px;
    font-size: 10px;
    line-height: 15px;
  }
}

.bonus {
  margin-top: 30px;
}
.bonus .container {
  width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  row-gap: 20px;
}
@media (max-width: 950px) {
  .bonus .container {
    width: 100%;
    padding: 0 15px;
  }
}
.bonus .container .bonus_element {
  border: 3px solid rgb(113, 112, 112);
  border-radius: 10px;
  width: 31%;
  padding: 50px 30px;
  text-align: center;
  min-height: 380px;
}
@media (max-width: 950px) {
  .bonus .container .bonus_element {
    width: 100%;
    padding: 50px 100px;
  }
}
@media (max-width: 500px) {
  .bonus .container .bonus_element {
    padding: 50px 20px;
  }
}
.bonus .container .bonus_element h3 {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 31px;
  margin-top: 40px;
}
.bonus .container .bonus_element p {
  margin-top: 20px;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
}

footer {
  margin: 40px 0px;
}
footer nav {
  background-color: rgba(255, 49, 49, 0.53);
}
footer nav .container {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  padding: 20px 0px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 900px) {
  footer nav .container {
    padding: 15px 15px;
  }
}
@media (max-width: 500px) {
  footer nav .container {
    justify-content: space-around;
  }
}
footer nav .container .links {
  margin: auto 0px;
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  text-decoration: none;
}
@media (max-width: 500px) {
  footer nav .container .links {
    margin-top: 20px;
    width: 100%;
    justify-content: space-around;
  }
}
footer nav .container a {
  color: white;
  transition: 0.3s;
}
footer nav .container a:hover {
  color: gray;
  transition: 0.3s;
}
footer .info {
  padding-top: 30px;
}
footer .info p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.3);
  padding: 10px 50px;
  text-align: center;
}
@media (max-width: 900px) {
  footer .info p {
    padding: 20px;
  }
}

.games {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
  padding: 60px 0px;
}
.games .game {
  width: 31%;
  padding: 20px;
  padding-bottom: 30px;
  border-radius: 10px;
  border: 2px solid white;
  text-align: center;
}
@media (max-width: 900px) {
  .games .game {
    width: 48%;
  }
}
@media (max-width: 600px) {
  .games .game {
    width: 100%;
  }
}
.games .game img {
  width: 100%;
  height: 188px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 0px 40px 5px black;
  border-radius: 10px;
}
.games .game button {
  padding: 5px 60px;
  font-size: 20px;
  box-shadow: 0px 0px 40px 5px white;
}
.games .game button:hover {
  box-shadow: 0px 0px 40px 5px black;
}

.form_popup {
  transition: 0.3s;
  opacity: 1;
  z-index: 3;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.44);
  width: 100%;
  height: 100vh;
  padding: 0px 12px;
}
.form_popup .form {
  font-family: "Montserrat";
  padding: 20px 50px 20px;
  background-color: rgba(0, 0, 0, 0.44);
  border: 2px solid white;
  border-radius: 32px;
  width: 100%;
  max-width: 850px;
  margin: auto;
  margin-top: 10vh;
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
}
@media (max-width: 450px) {
  .form_popup .form {
    padding: 20px 15px 50px;
  }
}
.form_popup .form div {
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  margin-bottom: 40px;
}
.form_popup .form input:not([type=checkbox]) {
  display: block;
  margin-top: 15px;
  margin-bottom: 40px;
  width: 100%;
  padding: 15px 25px;
  border-radius: 16px;
  box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 0.3);
}
.form_popup .form label {
  font-weight: 400;
  font-size: 24px;
  text-align: left;
}
.form_popup .form button {
  font-weight: 700;
  font-size: 24px;
  color: white;
  background-color: transparent;
  border: none;
  text-decoration: underline;
  border-radius: 90px;
  transition: 0.4s;
}
.form_popup .form button:hover {
  cursor: pointer;
  color: gray;
  transition: 0.4s;
}
.form_popup .form img {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  transition: 0.3s;
}
.form_popup .form img:hover {
  cursor: pointer;
  opacity: 50%;
  transition: 0.3s;
}

.form_reg_popup .form {
  margin-top: 10vh;
}
.form_reg_popup .form div {
  margin-bottom: 0;
}
.form_reg_popup .form .title {
  margin-bottom: 10px;
}
.form_reg_popup .form .input_flex {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form_reg_popup .form .input_wrapper {
  width: 48%;
  margin-bottom: 0;
  margin: 0;
  text-align: left;
}
@media (max-width: 700px) {
  .form_reg_popup .form .input_wrapper {
    width: 100%;
  }
}
.form_reg_popup .form .input_wrapper label {
  margin: 0;
}
.form_reg_popup .form input:not([type=checkbox]) {
  margin-top: 10px;
  margin-bottom: 0px;
  width: 100%;
}
@media (max-width: 700px) {
  .form_reg_popup .form input:not([type=checkbox]) {
    padding: 10px 20px;
  }
}
.form_reg_popup .form .check_label {
  font-weight: 400;
  font-size: 24px;
}
@media (max-width: 700px) {
  .form_reg_popup .form .check_label {
    font-size: 18px;
  }
}
.form_reg_popup .form .check_wrapper {
  display: flex;
  justify-content: left;
  margin-bottom: 10px;
}
.form_reg_popup .form input[type=checkbox] {
  opacity: 0;
}
.form_reg_popup .form input[type=checkbox] ~ label::before {
  content: "x";
  color: transparent;
  line-height: 30px;
  text-align: center;
  height: 33px;
  border: 3px solid white;
  width: 33px;
  border-radius: 16px;
  margin-right: 10px;
  display: inline-block;
}
.form_reg_popup .form input[type=checkbox]:checked ~ label::before {
  color: white;
}
.form_reg_popup .form button {
  margin-bottom: 10px;
}

.invisible {
  opacity: 0;
  display: none;
  transition: 0.3s;
}

#game_popup {
  transition: 0.3s;
  z-index: 10;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  padding: 0px 15px;
  background-color: rgba(0, 0, 0, 0.44);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
}
#game_popup .game_popup_inner {
  font-family: "Montserrat";
  background-color: rgba(0, 0, 0, 0.44);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
  border: 2px solid white;
  padding: 20px 50px 20px;
  border-radius: 32px;
  width: 100%;
  max-width: 850px;
  margin: auto;
  margin-top: 10vh;
  height: 70vh;
}
@media (max-width: 550px) {
  #game_popup .game_popup_inner {
    padding: 20px 20px 20px;
  }
}
#game_popup .game_popup_inner img {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  transition: 0.3s;
}
#game_popup .game_popup_inner img:hover {
  cursor: pointer;
  opacity: 50%;
  transition: 0.3s;
}
#game_popup .game_popup_inner #game_name {
  font-size: 30px;
  font-weight: 700;
}

#iframe {
  width: 100%;
  margin-top: 20px;
  height: 90%;
}