@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: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: #1c263d;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 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;
}
table tr td,
table tr th {
  border: 1px solid #2f9df2;
  padding: 15px;
}
table tr th {
  background-color: #2f9df2;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #3e74ff;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 20px 0;
  background-color: #1c263d;
  border-bottom: 1.5px solid #2f9df2;
  box-shadow: 0 2px 15px rgb(41, 112, 255);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container .logo {
  flex: 0 0 150px;
}
.header .container .auth {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .container .auth .btn {
  display: flex;
  justify-content: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  width: 150px;
}
.header .container .auth .btn-1 {
  background: #01c9ff;
  background: linear-gradient(270deg, #01c9ff, #0179ff);
  animation: glowing2 1500ms infinite;
}
.header .container .auth .btn-1:hover {
  background: #01c9ff;
  background: linear-gradient(45deg, #01c9ff, #0179ff);
}
.header .container .auth .btn-2 {
  background: linear-gradient(90deg, #2db866 0%, #099e4f 100%);
  color: #fff;
}
.header .container .auth .btn-2:hover {
  background: linear-gradient(90deg, #099e4f 0%, #2db866 100%);
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 120px 0 50px;
}
.main .flex {
  display: flex;
  align-items: center;
}
.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 .flex-1 {
  gap: 100px;
  justify-content: space-between;
  padding: 50px 0;
}
.main .flex-1 .flex__item {
  flex: 1 1 50%;
}
.main .flex-1 .main-title {
  text-align: left;
  font-weight: 700;
  position: relative;
}
.main .flex-1 .main-title::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  background-color: #2f9df2;
  width: 80px;
  height: 2px;
}
.main .flex-1 .banner {
  background: linear-gradient(90deg, transparent 0%, #3a435a 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding: 1.4rem;
  text-align: right;
}
.main .flex-1 .banner__bg {
  background: url("../img/prize.png");
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 180px;
  background-position: left bottom;
  transition: 0.2s;
}
.main .flex-1 .banner__title {
  font-size: 35px;
  font-weight: 600;
}
.main .flex-1 .banner__bonus {
  color: #2db866;
  font-size: 32px;
  font-weight: 700;
  animation: glowing 1500ms infinite;
}
.main .flex-1 .banner__btn {
  background: linear-gradient(270deg, rgba(49, 51, 52, 0.15), rgba(49, 51, 52, 0.15)), #ff2400;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0.6rem 3rem;
  border-radius: 10px;
  animation: glowing3 1500ms infinite;
}
.main .flex-1 .banner__btn:hover {
  background: linear-gradient(45deg, rgba(49, 51, 52, 0.15), rgba(49, 51, 52, 0.15)), #a31c07;
}
.main .flex-1 .flex__item:last-child:hover .banner__bg {
  background-size: 200px;
}
.main .flex-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  align-items: stretch;
  width: 100%;
}
.main .flex-2 .flex__item {
  background: linear-gradient(90deg, #3a435a 0%, transparent 130%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
}
.main .flex-2 .flex__item:hover img {
  transform: scale(1.05);
}
.main .flex-2 .flex__item .text {
  display: flex;
  flex-direction: column;
  flex: 0 0 70%;
  gap: 5px;
}
.main .flex-2 .flex__item .text .desc {
  font-size: 12px;
  opacity: 0.6;
}
.main .flex-2 .flex__item .img {
  width: 60px;
  height: 60px;
  position: relative;
}
.main .flex-2 .flex__item .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.main .flex-3 {
  padding: 50px 0;
  align-items: stretch;
  gap: 20px;
}
.main .flex-3 .flex__item {
  padding: 20px;
  background: linear-gradient(90deg, #3a435a 0%, transparent 130%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 50%;
  position: relative;
}
.main .flex-3 .flex__item .title {
  display: flex;
  align-items: center;
  font-size: 24px;
  gap: 10px;
  font-weight: 600;
}
.main .flex-3 .flex__item .images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
}
.main .flex-3 .flex__item .images img {
  transition: 0.5s;
}
.main .flex-3 .flex__item .images img:hover {
  transform: scale(1.05);
}
.main .flex-3 .flex__item .bg {
  background: url("../img/cards.png");
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 310px;
  border-radius: 10px;
  transition: 0.2s;
}
.main .flex-3 .flex__item .game-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  z-index: 1;
}
.main .flex-3 .flex__item .btn {
  background: linear-gradient(90deg, #2db866 0%, #099e4f 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  position: relative;
}
.main .flex-3 .flex__item .btn:hover {
  background: linear-gradient(90deg, #099e4f 0%, #2db866 100%);
}
.main .flex-3 .flex__item:last-child:hover .bg {
  background-size: 320px;
}
.main .content p {
  margin: 15px 0;
}
.main .content a {
  color: #2f9df2;
}
.main .content img {
  max-width: 500px;
  display: flex;
  justify-content: center;
  margin: 20px 0 auto;
}

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

.footer {
  padding: 30px 0;
  border-top: 1.5px solid #2f9df2;
  box-shadow: 0 2px 15px rgb(41, 112, 255);
}
.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: #2f9df2;
  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;
}

@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 {
    padding: 15px 0;
  }
  .header .container {
    gap: 20px;
  }
  .header .container .auth {
    gap: 10px;
  }
  .header .container .auth .btn {
    width: 100px;
    font-size: 14px;
  }
  .header .container .logo {
    flex: auto;
    max-width: 100px;
  }
  .main {
    padding: 200px 0 50px;
  }
  .main .flex {
    padding: 30px 0;
  }
  .main .flex-1 {
    flex-direction: column;
    gap: 30px;
  }
  .main .flex-1 .banner__btn {
    padding: 0.6rem 1rem;
  }
  .main .slots img {
    transition: all 0.3s ease-in-out;
  }
  .main .slots img:hover {
    transform: scale(1.02);
  }
  .main .slots .flex {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  .main .slots .flex__item .img {
    height: 100px;
  }
  .main .flex-3 {
    flex-direction: column;
    padding: 0;
  }
  .main .flex-3 .flex__item .game-section {
    gap: 20px;
  }
  .main .flex-3 .flex__item .bg {
    background-size: 250px;
  }
  .footer .flex {
    flex-direction: column;
    gap: 10px;
  }
  .footer .container {
    gap: 2rem;
  }
  .footer .container .grid {
    display: flex;
    flex-wrap: wrap;
  }
  .footer .container .icons {
    justify-content: center;
  }
}
@keyframes glowing {
  0% {
    text-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    text-shadow: 0 0 20px #2db866;
  }
  100% {
    text-shadow: 0 0 5px #4d4d4d;
  }
}
@keyframes glowing2 {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #2f9df2;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}
@keyframes glowing3 {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #ff2400;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}