@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-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: #141415;
  position: relative;
  z-index: 1;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
  color: #fa4d00;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  color: #fa4d00;
}

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: #fa4d00;
  font-size: 18px;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}
table tr td,
table tr th {
  border: 1px solid #8e8e8e;
  padding: 15px;
}
table tr th {
  background-color: rgb(81, 111, 195);
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #202021;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 15px 0;
  background-color: #141415;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container .logo {
  width: 100px;
}
.header .container .auth {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}
.header .container .auth .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  padding: 12px 10px;
  font-weight: 600;
  border-radius: 0.5rem;
}
.header .container .auth .btn-1 {
  box-shadow: 1px 1px 10px 5px #fa4d00;
  background: linear-gradient(0deg, #fa4d00 0, #fa5e00);
  position: relative;
  overflow: hidden;
}
.header .container .auth .btn-1:hover::before {
  left: 100%;
}
.header .container .auth .btn-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(142, 142, 142, 0.4), transparent);
  transition: all 1500ms;
}
.header .container .auth .btn-2 {
  background: linear-gradient(0deg, #428cdc 0, #509aea 97%, #509aea);
  animation: glowing 1500ms infinite;
}
.header .container .auth .btn-2:hover {
  animation: none;
}

.main {
  height: 100%;
  flex: 1 1 auto;
}
.main .slots {
  display: flex;
  flex-direction: column;
  padding: 50px 0;
}
.main .slots__label {
  align-items: center;
  background: #202021;
  border-radius: 12px 12px 0 0;
  display: flex;
  padding: 14px 16px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.main .slots__label::after {
  background: #202021;
  border-radius: 0 0 12px;
  bottom: 0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  content: "";
  display: block;
  height: 100%;
  opacity: 1;
  position: absolute;
  right: -26px;
  top: 0;
  transform: rotate(180deg);
  width: 32px;
}
.main .slots__label svg {
  margin-right: 8px;
  z-index: 2;
}
.main .slots__label .label__text {
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
  z-index: 2;
}
.main .slots__cards {
  border-radius: 0 8px 8px;
  padding: 18px;
  position: relative;
  background-color: #202021;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.main .slots__cards .card {
  flex: 0 0 calc(25% - 20px);
}
.main .slots__cards .card__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.main .slots__cards .card__item:hover .card__img:hover::before {
  opacity: 1;
}
.main .slots__cards .card__item:hover .card__img:hover .wagering {
  opacity: 0;
}
.main .slots__cards .card__item:hover .card__img:hover .item-img {
  filter: blur(8px);
}
.main .slots__cards .card__img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.main .slots__cards .card__img::before {
  background: url("../img/play-icon.svg") no-repeat 50%;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 90px;
  left: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.2s ease-in-out;
  width: 90px;
  z-index: 2;
}
.main .slots__cards .card__img .wagering {
  left: 8px;
  position: absolute;
  top: 8px;
  transition: opacity 0.8s ease-in-out;
}
.main .slots__cards .card__img .item-img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: filter 0.3s ease-in-out;
  width: 100%;
}
.main .slots__cards .card .item__name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  margin-top: 8px;
  transition: color 0.3s ease-in-out;
}
.main__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin: 15px auto;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(0deg, #fa4d00 0, #fa5e00);
  padding: 12px 10px;
  animation: glowing 1500ms infinite;
  transition: all 0.2s ease-in-out;
}
.main__btn:hover {
  animation: none;
}
.main .banner {
  padding-top: 30px;
  background-color: #202021;
}
.main .banner .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.main .banner__text {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main .banner__title {
  font-size: 32px;
  font-weight: 700;
  color: rgb(238, 197, 70);
}
.main .banner .main__btn {
  margin-left: 0;
}
.main .banner__img {
  flex: 0 0 50%;
}
.main .bonuses {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 30px 0;
}
.main .bonuses .bonus__card {
  flex: 0 0 calc(33.3% - 2rem);
  border-radius: 12px;
  background: #202021;
  padding: 1rem 2rem;
  height: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main .bonuses .bonus__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  flex: 1;
}
.main .bonuses .bonus__img {
  max-width: 60%;
  margin-top: -50px;
  position: relative;
}
.main .bonuses .bonus__img img {
  position: relative;
  z-index: 1;
}
.main .bonuses .bonus__img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #428cdc;
  z-index: 0;
  filter: blur(40px);
}
.main .bonuses .bonus__title {
  font-size: 20px;
}
.main .bonuses .bonus__text {
  color: rgb(238, 197, 70);
}
.main .content {
  padding: 50px 0;
}
.main .content p {
  margin: 15px 0;
}

.footer {
  background: #202021;
  padding: 30px 0;
}
.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;
}
.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: #fa4d00;
  font-weight: 700;
}
.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;
}

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

@media (max-width: 1199px) {
  .footer .flex {
    flex-direction: column;
    gap: 10px;
  }
}
@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;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    gap: 10px;
  }
  .header .container .auth .btn {
    width: auto;
  }
  .main .slots {
    padding: 30px 0;
  }
  .main .slots__cards {
    gap: 10px;
  }
  .main .slots__cards .card {
    flex: 0 0 calc(50% - 10px);
  }
  .main .banner .container {
    flex-direction: column-reverse;
  }
  .main .banner .container img {
    max-width: 100%;
  }
  .main .banner__text {
    align-items: center;
    text-align: center;
  }
  .main .banner .main__btn {
    margin-left: auto;
  }
  .main .content {
    padding: 15px 0;
  }
  .main .bonuses .bonus__card {
    flex: 1;
  }
  .footer .container .grid {
    display: flex;
    flex-wrap: wrap;
  }
}
@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #fa4d00;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}