:root {
  --header: #091313;
  --page: #060e0e;
  --aqua: #1cd2d2;
  --primary: #285353;
  --text: #f4f8f8;
  --muted: #aababa;
  --line: #244040;
  --danger: #ff6a6a;
  --success: #55d697;
  --radius: 18px;
  --shadow: 0 15px 35px #0008;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font:
    400 16px/1.6 Jost,
    Arial,
    sans-serif;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}
.box,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #0b1919, #091313);
  box-shadow: var(--shadow);
}
a {
  color: var(--aqua);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3 {
  line-height: 1.16;
  margin: 0 0 15px;
}
h1 {
  font-size: clamp(2.05rem, 5vw, 4.2rem);
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}
h3 {
  font-size: 1.28rem;
}
p {
  color: var(--muted);
}
.hdr-wrap {
  padding-top: 16px;
}
.header {
  background: var(--header);
  position: relative;
  z-index: 5;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 16px;
}
.brand img {
  display: block;
  width: 145px;
  height: auto;
  filter: brightness(1.6) contrast(0.8);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.83rem;
  color: #dceaea;
  white-space: nowrap;
}
.nav-links span {
  color: var(--aqua);
  margin-right: 4px;
}
.head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.online {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
}
.online b {
  display: inline-block;
  background: var(--success);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 4px;
  animation: glowPulse 2s infinite;
}
.btn {
  background: var(--primary);
  color: #fff !important;
  border: 0;
  border-radius: 10px;
  display: inline-block;
  font: 600 0.86rem Jost;
  padding: 10px 17px;
  text-align: center;
  cursor: pointer;
  transition:
    0.25s transform,
    0.25s box-shadow,
    0.25s background;
  text-decoration: none !important;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px #0009;
  background: #397272;
}
.signup {
  background: var(--aqua);
  color: #032020 !important;
}
.login {
  background: #173232;
}
.burger {
  display: none;
  background: none;
  border: 0;
  width: 38px;
  padding: 8px;
  cursor: pointer;
}
.burger i {
  display: block;
  background: var(--aqua);
  height: 2px;
  margin: 5px 0;
  transition: 0.25s;
}
.burger.open i:first-child {
  transform: translateY(7px) rotate(45deg);
}
.burger.open i:nth-child(2) {
  opacity: 0;
}
.burger.open i:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  margin-top: 16px;
  min-height: 550px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, #060e0ef5 8%, #060e0eaa 55%, #060e0e60),
    url("/doban.png") center/cover fixed;
}
.hero-inner {
  padding: 60px 0;
}
.hero-copy {
  max-width: 710px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 700;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 1.12rem;
  max-width: 620px;
}
.bonus-tile {
  display: inline-block;
  margin: 12px 0 22px;
  padding: 13px 18px;
  border-radius: 12px;
  background: #1cd2d222;
  border: 1px solid var(--aqua);
  color: #eaffff;
}
.cta-row {
  display: flex;
  gap: 12px;
}
.stars {
  margin-top: 24px;
  color: #ffd75a;
  letter-spacing: 3px;
}
.stars span {
  font-weight: 700;
  color: white;
  letter-spacing: 0;
  margin-left: 8px;
}
.main-wrap {
  padding: 50px 0 80px;
}
.content,
.block {
  margin: 0 0 32px;
}
.content {
  padding: clamp(20px, 4vw, 42px);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}
