@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=Inter:100,200,300,regular,500,600,700,800,900&display=swap);
*: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: "Inter", sans-serif;
  color: #fff;
}

body {
  min-height: 100vh;
  background: #161924;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
  color: #f2a100;
}

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: #f2a100;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}
table tr td,
table tr th {
  border: 1px solid #f2a100;
  padding: 15px;
}
table tr th {
  background-color: #f2a100;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #676767;
}

.wrapper {
  display: flex;
  min-height: 100vh;
}

.header,
.header.active {
  position: sticky;
  width: 250px;
  height: 100vh;
  overflow-y: auto;
  top: 0;
  left: 0;
  z-index: 99;
  background: #1d202b;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
  padding: 1rem 1rem 3rem;
}
.header .logo,
.header.active .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo .desk-burger svg,
.header.active .logo .desk-burger svg {
  width: 25px;
  height: 25px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  transform: scaleX(-1);
}
.header .logo .desk-burger svg:hover,
.header.active .logo .desk-burger svg:hover {
  fill: #fff;
}
.header .header__icons,
.header.active .header__icons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
.header .header__link,
.header.active .header__link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  animation: all 0.2s ease-in-out;
  border-radius: 10px;
  width: 100%;
  padding: 10px;
  gap: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.header .header__link img,
.header.active .header__link img {
  width: 16px;
  height: 16px;
}
.header .header__link:hover,
.header.active .header__link:hover {
  background-color: rgba(159, 187, 238, 0.487);
}

.header.hide {
  width: 50px;
  padding: 0.5rem;
}
.header.hide .logo {
  justify-content: center;
}
.header.hide .logo .icon {
  display: none;
}
.header.hide .desk-burger svg {
  transform: scale(1);
}
.header.hide .header__icons span {
  display: none;
}

