:root {
  --main: #090f1e;
  --text: #fff;
  --header: linear-gradient(92deg,#1e283f,rgba(20,27,46,.6));
  --color-primary: linear-gradient(103deg,#108de7 -30%,#0855c4 100%);
  --color-secondary: linear-gradient(70deg,#31bc69 -8%,#089e4e 96%);
  --border_button: 10px;
  --content: #edf2ff;
  --border: linear-gradient(103deg,#108de7 -30%,#0855c4);
  --blocks: linear-gradient(110deg,#1e283f,rgba(20,27,46,.6) 100%);
  --border-content: linear-gradient(255deg,#00b7ff,#8d53e9);
  --link: #31bc69;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  position: relative;
  background: var(--main);
  font-family: -apple-system, SF Pro Display, -apple-system, SF Pro Text, sans-serif;
}

body.error {
  background: var(--error);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

input, button {
  box-shadow: none;
  font-family: -apple-system, SF Pro Display, -apple-system, SF Pro Text, sans-serif;
}

input {
  outline: none;
}

h1 {
  color: var(--text);
}

h2, h3, h4, h5, h6 {
  color: var(--text);
}

p, span, li, a {
  color: var(--text);
}

button {
  cursor: pointer;
  background: transparent;
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Table content */
.wp-block-table {
  max-width: 100%;
  overflow-x: auto;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--border_button);
}

.wp-block-table table td {
  text-align: center;
  padding: 10px;
  color: var(--text);
}

.wp-block-table table tr {
  background: var(--blocks);
}

.wp-block-table table tr:nth-child(2n) {
  background: var(--main);
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  padding: 15px 0;
}
@media (min-width: 960px) {
  h1, h2, h3, h4, h5, h6 {
    padding: 20px 0;
  }
}

p, span, li, a {
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 960px) {
  p, span, li, a {
    font-size: 18px;
    line-height: 30px;
  }
}

/* Header */
header {
  padding: 8px 10px;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: var(--main);
}
@media (min-width: 960px) {
  header {
    padding: 8px 15px;
  }
}
header .header .overlay {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
header .header .overlay.active {
  display: block;
}
header .header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--header);
  border-radius: var(--border_button);
}
header .header__right {
  display: flex;
  align-items: center;
}
header .header__right .main_menu {
  display: none;
}
@media (min-width: 960px) {
  header .header__right .main_menu {
    display: block;
  }
}
header .header__right .buttons {
  margin-left: 40px;
  display: none;
}
@media (min-width: 960px) {
  header .header__right .buttons {
    display: block;
  }
}
header .header .burger img {
  width: 25px;
  height: 25px;
}
header .header_desktop .burger {
  display: block;
  margin-right: 15px;
}
@media (min-width: 960px) {
  header .header_desktop .burger {
    display: none;
  }
}

.button {
  border-radius: var(--border_button);
  padding: 10px 15px;
  color: var(--text);
  font-size: 16px;
  position: relative;
  transition: all 0.1s;
  border: none;
  transform: translateZ(1px);
}

.reg_button {
  margin-right: 15px;
  background: var(--color-primary);
  padding: 13px 20px;
  animation: pulse 1.5s infinite;
  font-weight: 700;
  text-transform: uppercase;
}
.reg_button:hover {
  opacity: 0.9;
}

.log_button {
  background: var(--color-secondary);
}
.log_button:hover {
  opacity: 0.9;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
/* Menu */
.main_menu .menu {
  display: flex;
  align-items: center;
  list-style: none;
}
.main_menu .menu li {
  margin-left: 20px;
}
.main_menu .menu li:first-child {
  margin-left: 0;
}
.main_menu .menu li a {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  padding: 10px 0;
  transition: all 0.1s;
  position: relative;
}
.main_menu .menu li a:hover {
  opacity: 0.9;
}
.main_menu .menu .current-menu-item a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: var(--border_button);
}

.menu_mobile, amp-sidebar {
  background: var(--main);
  width: 100%;
  padding: 0 20px;
  max-width: 100%;
  min-height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  display: block;
  transition: right 0.8s;
}

.menu_mobile {
  z-index: 11;
}
.menu_mobile .menu-main-container {
  padding: 0 15px;
}
.menu_mobile .close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 20px 0;
}
.menu_mobile .close__img {
  width: 28px;
  height: 28px;
}
.menu_mobile .menu {
  list-style: none;
}
.menu_mobile .menu li {
  margin-bottom: 10px;
}
.menu_mobile .menu li:last-child {
  margin-bottom: 0;
}
.menu_mobile .menu li a {
  font-size: 18px;
  color: var(--text);
  font-weight: 400;
  padding: 10px 0;
}
.menu_mobile .menu li a:hover {
  color: var(--text);
}
.menu_mobile .menu .current-menu-item a {
  color: var(--text);
}

.menu_mobile.show {
  right: 0;
  transition: right 0.8s;
}

/* Banner */
.banner {
  height: 200px;
  position: relative;
  margin-bottom: 35px;
  background: var(--blocks);
  border-radius: var(--border_button);
}
@media (min-width: 640px) {
  .banner {
    margin-bottom: 40px;
  }
}
@media (min-width: 960px) {
  .banner {
    height: 400px;
    margin-bottom: 50px;
  }
}
.banner .banner-border {
  background-image: linear-gradient(90deg, rgb(27, 241, 255) 0%, rgb(8, 85, 196) 100%);
}
.banner__content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.banner__content::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 20px;
  background: url(/wp-content/uploads/2024/04/banner-left.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 180px;
  height: 165px;
  right: 0;
}
@media (min-width: 640px) {
  .banner__content::before {
    width: 270px;
    height: 200px;
    right: 20px;
  }
}
@media (min-width: 960px) {
  .banner__content::before {
    width: 517px;
    height: 400px;
  }
}
.banner__text {
  padding-left: 20px;
}
.banner__text span {
  color: var(--text);
  display: block;
  font-weight: 700;
}
.banner__text-first {
  font-size: 16px;
}
@media (min-width: 960px) {
  .banner__text-first {
    font-size: 30px;
  }
}
.banner__text-second {
  text-transform: uppercase;
  padding: 5px 0;
  font-size: 50px;
  line-height: 65px;
}
@media (min-width: 960px) {
  .banner__text-second {
    font-size: 100px;
    padding: 30px 0;
  }
}
.banner__text-third {
  font-size: 20px;
}
@media (min-width: 960px) {
  .banner__text-third {
    font-size: 45px;
  }
}
.banner__btn {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  bottom: -25px;
}
@media (min-width: 640px) {
  .banner__btn {
    bottom: -30px;
  }
}
@media (min-width: 960px) {
  .banner__btn {
    bottom: -35px;
  }
}
.banner__btn .button {
  padding: 15px 30px;
  font-size: 16px;
}
@media (min-width: 640px) {
  .banner__btn .button {
    padding: 20px 40px;
    font-size: 18px;
  }
}
@media (min-width: 960px) {
  .banner__btn .button {
    padding: 25px 50px;
    font-size: 22px;
  }
}

.banner-border {
  position: absolute;
  top: 0;
  left: 25px;
  right: 25px;
  height: 4px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  background-size: 200% auto;
  animation: 4s linear 0s infinite alternate anim_border;
  will-change: background-position;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cards__item {
  background: var(--blocks);
  border-radius: var(--border_button);
  border: none;
  text-align: left;
  padding: 15px 0 15px 25px;
  position: relative;
}
.cards__item:hover .cards__item-icon {
  transform: rotateY(20deg);
}
.cards__item span {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}
@media (min-width: 640px) {
  .cards__item span {
    font-size: 24px;
  }
}
.cards__item p {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.21px;
  margin-top: 3px;
  max-width: 170px;
}
.cards__item-icon {
  width: 61px;
  height: 61px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 17px;
  top: 8px;
  transition: 0.3s ease-out;
}

/* Content */
.wrapper {
  margin: 0 auto;
  max-width: 1250px;
}

.content-block {
  padding: 5px 10px 20px;
}
@media (min-width: 960px) {
  .content-block {
    padding: 5px 15px 20px 15px;
  }
}

.content_page h1 {
  font-size: 26px;
}
@media (min-width: 960px) {
  .content_page h1 {
    font-size: 36px;
  }
}
.content_page h2 {
  font-size: 22px;
}
@media (min-width: 960px) {
  .content_page h2 {
    font-size: 32px;
  }
}
.content_page h3 {
  font-size: 20px;
}
@media (min-width: 960px) {
  .content_page h3 {
    font-size: 28px;
  }
}
.content_page h4 {
  font-size: 18px;
}
@media (min-width: 960px) {
  .content_page h4 {
    font-size: 24px;
  }
}
.content_page a {
  color: var(--link);
}
.content_page a:hover {
  opacity: 0.9;
}
.content_page p {
  padding-bottom: 20px;
}
.content_page ul {
  list-style: none;
  padding-left: 10px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}
@media (min-width: 640px) {
  .content_page ul {
    flex-direction: row;
  }
}
.content_page ul li {
  width: 100%;
  position: relative;
  padding-bottom: 10px;
  padding-left: 35px;
}
@media (min-width: 640px) {
  .content_page ul li {
    width: 48%;
  }
}
.content_page ul li::before {
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(/wp-content/themes/1win/img/casino-icon.svg) no-repeat;
  background-size: cover;
  content: "";
  left: -5px;
  top: 2px;
}
.content_page ol {
  padding-bottom: 20px;
  padding-left: 30px;
  counter-reset: myCounter;
}
.content_page ol li {
  padding-left: 15px;
  margin-bottom: 15px;
  position: relative;
  list-style: none;
}
.content_page ol li::before {
  counter-increment: myCounter;
  content: counter(myCounter);
  width: 30px;
  height: 30px;
  font-size: 16px;
  background: var(--border-content);
  color: var(--text);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -26px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content_btn {
  padding: 15px 20px;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--border-content);
}
.content_btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 20%;
  background-color: rgba(255, 255, 255, 0.2);
  left: -25%;
  top: 0;
  transform: skew(-20deg);
}
.content_btn:hover::before {
  animation: anim_btn 1s ease-in-out;
}
@keyframes anim_btn {
  0% {
    left: -25%;
  }
  100% {
    left: 125%;
  }
}
.banner-link {
  margin-bottom: 20px;
  text-align: center;
}
.banner-link .banner-img {
  border: none;
  padding: 0;
  position: relative;
  border-radius: var(--border_button);
}
.banner-link .banner-textcaption {
  text-align: center;
  padding: 5px 0 10px 0;
}
.banner-link .banner-textcaption span {
  font-size: 14px;
}

.wp-block-image {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
}
.wp-block-image img {
  border-radius: var(--border_button);
}

.button-content {
  margin-bottom: 20px;
  text-align: center;
}

.section-block {
  background: var(--blocks);
  border-radius: var(--border_button);
  position: relative;
  padding: 10px 15px;
  margin-bottom: 20px;
}
.section-block:last-child {
  margin-bottom: 0;
}
.section-block .banner-border {
  background-image: linear-gradient(90deg, rgb(141, 83, 233) 0%, rgb(0, 183, 255) 100%);
}

/* Footer */
.footer {
  padding: 0 10px 65px 10px;
}
@media (min-width: 960px) {
  .footer {
    padding: 0 20px 15px;
  }
}
.footer__copyright-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.footer__copyright-top span {
  font-size: 14px;
  color: var(--text);
  margin-right: 5px;
}
.footer__copyright-top .eighteen {
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  padding: 8px 5px;
  margin: 5px;
  border-radius: var(--border_button);
  border: 1px solid var(--text);
}
.footer__copyright-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer__copyright-bottom .bga-img {
  width: 200px;
  margin-right: 10px;
}

.fixed_buttons {
  display: flex;
  justify-content: center;
  position: fixed;
  width: 100%;
  padding: 10px;
  background: var(--main);
  bottom: 0;
  left: 0;
  z-index: 8;
}
@media (min-width: 960px) {
  .fixed_buttons {
    display: none;
  }
}
.fixed_buttons .button {
  width: 100%;
}

/* Scroll */
.scroll-top {
  opacity: 0;
  background: var(--border-content);
  border-radius: var(--border_button);
  color: var(--text);
  transition: 0.3s;
  position: fixed;
  bottom: 70px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 8;
}
.scroll-top .scroll-top-bg {
  padding: 5px;
  position: relative;
}
.scroll-top .scroll-top-bg img {
  width: 20px;
  height: 20px;
}

.scroll-top.content_amp {
  opacity: 1;
}

/* Amp */
.header.content_amp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--header);
  border-radius: var(--border_button);
}
.header.content_amp a amp-img {
  display: block;
}
.header.content_amp .burger {
  border: none;
}

.menu_amp .menu {
  list-style: none;
}
.menu_amp .menu li {
  margin-bottom: 10px;
}
.menu_amp .menu li a {
  font-size: 18px;
  color: var(--text);
  font-weight: 400;
  padding: 10px 0;
}
.menu_amp .menu .current-menu-item a {
  color: var(--text);
}

amp-sidebar .close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
amp-sidebar .menu-main-container {
  padding: 0 30px;
}
amp-sidebar .closeButton {
  border: none;
}
amp-sidebar .closeButton .close__img {
  width: 28px;
  height: 28px;
}

#amp-mobile-version-switcher {
  display: none;
}

/* 404 Error */
.error__block {
  padding: 20px 20px 0 20px;
  display: flex;
  width: 100%;
  background: var(--main);
  position: relative;
  overflow: hidden;
  flex-direction: row;
  justify-content: flex-start;
  height: 100vh;
}
.error__block-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  max-width: 1408px;
}
.error__block-content p {
  font-size: 18px;
  color: var(--text);
  margin-top: 5px;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: center;
}
.error__block-content .error-btn {
  background: var(--color-secondary);
}

/* Slots */
.slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .slots {
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 20px;
  }
}
.slots__btn {
  padding: 0;
  border-radius: var(--border_button);
}

/* Table of contents */
.custom__contents {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 640px) {
  .custom__contents {
    width: 600px;
  }
}
.custom__contents-submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 10px;
  background: var(--blocks);
  border-radius: 39px;
  height: 40px;
  padding: 0 0 0 20px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--text);
  transition: 0.3s ease-out;
}
.custom__contents-submenu a:last-child {
  margin-bottom: 0;
}
.custom__contents-submenu a:hover {
  text-decoration: none;
  background: var(--content);
  color: var(--main);
}
.custom__contents-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
}
.custom__contents-icon::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/themes/1win/img/up-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}/*# sourceMappingURL=style.css.map */