/* =========================
   RESET / BASE
   ========================= */

:root {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  --container-xxl: 1320px;

  --bg-main: #0f1126;
  --bg-dark: #151937;
  --bg-darker: #111540;
  --bg-panel: #1d1c20;
  --bg-panel-2: #1a1d27;
  --line: #192f76;
  --line-soft: #2c2c35;
  --text: #ffffff;
  --text-muted: #70707c;
  --link: #8690ec;

  --btn-border: #39b0ff;
  --btn-bg-1: #3e71ff;
  --btn-bg-2: #2952ff;
  --btn-bg-hover-1: #2952ff;
  --btn-bg-hover-2: #182da4;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-family: Ubuntu, sans-serif;
  font-weight: 500;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--bg-main);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-style: normal;
  font-weight: 700;
  color: #fff;
}

h1 {
  font-size: 32px;
  line-height: 1.2;
}

h2 {
  font-size: 28px;
  line-height: 1.25;
}

h3 {
  font-size: 26px;
  line-height: 1.25;
}

h4 {
  font-size: 24px;
  line-height: 1.3;
}

/* =========================
   WORDPRESS CONTENT HELPERS
   ========================= */

.alignleft,
img.alignleft {
  float: left;
  display: inline;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

.alignright,
img.alignright {
  float: right;
  display: inline;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.aligncenter,
img.aligncenter {
  display: block;
  clear: both;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  height: auto;
}

.alignnone,
img.alignnone {
  width: 100%;
  height: auto;
}

.wp-caption {
  margin-bottom: 1.5em;
  padding-top: 5px;
  text-align: center;
}

.wp-caption img {
  border: 0;
  margin: 0;
  padding: 0;
}

.wp-caption p.wp-caption-text {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  float: left;
  width: 33%;
  margin-right: 20px;
  margin-left: 0;
  text-align: right;
}

blockquote.right {
  float: right;
  width: 33%;
  margin-right: 0;
  margin-left: 20px;
  text-align: left;
}

/* =========================
   CONTAINER / GRID
   ========================= */

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: var(--container-sm);
  }
}

@media (min-width: 768px) {
  .container,
  .container-sm,
  .container-md {
    max-width: var(--container-md);
  }
}

@media (min-width: 992px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: var(--container-lg);
  }
}

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: var(--container-xl);
  }
}

@media (min-width: 1400px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: var(--container-xxl);
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  margin-top: var(--bs-gutter-y);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

/* cols */
.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* gutters */
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}
.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

/* =========================
   SIMPLE UTILITIES
   ========================= */