.main {
  height: 100%;
  flex: 1 1 auto;
}
.main .banner {
  width: 100%;
  padding: 2rem;
  position: relative;
  min-height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
.main .banner__img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.main .banner__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.main .banner__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 80%;
}
.main .banner__title {
  font-size: 32px;
  font-weight: 700;
}
.main .banner__subtitle {
  font-size: 18px;
  font-weight: 500;
}
.main .banner__btn {
  display: flex;
  justify-content: center;
  width: 200px;
  padding: 15px;
  border-radius: 20px;
  background: #f2a100;
  color: #111;
  font-weight: 600;
  animation: glowing 1300ms infinite;
}
.main .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 30px;
}
.main .cards .card {
  border-radius: 12px;
  position: relative;
  background-color: rgb(20, 25, 33);
  padding: 1rem;
  overflow: hidden;
  flex: 0 0 calc(25% - 1rem);
  height: 150px;
}
.main .cards .card__text {
  max-width: 60%;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.main .cards .card__text p {
  flex: 1;
}
.main .cards .card__btn {
  border-radius: 12px;
  padding: 0.3rem;
  background-color: #ff9853;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
.main .cards .card__btn:hover {
  background-color: rgba(223, 184, 120, 0.4156862745);
}
.main .cards .card img {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center bottom;
  transition: transform 0.2s ease-in-out;
}
.main .cards .card img:hover {
  transform: scale(1.05);
}
.main .slots {
  padding: 30px 0;
}
.main .slots h2 {
  text-align: left;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.main .slots h2 img {
  width: 28px;
  height: 28px;
}
.main .slots .flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.main .slots .flex__item {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: transform 0.15s linear;
  background-color: rgb(30, 29, 38);
}
.main .slots .flex__item:hover {
  transform: scale(1.02);
  z-index: 4;
}
.main .slots .flex__item:hover .img .gamecard_links {
  opacity: 1;
  pointer-events: auto;
}
.main .slots .flex__item .img {
  width: 100%;
  height: 200px;
  position: relative;
}
.main .slots .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 .slots .flex__item .img .gamecard_links {
  align-items: center;
  background-color: rgba(15, 17, 39, 0.7607843137);
  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 .slots .flex__item .img .gamecard_links .gamecard_play {
  background: #f2a100;
  color: #111;
  font-size: 12px;
  height: 30px;
  padding: 0 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  font-weight: 700;
}
.main .slots .flex__item .title {
  padding: 15px 10px;
  font-size: 14px;
  font-weight: 600;
}
.main__body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main .logo {
  flex: 0 0 80px;
}
.main__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
.main__header .header__burger {
  display: none;
}
.main__center {
  flex: 1;
  padding: 30px 0 50px 0;
}
.main .auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.main .auth .btn {
  display: flex;
  justify-content: center;
  height: 100%;
  padding: 10px 12px;
  font-weight: 600;
  width: 150px;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
}
.main .auth .btn-1 {
  border: 2px solid #f2a100;
}
.main .auth .btn-1:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.main .auth .btn-2 {
  background: #f2a100;
  color: #111;
}
.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: #f2a100;
  color: #111;
  font-weight: 600;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  margin: 20px 0;
}
.main__btn:hover {
  background-color: rgb(180, 22, 61);
}
.main .slots img {
  transition: all 0.3s ease-in-out;
}
.main .slots img:hover {
  transform: scale(1.02);
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 30px 0;
  border-top: 1px solid #f2a100;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer .container p {
  font-size: 14px;
}
.footer .container .grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 0.5fr 0.5fr 0.5fr;
  gap: 2rem;
}
.footer .container .grid__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer .container .grid__item .logo {
  width: 80px;
  flex: 0 0 auto;
}
.footer .container .grid__item ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .container .grid__item ul li {
  font-size: 14px;
}
.footer .container .grid__item ul li a:hover {
  text-decoration: underline;
}
.footer .container .grid__title {
  font-size: 18px;
  color: #f2a100;
  font-weight: 700;
}
.footer .container .providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.footer .container .providers img {
  height: 50px;
}
.footer .container .icons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 30px;
}
.footer .container .icons .icon__item {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer .container .icons .icon__item svg {
  height: 40px;
}
.footer .container .coop {
  font-size: 13px;
  color: #7c7c7c;
}

.faq {
  margin: 30px auto;
  padding: 40px;
  background-color: rgb(30, 29, 38);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.faq__item {
  border-top: 1px solid #fff;
  padding: 24px 0;
}
.faq__item.active .faq__body {
  display: block;
}
.faq__item.active .faq__question-button {
  background-color: #f2a100;
}
.faq__item.active .faq__icon {
  transform: translateY(-50%) rotate(45deg);
}
.faq__title {
  font-size: 30px;
  font-weight: 600;
}
.faq__body {
  margin-top: 40px;
  display: none;
  font-size: 14px;
}
.faq__body p {
  margin: 15px 0;
}
.faq__question {
  position: relative;
  width: 100%;
  text-align: left;
  padding-right: 44px;
  font-weight: 600;
  cursor: pointer;
}
.faq__question-button {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  z-index: 1;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #f2a100;
}
.faq__icon {
  position: absolute;
  top: 50%;
  z-index: 2;
  right: 8px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.faq__icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.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) {
  table {
    display: block;
  }
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .header,
  .header.active {
    position: fixed;
    width: 50px;
    padding: 0.5rem;
    height: auto;
    justify-content: center;
  }
  .header .logo,
  .header.active .logo {
    justify-content: center;
  }
  .header .logo .icon,
  .header.active .logo .icon {
    display: none;
  }
  .header .logo .desk-burger svg,
  .header.active .logo .desk-burger svg {
    transform: scale(1);
  }
  .header .header__link,
  .header.active .header__link {
    padding: 0.5rem;
  }
  .header .header__link span,
  .header.active .header__link span {
    display: none;
  }
  .header .header__icons,
  .header.active .header__icons {
    display: none;
  }
  .header__logo,
  .header.active__logo {
    width: 50px;
    padding: 10px;
  }
  .header.hide {
    width: 250px;
    height: 100vh;
    justify-content: flex-start;
  }
  .header.hide .logo {
    justify-content: space-between;
    align-items: center;
  }
  .header.hide .logo .desk-burger svg {
    transform: scale(-1);
  }
  .header.hide .logo .icon {
    display: flex;
  }
  .header.hide .header__icons {
    display: flex;
  }
  .header.hide .header__link span {
    display: flex;
  }
  .main .banner__img img {
    opacity: 0.3;
  }
  .main__header {
    gap: 1rem;
    padding: 10px;
    justify-content: flex-end;
  }
  .main__header .logo {
    flex: 0 0 120px;
  }
  .main__header .auth {
    gap: 0.5rem;
  }
  .main__header .auth .btn {
    width: auto;
    padding: 8px;
    font-size: 14px;
  }
  .main .cards .card {
    flex: 0 0 calc(50% - 1rem);
  }
  .main .cards .card__text {
    font-size: 13px;
  }
  .main .cards .card__btn {
    background-color: #38bde5;
    color: #fff;
    position: relative;
    z-index: 1;
  }
  .main .cards .card img {
    width: 50%;
    opacity: 0.3;
    bottom: 0;
    top: auto;
  }
  .main .slots .flex {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  .main .slots .flex__item .img {
    height: 100px;
  }
  .main__center {
    padding: 0;
  }
  .main .footer .flex {
    flex-direction: column;
    gap: 10px;
  }
  .main .faq {
    max-width: 100%;
    margin: 30px 0;
    gap: 30px;
  }
  .main .faq__title {
    font-size: 24px;
  }
  .main .faq__question {
    font-size: 16px;
  }
  .main .faq__question-button {
    width: 30px;
    height: 30px;
  }
  .main .faq__icon {
    width: 14px;
    height: 14px;
  }
  .main .faq__body {
    margin-top: 20px;
    font-size: 14px;
  }
  .container {
    max-width: 100vw;
  }
  .main .content img {
    max-width: 100%;
  }
  .social {
    max-width: 50px;
  }
  .footer .container {
    gap: 2rem;
  }
  .footer .container .grid {
    display: flex;
    flex-wrap: wrap;
  }
  .footer .container .icons {
    justify-content: center;
  }
}
@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #f2a100;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}
.play-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.btn-play {
  padding: 14px 30px;
  background: linear-gradient(90deg, #FFA600, #FF7700);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  font-family: sans-serif;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 136, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

.btn-play:hover {
  background: linear-gradient(90deg, #FF7700, #FFA600);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 136, 0, 0.6);
  color: #fff;
}