.two-col h2 {
  font-size: 1.6rem;
}
.pros,
.cons {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pros li,
.cons li {
  padding: 7px 0 7px 27px;
  position: relative;
}
.pros li:before,
.cons li:before {
  position: absolute;
  left: 0;
  font-weight: 800;
}
.pros li:before {
  content: "✓";
  color: var(--success);
}
.cons li:before {
  content: "×";
  color: var(--danger);
}
.block-title {
  text-align: center;
  margin-bottom: 20px;
}
.grid,
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.card {
  padding: 23px;
  display: flex;
  min-height: 235px;
  flex-direction: column;
  align-items: flex-start;
  transition:
    0.3s transform,
    0.3s box-shadow;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 32px #000c;
}
.card p {
  margin: 0 0 8px;
  font-size: 0.9rem;
}
.card .btn {
  margin-top: auto;
}
.jackpots .card {
  background: linear-gradient(140deg, #123434, #091313);
}
.jackpot-value {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  color: #ffd75a;
  margin: 8px 0 20px;
}
.tournament {
  min-height: 255px;
}
.prize {
  color: var(--aqua);
  font-size: 1.1rem;
  margin: 10px 0;
}
.timer {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}
.video {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 35px;
  align-items: center;
}
.video iframe {
  width: 100%;
  border: 0;
  border-radius: 12px;
  aspect-ratio: 16/9;
  height: auto;
}
.bonus-card > span {
  font-size: 2.5rem;
  color: #1cd2d255;
  font-weight: 800;
}
.slot-game {
  text-align: center;
  background: radial-gradient(circle at top, #245555, #081212 65%);
}
.reels {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 25px auto;
  width: min(440px, 100%);
  padding: 15px;
  background: #030707;
  border: 8px solid #c2a640;
  border-radius: 18px;
}
.reels span {
  display: grid;
  place-items: center;
  background: #f7f2df;
  color: #111;
  border-radius: 8px;
  width: 31%;
  aspect-ratio: 1;
  font-size: clamp(2rem, 7vw, 4rem);
}
.reels.spin span {
  animation: spinReel 0.7s ease-in-out;
}
.reels.spin span:nth-child(2) {
  animation-delay: 0.12s;
}
.reels.spin span:nth-child(3) {
  animation-delay: 0.24s;
}
.slot-result {
  min-height: 32px;
  margin-top: 16px;
  font-weight: 700;
}
.slot-result .btn {
  margin-left: 10px;
}
.author {
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #001b1b;
  background: var(--aqua);
  font-weight: 800;
}
.author p {
  margin: 0;
  font-size: 0.86rem;
}
.review-text p,
.review-text li {
  color: #c4d1d1;
}
.review-text h2,
.review-text h3,
.review-text h4 {
  margin-top: 28px;
}
.review-text ul,
.review-text ol {
  padding-left: 25px;
}
.review-text table,
.security table {
  width: min(760px, 100%);
  margin: 20px auto;
  border-collapse: collapse;
  text-align: left;
}
.review-text td,
.review-text th,
.security td,
.security th {
  border: 1px solid #3a5858;
  padding: 13px;
}
.security h2 {
  text-align: center;
}
.security th {
  color: var(--aqua);
  width: 45%;
}
.responsible {
  display: flex;
  gap: 25px;
  align-items: start;
  border-color: #6a5732;
}
.age {
  flex: 0 0 auto;
  background: #ffd75a;
  color: #151000;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 800;
}
.resource-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 15px 0;
}
.resource-links a,
.tags span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 0.8rem;
}
.site-footer {
  background: var(--header);
  border-top: 1px solid var(--line);
  padding: 45px 0 20px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.3fr 1fr;
  gap: 30px;
}
.foot-grid h3 {
  font-size: 1rem;
  color: var(--aqua);
}
.foot-grid a {
  display: block;
  margin: 5px 0;
  font-size: 0.9rem;
}
.foot-grid p {
  font-size: 0.86rem;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tags span {
  color: #c6d7d7;
}
.social {
  display: flex;
  gap: 9px;
}
.social a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.license {
  color: #fff !important;
  font-weight: 700;
}
.foot-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: center;
}
.foot-bottom p {
  margin: 0;
  font-size: 0.75rem;
}
.sticky-widget {
  position: fixed;
  z-index: 10;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100% - 24px));
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--aqua);
  border-radius: 14px;
  background: linear-gradient(90deg, #285353, #123030);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-widget span {
  flex: 1;
  font-weight: 600;
}
.sticky-widget a {
  background: var(--aqua);
  color: #062020;
  padding: 7px 11px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}
