@charset "UTF-8";
/***
 */
@import url(https://fonts.googleapis.com/css?family=Poppins: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: "Poppins", sans-serif;
  font-weight: 400;
  color: #333;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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 auto;
  text-align: center;
  border-bottom: 1.5px solid #ff3d02;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

h3, .menu__title {
  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: #ff3d02;
  font-weight: 600;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  overflow: auto;
}
table tr td,
table tr th {
  border: 1px solid #2a324a;
  padding: 15px;
}
table tr th {
  background-color: #2a324a;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

table tr td:first-child {
  background: #E9E9E9;
}
table tr td:last-child {
  background: #F2F2F2;
}


table tr td:hover {
  background-color: rgba(130, 130, 130, 0.1058823529);
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 0 5px #2a324a;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header .container .logo {
  flex: 0 0 200px;
}
.header .container .auth {
  display: flex;
  gap: 15px;
}
.header .container .auth .btn-1 {
  background: #F2F2F2;
  color: #303A58;
  border-radius: 15px;
}
.header .container .auth .btn-1:hover {
  background-color: #2a324a;
  color: #fff;
}
.header .container .auth .btn-2 {
  background-color: #E42D12;
  color: #fff;
  border-radius: 15px;
}
.header .container .auth .btn-2:hover {
  background-color: #7e1e01;
}

.btn {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s;
  color: #fff;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 0 0 50px;
}
.main .banner {
  position: relative;
  min-height: 400px;
}
.main .banner::before {
  content: "";
  background: url(../img/bg.webp) center/cover no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.main__btn {
  background-color: #ff3d02;
  display: flex;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 15px;
  width: 250px;
  margin: 0 auto;
  border-radius: 10px;
  animation: glowing 2s infinite, growing 2s infinite;
}
.main__btn:hover {
  animation: none;
}
.main .games-wrap {
  padding: 30px 16px;
  box-shadow: 0 0 2px #2a324a;
  display: flex;
  justify-content: center;
}
.main .games-wrap .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main .content {
  padding: 50px 0;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}
.main .payments {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.main .payments .payment {
  cursor: pointer;
  transition: filter 0.4s ease-in-out;
}
.main .payments .payment svg path {
  transition: fill 0.4s ease-in-out;
}
.main .payments .payment:nth-child(1):hover {
  filter: drop-shadow(0px 0px 16px #1f46ff);
}
.main .payments .payment:nth-child(1):hover svg path {
  fill: #1f46ff;
}
.main .payments .payment:nth-child(2):hover {
  filter: drop-shadow(0px 0px 16px #ff8000);
}
.main .payments .payment:nth-child(2):hover svg path {
  fill: #ff8000;
}
.main .payments .payment:nth-child(3):hover {
  filter: drop-shadow(0px 0px 16px #ffc200);
}
.main .payments .payment:nth-child(3):hover svg path {
  fill: #ffc200;
}
.main .payments .payment:nth-child(4):hover {
  filter: drop-shadow(0px 0px 16px #f7931a);
}
.main .payments .payment:nth-child(4):hover svg path {
  fill: #f7931a;
}
.main .payments .payment:nth-child(5):hover {
  filter: drop-shadow(0px 0px 16px #c718e3);
}
.main .payments .payment:nth-child(5):hover svg path {
  fill: #c718e3;
}
.main .payments .payment:nth-child(6):hover {
  filter: drop-shadow(0px 0px 16px #28d49f);
}
.main .payments .payment:nth-child(6):hover svg path {
  fill: #28d49f;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 30px 0;
  background-color: #2a333c;
  color: #fff;
  display: flex;
  font-size: 14px;
  justify-content: center;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__icons img {
  height: 30px;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3, .menu__title {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .btn {
    padding: 10px 15px;
  }
  .header .container {
    justify-content: center;
    gap: 15px;
    flex-direction: column;
    gap: 20px;
  }
  .header .container .logo {
    flex: auto;
  }
  .header .container .logo img {
    width: 120px;
  }
  .main {
    padding: 0 0 30px;
  }
  .main .banner::before {
    background-size: cover;
    opacity: 0.8;
  }
  .main .games-wrap {
    padding: 32px 0;
  }
  .main__btn {
    font-size: 16px;
    padding: 12px;
  }
  .main .content {
    padding: 30px 0;
  }
  .main .content img {
    max-width: 100%;
  }
  .main .payments {
    padding: 0 16px;
    gap: 10px;
    justify-content: space-around;
  }
  .main .payments svg {
    height: 25px;
  }
}
@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #ff3d02;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}
@keyframes growing {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.anchor__menu a:hover {
color:#E42D12;
}
.anchor__menu li {
  margin-bottom: 10px;
  }
  .img-cov {
    width: 200px;
    height: 200px;
    margin: 20px auto !important;
  }
  .img-cov img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
  }