.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-grid {
  display: grid !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-end {
  align-items: flex-end !important;
}

.m-0 {
  margin: 0 !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.p-0 {
  padding: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}

/* =========================
   MENUS / LINKS
   ========================= */

.menu-primary li,
body {
  position: relative;
}

.menu-primary,
.menu-footer,
.menu-sidebar {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-primary li a,
.menu-footer a,
.menu-sidebar li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-primary li a,
.menu-footer a {
  line-height: 20px;
}

.menu-primary li a:hover,
.menu-footer a:hover,
.menu-sidebar li a:hover {
  color: rgba(255, 255, 255, 0.52);
}

.menu-primary {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu-primary li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

.menu-primary .menu-item-has-children {
  position: relative;
}

.menu-primary .menu-item-has-children .sub-menu {
  position: absolute;
  display: none;
  width: max-content;
  padding: 10px;
  border: 1px solid #3f3e41;
  border-radius: 7px;
  background: linear-gradient(180deg, #111540, #161d73);
  list-style: none;
}

.menu-primary .menu-item-has-children:hover .sub-menu {
  display: block;
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--btn-bg-1), var(--btn-bg-2));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn:hover {
  border-color: #1885ff;
  background: linear-gradient(
    180deg,
    var(--btn-bg-hover-1),
    var(--btn-bg-hover-2)
  );
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(23, 57, 186, 0.6);
}

.welcome__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  min-width: 0;
  min-height: 56px;
  margin: 16px auto 0;
  padding: 8px;
  border: 1px double transparent;
  border-radius: 100px;
  background-image:
    linear-gradient(180deg, #092f0b, #092f0b),
    linear-gradient(180deg, #092f0b, #00b700);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 0 15px #154e26,
    inset 0 2px 4px 0 #000;
  color: #fff !important;
  text-decoration: none;
  overflow: hidden;
}

.welcome__button::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  box-shadow: 0 1px 10px 3px #20b726;
}

.btn__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border-radius: inherit;
}

.btn__text {
  text-align: center;
  font-size: 18px;
  line-height: 1.1;
  word-break: break-word;
}

@media (max-width: 767px) {
  .welcome__button {
    max-width: 100%;
    min-height: 54px;
    height: auto;
  }

  .btn__text {
    font-size: 16px;
    -webkit-text-stroke-width: 1px;
  }
}

/* =========================
   HEADER
   ========================= */

.header {
  background: linear-gradient(180deg, #111540, #161d73);
  padding: 12px 0;

  width: 100%;
  z-index: 9999;
}
.header_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.header__logo {
  flex: 0 1 auto;
  min-width: 0;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  font-size: 18px;
  line-height: 1;
  min-width: 0;
}
@media (max-width: 767.98px) {
  .header__logo {
    font-size: 14px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.header__btns {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.header_menu a {
  text-decoration: none;
}

.header__btns {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.desctop {
  display: inline;
}

.mobile img {
  width: auto;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* wheel button in header */
.btn__short {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 112px;
  max-width: 124px;
  min-height: 42px;
  height: 42px;
  padding: 0 10px;
  cursor: pointer;
}

button.btn__short {
  appearance: none;
  -webkit-appearance: none;
}

.wheel_of_fortune_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
}

.wheel_of_fortune_inner span {
  display: block;
  margin: 0;
  font-size: 11px;
  line-height: 1.05;
  font-weight: 700;
  text-align: center;
  white-space: normal;
}

.wheel_of_fortune_inner img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.header__btn_signin,
.header__btn_signup {
  flex: 0 0 auto;
}

/* =========================
   MAIN / ENTRY
   ========================= */

.main {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.entry-content {
  margin-top: 30px;
}

.entry-content a {
  color: var(--link);
}

.entry-content ol,
.entry-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.entry-content table {
  border: 1px solid var(--line-soft);
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  border: 1px solid var(--line-soft);
  padding: 10px;
}

.entry-content img {
  margin: 0 0 1.5em;
}

/* =========================
   BACKGROUND / BANNER
   ========================= */

.bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: auto;
}

.banner {
  margin-top: 40px;
  margin-bottom: 20px;
}

.banner__inner {
  padding: 53px 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background-color: var(--bg-panel);
  background-image: url(../img/banner-bg.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.banner__bonus_left {
  width: 50%;
}

.banner__bonus_type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: fit-content;
  margin-bottom: 25px;
  color: #fff;
  font-size: 51px;
  font-weight: 400;
  line-height: 46px;
}

.banner__bonus_add,
.banner__bonus_name {
  width: fit-content;
  color: #fff;
  font-size: 77px;
  font-weight: 700;
  line-height: 77px;
}

/* =========================
   FAQ
   ========================= */

.faq {
  margin-top: 20px;
  color: #fff;
}

.faq__title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faq__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq__item {
  padding-bottom: 21px;
  border-bottom: 1px solid #d0d0da;
}

.faq__item + .faq__item {
  margin-top: 16px;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
}

.faq__btn {
  border-radius: 100%;
  background-position: center;
  background-size: cover;
  transition: 0.2s;
  cursor: pointer;
}

.faq__answer {
  display: none;
  margin-top: 21px;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
}

.open .faq__btn {
  transform: rotate(180deg);
}

.open + .faq__answer {
  display: block;
}

/* =========================
   SIDEBAR / ASIDE
   ========================= */

.aside,
.bg {
  left: 0;
  z-index: -1;
}

.aside {
  position: fixed;
  top: 61px;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.53);
  transition: 0.2s;
}

.open.aside {
  z-index: 999;
  opacity: 1;
}

.aside_overlay,
.aside__container {
  position: absolute;
  top: 0;
  height: 100%;
}

.aside_overlay {
  right: 0;
  width: calc(100% - 280px);
}

.aside__container {
  left: 0;
  width: 280px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #151937, #0f1126);
  transform: translateX(-100%);
  transition: 0.3s;
}

.open .aside__container {
  transform: translateX(0);
}

.aside__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.aside .header__btn_signin {
  border-radius: 4px;
  background: #e2e2ea;
  color: #2c2c35 !important;
}

.menu-sidebar li a {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}

.menu-sidebar li + li {
  margin-top: 12px;
}

.asside__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.header__btn_side_menu_close {
  position: absolute;
  right: 0;
  cursor: pointer;
}

/* =========================
   FOOTER
   ========================= */

.footer {
  margin-top: 60px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #151937, #0f1126);
}

.menu-footer,
.payments {
  display: flex;
  border-bottom: 1px solid var(--line);
}

.menu-footer {
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0 0 28px;
  padding: 0 0 28px;
}

.menu-footer a {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.payments {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 28px;
}

.payments img {
  width: 86px;
  height: auto;
}

.footer__text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
}

/* =========================
   SHORT BANNER / TOC
   ========================= */

.short_banner {
  padding: 40px 20px;
  background-position: center;
  background-size: cover;
}

.short_banner_inner {
  width: fit-content;
  margin: 0 auto;
  padding: 35px 10px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.51);
  text-align: center;
  font-size: 30px;
  line-height: 33px;
  font-weight: 600;
}

.short_banner_bonus {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.short_banner_bonus_name {
  padding: 10px 20px 11px;
  border: 1px solid #192f76;
  border-radius: 86px;
  background: #111540;
  color: #21deff;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}

.contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 15px 0;
}

.contents a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #ffebca;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
  word-break: keep-all;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.contents a:hover {
  color: #fff;
  transform: scale(0.98);
  text-decoration: none;
}

.contents a:visited {
  color: #fff;
}

/* =========================
   BONUS CARDS
   ========================= */

ul.games__list_bonus {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.games__list-item {
  position: relative;
  width: 100%;
  min-width: 300px;
  max-width: 350px;
  overflow: hidden;
  border-radius: 10px;
  background: #0f121a;
}

.bonus_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 15px;
}

.bonus_bg {
  position: absolute;
  top: -300px;
  z-index: 1;
  width: 100%;
  height: 600px;
  background-position: center;
  background-size: cover;
}

.bonus_inner img {
  width: 200px;
}

.bonus_type {
  margin-bottom: 8px;
  color: #afb7ca;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.bonus_name {
  margin-top: 10px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
}

a.custom_button_short {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
  background: #3eb814;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

a.custom_button_short:hover {
  background: #46cf17;
}

/* =========================
   GAMES
   ========================= */

ul.games__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  list-style: none;
}

.games__list_item {
  width: 100%;
  max-width: 235px;
}

.game__wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
  border: 1px solid #242c42;
  border-radius: 5px;
}

.game__banner {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.game__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: rgba(5, 8, 15, 0.84);
  opacity: 0;
  transition: all 0.3s ease;
}

.games__list_item:hover .game__overlay {
  opacity: 1;
}

a.game_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 10px 20px;
  border-radius: 5px;
  background: #2a4dd0;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

a.game_btn:hover {
  background: #3c5dd8;
}

/* =========================
   WHEEL / POPUP
   ========================= */

.wheel__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  margin: 0 auto;
}

.wheel {
  position: relative;
  padding: 25px 10px;
  border: 1px solid #1d1c20;
  border-radius: 9px;
  background: #1a1d27;
}

#myCanvas {
  transition: transform 1s ease;
}

.bonus_congratulation {
  color: #70ffcb;
  font-size: 24px;
  font-weight: 900;
}

.button__fortuna {
  width: max-content;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  border: none;
  outline: none;
  background-color: transparent;
  background-image: url("https://pincocasino-joy.top/wp-content/themes/casino/assets/img/button.png");
  background-size: 100% 100%;
  color: white;
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  transition: 0.3s;
}

.button__fortuna:hover {
  background-image: url("https://pincocasino-joy.top/wp-content/themes/casino/assets/img/button--hover.png");
  background-size: 100% 100%;
}

.radiance__img,
.radiance__img_alternate {
  position: absolute;
  width: 100%;
  height: 100%;
}

.radiance__img {
  z-index: 2;
  animation: 0.5s infinite blick;
}

.radiance__img_alternate {
  z-index: 1;
  transform: rotate(90deg);
}

.wheel__wrapper-frame {
  position: relative;
  width: fit-content;
  margin-bottom: 30px;
}

.arrow__img {
  position: absolute;
  top: 3px;
  left: calc(50% - 30px);
  z-index: 3;
  width: 60px;
}

.wheelhub__img {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  z-index: 6;
  width: 60px;
  animation: 1s infinite linear rotates;
}

@keyframes blick {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes rotates {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

.popup__wheel_overlay,
.popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(3, 3, 3, 0.3);
  backdrop-filter: blur(3px);
}

.popup__wheel_overlay {
  transition-delay: 0.2s;
}

.popup__overlay {
  transition-delay: 1.5s;
}

.popup__wheel_overlay.active {
  z-index: 10;
  opacity: 1;
  transition-delay: 0.2s;
  transition-duration: 0.5s;
}

.popup__overlay.active_popup {
  z-index: 12;
  opacity: 1;
  transition-delay: 1.5s;
  transition-duration: 0.5s;
}

.popup__fortune {
  position: relative;
  padding: 15px 25px;
  border: 1px solid #1d1c20;
  border-radius: 9px;
  background: #1a1d27;
}

#bonus_fortune_title {
  margin-bottom: 32px;
  color: white;
  font-size: 31px;
  font-weight: 800;
}

.popup__header {
  position: relative;
}

.popup__saw {
  position: absolute;
  bottom: -17px;
  left: 0;
}

.popup__header__title {
  color: #1b1c29;
  font-size: 22px;
  font-weight: 700;
}

.popup__fortune-content {
  display: flex;
  align-items: stretch;
}

.popup__fortune-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
}

.popup__fortune-image-block {
  margin-right: 46px;
}

.bonus__fortune-pre-title {
  margin-bottom: 8px;
  color: white;
  font-size: 20px;
}

.bonus_fortune_title {
  margin-bottom: 27px;
  font-size: 26px;
  font-weight: 900;
}

#bonus_fortune_link {
  width: fit-content;
  min-width: unset;
}

.popup__header-close {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.popup__header-close:hover {
  transform: scale(1.1);
}

/* =========================
   RESPONSIVE
   ========================= */

@media screen and (max-width: 1919px) {
  .welcome__button {
    --button-top-gap: 16px;
  }
}

@media screen and (max-width: 767px) {
  .btn__text {
    font-size: 20px;
    letter-spacing: 0.5px;
  }

  .welcome__button {
    max-width: 100%;
    min-height: 54px;
    height: auto;
  }

  .btn__text {
    font-size: 16px;
    -webkit-text-stroke-width: 1px;
  }
}

@media (max-width: 1024px) {
  .header__menu_primary {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .header .row {
    flex-wrap: nowrap;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .header .row > * {
    padding-left: 6px;
    padding-right: 6px;
  }

  .header__logo {
    flex: 0 0 138px;
    max-width: 138px;
  }

  .header__logo img {
    height: 28px;
    max-width: 138px;
  }

  .header__btns {
    gap: 8px;
  }

  .btn__short {
    min-width: 108px;
    max-width: 118px;
    min-height: 40px;
    height: 40px;
    padding: 0 10px;
  }

  .wheel_of_fortune_inner span {
    font-size: 10px;
    line-height: 1.05;
  }

  .wheel_of_fortune_inner img {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
  }

  .desctop {
    display: none;
  }

  .mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header__btn_side_menu {
    display: flex;
    flex: 0 0 38px;
  }
}

@media (max-width: 768px) {
  .wheel .container {
    padding: 0 !important;
  }

  .wheel__wrapper-frame {
    margin-bottom: 0;
  }

  .button__fortuna {
    font-size: 22px;
  }

  .popup__fortune .popup__header-close {
    top: 18px;
    right: 18px;
    width: 30px;
    border-radius: 50%;
    background: #0c0f51;
  }

  .popup__fortune-image-block {
    display: none;
  }

  .popup__fortune-content {
    align-items: flex-end;
    padding: 28px 16px 0;
  }

  #bonus_fortune_title {
    margin-bottom: 18px;
    color: white;
    font-size: 22px;
    font-weight: 800;
  }

  .bonus__fortune-pre-title {
    margin-bottom: 8px;
    color: white;
    font-size: 16px;
  }

  .popup__header {
    position: relative;
    padding: 14px 16px;
    border-radius: 16px 16px 0 0;
    background: white;
  }

  .popup__header__title {
    color: #1b1c29;
    font-size: 18px;
    font-weight: 700;
  }

  .wheel {
    padding: 16px 0;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }

  .header {
    padding: 10px 0;
    display: flex;
  }

  .header .container {
    padding-left: 12px;
    padding-right: 12px;

    flex-direction: row;
  }

  .header .row {
    display: flex;
    justify-content: space-between;

    margin-left: 0;
    margin-right: 0;
  }

  .header .row > * {
    padding-left: 4px;
    padding-right: 4px;
  }

  .header__logo {
    flex: 0 0 104px;
    max-width: 104px;
  }

  .header__logo img {
    height: 24px;
    max-width: 104px;
  }

  .header__btns {
    gap: 6px;
  }

  .btn__short {
    min-width: 94px;
    max-width: 102px;
    min-height: 38px;
    height: 38px;
    padding: 0 8px;
  }

  .wheel_of_fortune_inner {
    gap: 5px;
  }

  .wheel_of_fortune_inner span {
    font-size: 10px;
    line-height: 1;
  }

  .wheel_of_fortune_inner img {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
  }

  .header__btns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header__btn_side_menu {
    flex: 0 0 34px;
    max-width: 34px;
  }

  .header__btn_side_menu img,
  .header__btn_side_menu .close img {
    width: 17px;
    height: 17px;
  }

  .entry-content table {
    display: block;
    width: 100%;
    overflow: auto;
  }

  .container {
    max-width: 680px;
  }

  .banner__bonus {
    overflow: hidden;
  }

  .banner__bonus_left {
    position: relative;
    z-index: 9;
    width: 100%;
  }

  .banner__bonus_add,
  .banner__bonus_name {
    font-size: 32px;
    line-height: 34px;
  }

  .banner {
    padding: 64px 0;
    min-height: 315px;
  }

  .menu-footer {
    flex-wrap: wrap;
    gap: 12px;
  }

  .short_banner_inner {
    font-size: 25px;
    line-height: 27px;
  }
}

@media (max-width: 566px) {
  .contents {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-rows: auto;
  }

  .banner__bonus_add,
  .banner__bonus_name {
    font-size: 28px;
  }

  .banner {
    padding: 44px 0;
  }

  .desctop {
    display: none;
  }

  .header.open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  .mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header__btns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .aside,
  .aside .header__btn_signin {
    padding: 11px 20px;
  }
}

@media (max-width: 420px) {
  .header__logo {
    flex: 0 0 92px;
    max-width: 92px;
  }

  .header__logo img {
    height: 22px;
    max-width: 92px;
  }

  .header__btns {
    gap: 5px;
  }

  .btn__short {
    min-width: 88px;
    max-width: 94px;
    min-height: 36px;
    height: 36px;
    padding: 0 7px;
  }

  .wheel_of_fortune_inner span {
    font-size: 9px;
    line-height: 1;
  }

  .wheel_of_fortune_inner img {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
  }

  .header__btn_side_menu {
    flex: 0 0 32px;
    max-width: 32px;
  }

  .header__btn_side_menu img {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 360px) {
  .banner,
  .banner__bonus {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .banner__bonus_type {
    margin-bottom: 16px;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-flex {
    display: flex !important;
  }
}
/* show more */
.games__more_btn {
  display: none;
}

@media (max-width: 767.98px) {
  .games__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .games__list_item {
    display: none;
    width: 100%;
    max-width: 235px;
  }

  .games__list_item.is-visible {
    display: block;
  }

  .games__more_btn {
    display: block;
    margin: 16px auto 0;
    padding: 12px 20px;
    border: 1px solid var(--btn-border);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--btn-bg-1), var(--btn-bg-2));
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
  }

  .games__more_btn.is-hidden {
    display: none;
  }
}