.sticky-widget button {
  color: #fff;
  font-size: 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition:
    0.65s opacity,
    0.65s transform;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.wp-block-image,
.elementor-widget,
.entry-content {
  max-width: 100%;
}
.info-main {
  min-height: 65vh;
  padding: 50px 0;
}
@media (max-width: 1200px) {
  .nav-links {
    gap: 8px;
  }
  .nav-links a {
    font-size: 0.75rem;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .site-nav {
    gap: 12px;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 15px;
    background: #091313;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1rem;
    padding: 7px;
  }
  .burger {
    display: block;
    order: 1;
  }
  .brand {
    order: 0;
  }
  .head-actions {
    margin-left: auto;
    order: 2;
  }
  .online {
    display: none;
  }
  .hero {
    background-attachment: scroll;
  }
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .site-nav {
    padding: 8px;
  }
  .brand img {
    width: 105px;
  }
  .head-actions {
    gap: 5px;
  }
  .head-actions .btn {
    font-size: 0.72rem;
    padding: 8px 9px;
  }
  .two-col,
  .video {
    grid-template-columns: 1fr;
  }
  .video iframe {
    order: -1;
  }
  .mobile-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 14px;
    gap: 14px;
  }
  .mobile-slider .card {
    min-width: 78%;
    scroll-snap-align: start;
  }
  .responsible {
    flex-direction: column;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .sticky-widget {
    font-size: 0.8rem;
  }
  .sticky-widget a {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, 1180px);
  }
  .main-wrap {
    padding-top: 30px;
  }
  .hero {
    min-height: 510px;
  }
  .hero-inner {
    padding: 45px 0;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: 205px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .sticky-widget {
    bottom: 8px;
    gap: 7px;
  }
  .sticky-widget span {
    line-height: 1.25;
  }
  .sticky-widget a {
    padding: 6px;
  }
  .sticky-widget button {
    padding: 0;
  }
  .reels {
    border-width: 5px;
  }
}

.video,
.video > div,
.video iframe {
  position: relative !important;
}

.video {
  z-index: 50 !important;
  isolation: isolate !important;
  overflow: visible !important;
}

.video iframe {
  display: block !important;
  z-index: 55 !important;
  pointer-events: auto !important;
  touch-action: auto !important;
  user-select: auto !important;
}

.video::before,
.video::after,
.video > div::before,
.video > div::after {
  pointer-events: none !important;
}

.sticky-widget {
  z-index: 8 !important;
}

.nav-links:not(.open) {
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .nav-links {
    z-index: 120 !important;
  }

  .nav-links:not(.open) {
    pointer-events: none !important;
  }

  .nav-links.open {
    pointer-events: auto !important;
  }
}

@media (max-width: 768px) {
  .video {
    overflow: visible !important;
  }

  .video iframe {
    width: 100% !important;
    min-height: 220px !important;
  }
}

#live {
  position: relative !important;
  z-index: 50 !important;
  pointer-events: auto !important;
  overflow: visible !important;
}

#live * {
  pointer-events: auto;
}

#live iframe {
  display: block !important;
  position: relative !important;
  z-index: 100 !important;
  width: 100% !important;
  pointer-events: auto !important;
}

#live::before,
#live::after {
  pointer-events: none !important;
}

.x4k2m,
.j5n7a,
.b9r3p,
.q7n1v,
.k3p9q,
.z1x4w {
  pointer-events: none !important;
}

#live {
  position: relative !important;
  z-index: 999 !important;
  pointer-events: auto !important;
}

#live iframe {
  display: block !important;
  position: relative !important;
  z-index: 1000 !important;
  width: 100% !important;
  pointer-events: auto !important;
}

#live::before,
#live::after {
  pointer-events: none !important;
}

.nav-links:not(.open) {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.nav-links.open {
  display: flex !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.sticky-widget {
  z-index: 5 !important;
}
