@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Noto+Sans:100,200,300,regular,500,600,700,800,900);
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-weight: 400;
  font-family: "Noto Sans", sans-serif;
  color: #fff;
}

body {
  min-height: 100vh;
 overflow-x: hidden;
  background: #00030f;
  background: linear-gradient(90deg, #00030f, #37e1ff);
}

p {
  line-height: 150%;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  /*margin: 25px 0;*/
   margin: 10px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  /* text-align: center; */
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #233d50;
}

table {
  border-collapse: collapse;
  width: 100%;
  /* overflow-x: auto; */
  margin: 20px 0;
  /* display: block; */
  /* overflow: auto; */
}
table tr td,
table tr th {
  border: 1px solid #FFFFFF;
  padding: 15px;
}
table tr th {
  background-color: #f2ce74;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #e3e3e3;
  color: #000;
}

.wrapper {
  display: flex;
  min-height: 100vh;
}

.header {
  position: sticky;
  width: 90px;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 99;
  background: #00030f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 0 3px rgb(230, 230, 230);
}
.header__logo {
  flex: 0 0 100px;
  max-width: 100px;
  padding: 20px;
  border-bottom: 1px solid rgb(221, 221, 221);
}
.header__icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.header__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: all 0.2s ease-in-out;
  padding: 10px;
  border-radius: 10px;
}
.header__link:hover {
  background-color: rgba(56, 68, 91, 0.06);
}
.header__link img {
  max-width: 30px;
}
.header__link span {
  font-size: 12px;
  text-align: center;
}

.main {
  height: 100%;
  flex: 1 1 auto;
}
.main__body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(221, 221, 221);
  padding: 20px;
  background: #00030F;
  /* border-radius: 10px; */
}
/* .main__header .logo {
  flex: 0 0 100px;
} */
.main__center {
  flex: 1;
  padding: 50px 0;
}
.main .cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.main .cards .card {
  display: flex;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  flex: 0 0 calc(33% - 20px);
  border-radius: 1.25vw;
  padding: 2.7083333333vw;
  color: #333;
}
.main .cards .card::before {
  content: "";
  padding-top: 100%;
}
.main .cards .card:nth-child(1) {
  background-image: url("/assets/img/first-bg.webp");
}
.main .cards .card:nth-child(2) {
  background-image: url("/assets/img/two-bg.webp");
}
.main .cards .card:nth-child(3) {
  background-image: url("/assets/img/three-bg.webp");
}
.main .cards .card__content {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main .cards .card__title {
  font-size: 20px;
  font-weight: 600;
}
.main .auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.main .auth .btn {
  display: flex;
  justify-content: center;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}
.main .auth .btn-1 {
  border: 1px solid #fff;
  color: #fff;
}
.main .auth .btn-1:hover {
  border: 1px solid #ff4c00;
  color: #ff4c00;
}
.main .auth .btn-2 {
  background-color: #1FE1FF;
  color: #000000;
}
.main .auth .btn-2:hover {
  background-color: #1791a4;
}
.main .flex {
  margin-bottom: 20px;
}
.main .flex img {
  transition: all 0.3s ease-in-out;
}
.main .flex img:hover {
  transform: scale(1.02);
}
.main__btn {
  width: 150px;
  display: flex;
  justify-content: center;
  padding: 10px;
  background-color: #ed9e00;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  margin: 20px 0;
}
.main__btn:hover {
  background-color: #f0af2f;
}
.main .slots img {
  transition: all 0.3s ease-in-out;
}
.main .slots img:hover {
  transform: scale(1.02);
}
.main .providers {
  padding: 50px 0;
}
.main .providers .flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.main .providers .flex__item {
  border-radius: 10px;
  box-shadow: 0 4px 10px 0 #e2e2e2;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: transform 0.15s linear;
}
.main .providers .flex__item:hover {
  transform: scale(1.1);
  z-index: 4;
}
.main .providers .flex__item:hover .img .gamecard_links {
  opacity: 1;
  pointer-events: auto;
}
.main .providers .flex__item .img {
  width: 100%;
  height: 200px;
  position: relative;
}
.main .providers .flex__item .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.main .providers .flex__item .img .gamecard_links {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px 10px 0 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
  opacity: 0;
  padding: 20px 0;
  pointer-events: none;
  position: relative;
  transition: opacity 0.15s linear;
  transition-delay: 20ms;
  width: 100%;
  z-index: 2;
}
.main .providers .flex__item .img .gamecard_links .gamecard_play {
  background-color: #ed9e00;
  box-shadow: 0 3px 0 0 #ed9e00, 0 4px 4px 0 #000;
  font-size: 12px;
  height: 30px;
  padding: 0 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  font-weight: 700;
}
.main .providers .flex__item .img .gamecard_links .gamecard_play:hover {
  box-shadow: 0 3px 0 0 #ed9e00, 0 4px 4px 0 #000, inset 0 15px 15px -3px rgba(255, 255, 255, 0.4);
}
.main .providers .flex__item .title {
  padding: 15px 10px;
  font-size: 14px;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}
.main .faq {
  padding: 30px 0;
}
.main .faq .checkbox {
  display: none;
}
.main .faq label {
  display: flex;
  padding: 28px 36px;
  margin: 4px 0;
  cursor: pointer;
  background: #fff;
  border-radius: 3px;
  color: #333;
  transition: ease 0.5s;
  font-size: 20px;
  font-weight: 600;
  align-items: center;
  justify-content: space-between;
}
.main .faq label::after {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid;
  border-radius: 3px;
  margin: 0 0 0 20px;
  color: #ed9e00;
}
.main .faq .checkbox:checked + label {
  color: #ed9e00;
  margin-bottom: 0;
}
.main .faq .checkbox:checked + label:after {
  border-bottom: 7px solid;
  border-top: 0;
}
.main .faq .checkbox + label + .content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease-in, opacity 0.25s ease-in;
  background: #fff;
  border-radius: 3px;
  font-size: 14px;
}
.main .faq .checkbox:checked + label + .content {
  max-height: 1500px;
  transition: max-height 0.25s ease-out, opacity 0.25s ease-out;
  opacity: 1;
}
.main .faq .checkbox + label + .content .content__body {
  margin: 25px;
}
.main .faq__item .content .content__body ul {
  list-style: none;
  padding: 0;
}
.main .faq__item .content .content__body strong {
  font-weight: 600;
}
.main .faq__item .content .content__body img {
  max-width: 100%;
}
.main .faq__item .content .content__body .comments {
  background-color: #f2f2f0;
  padding: 20px;
  margin: 20px 0;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 30px 0;
}
.footer .payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  border-top: 1px solid rgb(221, 221, 221);
  border-bottom: 1px solid rgb(221, 221, 221);
  padding: 20px 0;
}
.footer .payments img {
  max-width: 100px;
}
.footer .nav {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px 0;
}
.footer .nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
.footer .copyright {
  display: flex;
  gap: 20px;
  border-top: 1px solid rgb(221, 221, 221);
  font-size: 12px;
}

.social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 80px;
  z-index: 99;
}
.social img {
  border-radius: 50px;
  box-shadow: 0 0 5px #d8d8d8;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .header__logo {
    width: 50px;
    padding: 10px;
  }
  .main__header {
    flex-direction: column;
    gap: 10px;
  }
  .main__center {
    padding: 20px 0;
  }
  .main .cards {
    flex-direction: column;
  }
  .main .cards .card__title {
    font-size: 16px;
  }
  .main .cards .card__desc {
    font-size: 14px;
  }
  .main .providers {
    padding: 20px 0;
  }
  .main .faq {
    padding: 20px 0;
  }
  .main .footer {
    padding: 20px 0;
  }
  .main .footer .payments {
    gap: 10px;
  }
  .main .footer .payments img {
    max-width: 50px;
  }
  .main .footer .copyright {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
  .main .footer .copyright .img {
    max-width: 80px;
  }
  .container {
    max-width: 100%;
  }
  .main .content img {
    max-width: 100%;
  }
  .social {
    max-width: 50px;
  }
}
@media screen and (max-width:768px) {
    .main .auth .btn {
        font-size: 14px;
        padding: 10px 5px;
    }
}
.table-responsive {
  overflow: auto;
}
@media screen and (max-width:426px) {
  .table-responsive {
    max-width:260px;
  }
}
@media screen and (max-width:376px) {
  .table-responsive {
    max-width:230px;
  }
}
@media screen and (max-width:320px) {
  .table-responsive {
    max-width:180px;
  }
}
.img-cov {
  width: 200px;
  height: 200px;
}
.img-cov img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
@media screen and (max-width:768px) {
  .img-cov {
    float: none !important;
    margin: 20px auto !important;
    width: 100px;
    height: 100px;
  }
}
.card__desc {
    font-size: 10px;
  }