@font-face {
  font-family: "Mothercare";
  src: url("font/mothercare_2020-regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mothercare";
  src: url("font/mothercare_2020-demi-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #16617c;
  --deep-blue: #005b7f;
  --text: #233944;
  --muted: #cfd7da;
  --line: #e6e6e6;
  --green: #008000;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Mothercare", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 14px;
  font-weight: 400;
}

.symbol-snow {
  position: fixed;
  z-index: 9999;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  contain: strict;
}

.snow-symbol {
  position: absolute;
  top: 0;
  left: var(--left);
  color: #fff;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: var(--size);
  line-height: 1;
  opacity: 0;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .3));
  will-change: transform, opacity;
  animation: symbol-fall var(--duration) linear var(--delay) infinite;
}

@keyframes symbol-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -12vh, 0) rotate(0deg) scale(.8);
  }
  10% { opacity: var(--opacity); }
  50% {
    transform: translate3d(var(--drift-mid), 52vh, 0) rotate(180deg) scale(1);
  }
  88% { opacity: var(--opacity); }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift-end), 112vh, 0) rotate(360deg) scale(1.08);
  }
}

@media (max-width: 720px) {
  .snow-symbol:nth-child(n+19) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .symbol-snow { display: none; }
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }

.marked {
  outline: 2px dashed var(--green);
  outline-offset: 3px;
}

.topbar {
  height: 42px;
  background: var(--blue);
  color: #fff;
}

.topbar-inner {
  max-width: 1818px;
  height: 100%;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.topbar-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex: 0 0 auto;
}

.topbar-icon.invert { filter: brightness(0) invert(1); }

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
}

.main-nav {
  height: 66px;
  padding: 0 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.main-nav a {
  height: 50px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #384b55;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav .logo-word {
  width: 150px;
  border-radius: 0;
  padding: 0 12px;
}

.main-nav .logo-word img {
  width: 100%;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

.main-nav .alt-link { padding-inline: 12px; }

.main-nav .bonus {
  color: #fff;
  background: #f60000;
  border-color: #f60000;
}

.main-nav .spacer { flex: 1; }

.main-nav > img {
  width: 38px;
  height: 38px;
  padding: 6px;
  object-fit: contain;
}

.mobile-nav,
.mobile-menu { display: none; }

.top-action-bar {
  padding: 14px 60px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.top-action-button {
  min-height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #171717;
  box-shadow: 0 7px 0 #000, 0 12px 18px rgba(0, 0, 0, .22);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, filter .2s ease;
}

.top-action-button.register {
  color: #fff;
  background: #e95a4f;
  box-shadow: 0 7px 0 #c23a31, 0 12px 18px rgba(194, 58, 49, .22);
}

.top-action-button:hover,
.top-action-button:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-2px);
  outline: 0;
}

main {
  max-width: 1818px;
  margin: 0 auto;
}

.product-section {
  padding: 18px 60px 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.gallery,
.product-info {
  min-width: 0;
}

.main-image {
  height: 100%;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.thumbs {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.thumb {
  height: 132px;
  padding: 10px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.thumb.active { border-color: #8d8d8d; }
.thumb img { width: 100%; height: 100%; object-fit: contain; }

.product-info {
  height: 690px;
  padding-top: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.neng4d-card {
  position: relative;
  height: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 202, 61, .45);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  color: #fff7d8;
  background:
    radial-gradient(circle at 12% 0, rgba(36, 152, 255, .22), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(255, 50, 28, .28), transparent 34%),
    linear-gradient(145deg, #060606, #171007 58%, #070707);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .24), inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.neng4d-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, transparent 0 42%, rgba(255, 214, 70, .16) 50%, transparent 58%);
  pointer-events: none;
}

.neng4d-card > * {
  position: relative;
  z-index: 1;
}

.hero-title h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 2.1vw, 36px);
  line-height: 1.13;
  letter-spacing: -.03em;
  text-shadow: 0 0 20px rgba(255, 196, 0, .2);
}

.hero-title span,
.highlight-gold {
  color: #ffd447;
  text-shadow: 0 0 16px rgba(255, 196, 0, .34);
}

.info-container,
.bonus-wrap {
  border: 1px solid rgba(255, 214, 70, .28);
  border-radius: 15px;
  overflow: hidden;
  background: rgba(0, 0, 0, .42);
}

.info-head,
.bonus-head {
  min-height: 42px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(255, 194, 31, .18), rgba(255, 68, 28, .08), rgba(20, 135, 255, .14));
}

.info-head h2,
.bonus-head h3 {
  margin: 0;
  color: #ffd447;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.info-list,
.bonus-list {
  padding: 10px 14px;
  display: grid;
  gap: 8px;
}

.info-row {
  min-height: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 214, 70, .14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.info-row:last-child { border-bottom: 0; padding-bottom: 0; }

.info-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.info-dot,
.gold-icon {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  background: #ffd447;
  box-shadow: 0 0 12px rgba(255, 196, 0, .64);
  flex: 0 0 auto;
}

.info-text {
  color: rgba(255, 247, 216, .76);
  font-size: 13px;
  font-weight: 700;
}

.info-number {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}

.bonus-wrap { flex: 1; }

.bonus-list { gap: 7px; }

.bonus-item {
  padding: 9px 12px;
  border: 1px solid rgba(255, 214, 70, .18);
  border-radius: 11px;
  background: rgba(0, 0, 0, .34);
}

.bonus-item p {
  margin: 0;
  color: rgba(255, 247, 216, .88);
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.cta-buttons-gold {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.btn-gold {
  min-height: 50px;
  border: 1px solid rgba(255, 214, 70, .6);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #090600;
  background: linear-gradient(135deg, #b98410, #ffd447 45%, #ffae19);
  box-shadow: 0 8px 20px rgba(255, 183, 0, .18);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: filter .2s ease, transform .2s ease;
}

.btn-login-gold {
  color: #fff7d8;
  background: linear-gradient(135deg, #0b0b0b, #281407);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  filter: brightness(1.12);
  transform: translateY(-2px);
  outline: 0;
}

.live-rtp-section {
  position: relative;
  margin: 0 60px 34px;
  padding: 30px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(0, 255, 64, .13), transparent 40%),
    linear-gradient(180deg, #041306, #061406 54%, #020802);
  box-shadow: inset 0 0 0 1px rgba(0, 255, 64, .18), 0 18px 45px rgba(0, 30, 10, .3), 0 0 45px rgba(0, 255, 64, .1);
}

.live-rtp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 255, 156, .08) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(180deg, rgba(0, 255, 156, .07) 1px, transparent 1px) 0 0 / 68px 68px,
    repeating-linear-gradient(180deg, transparent 0 20px, rgba(0, 255, 156, .06) 21px 22px, transparent 23px 44px);
  opacity: .9;
  pointer-events: none;
}

.live-rtp-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 8, 2, 0), rgba(2, 8, 2, .52));
  pointer-events: none;
}

.matrix-rain-live {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  color: #00d81f;
  font-family: Consolas, "Courier New", monospace;
  font-size: clamp(17px, 1.55vw, 30px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: .06em;
  opacity: .9;
  text-shadow: 0 0 8px rgba(0, 255, 37, .55), 0 0 18px rgba(0, 255, 37, .22);
  filter: saturate(1.25);
  pointer-events: none;
}

.matrix-line {
  width: max-content;
  min-width: 100%;
  white-space: nowrap;
  animation: matrix-line-drift 2.6s linear infinite;
}

.matrix-line:nth-child(2n) { transform: translateX(-24px); opacity: .78; }
.matrix-line:nth-child(3n) { transform: translateX(16px); opacity: .48; }
.matrix-line:nth-child(5n) { opacity: .34; }

.matrix-digit { opacity: .68; }
.matrix-digit.bright { color: #19ff36; opacity: 1; text-shadow: 0 0 9px #00ff2a, 0 0 20px rgba(0, 255, 42, .45); }
.matrix-digit.dim { opacity: .25; }

.rtp-calendar-neng4d,
.slot-bar-live {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  color: #fff;
  background: rgba(4, 12, 10, .94);
  box-shadow: 0 15px 28px rgba(0, 0, 0, .32), 0 0 22px rgba(0, 255, 156, .16);
}

.rtp-calendar-neng4d {
  padding: 13px 18px 16px;
  border: 1px solid rgba(0, 255, 156, .34);
  border-radius: 12px;
}

.rtp-calendar-head,
.bar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.rtp-calendar-title,
.bar-head h2 {
  margin: 0;
  color: #ffe600;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .03em;
  text-shadow: 0 0 12px rgba(255, 230, 0, .34);
}

.rtp-calendar-time,
.bar-head span {
  color: #3cffb0;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.rtp-calendar-list {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.rtp-day-card {
  min-height: 92px;
  padding: 10px 8px;
  border: 1px solid rgba(0, 255, 156, .38);
  border-radius: 10px;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle at 50% 0, rgba(0, 255, 156, .16), transparent 56%), #05100c;
}

.rtp-day-card.active {
  border-color: #3cffb0;
  box-shadow: inset 0 0 18px rgba(0, 255, 156, .18), 0 0 18px rgba(0, 255, 156, .22);
}

.rtp-day-name {
  color: #ffe16a;
  font-size: 12px;
  font-weight: 700;
}

.rtp-day-date {
  color: rgba(255, 255, 255, .8);
  font-size: 10px;
  font-weight: 700;
}

.rtp-percent {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 2px 0 #ff2f92, -2px 0 #00d9ff, 0 0 10px rgba(255, 255, 255, .26);
}

.rtp-status {
  min-width: 48px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(90deg, #fff178, #9af4ff);
  font-size: 10px;
  font-weight: 700;
}

.slot-bar-live {
  margin-top: 34px;
  padding: 27px 34px 28px;
  border-radius: 22px;
  background: rgba(7, 13, 11, .96);
}

.bar-head { margin-bottom: 20px; }

.bar-head span {
  padding: 7px 14px;
  border-radius: 999px;
  color: #dffcff;
  background: linear-gradient(90deg, #b7d812, #00e69a, #15c8f1);
  box-shadow: 0 0 18px rgba(0, 255, 156, .3);
}

.bar-chart {
  display: grid;
  gap: 13px;
}

.bar-item {
  display: grid;
  grid-template-columns: 210px minmax(150px, 1fr) 54px 210px;
  align-items: center;
  gap: 14px;
}

.bar-name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.game-icon {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 230, 0, .5);
  border-radius: 8px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 12px rgba(255, 230, 0, .28);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 14px;
}

.bar-fill {
  height: 28px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, .34);
}

.bar-fill-inner {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffe600, #00e69a, #26c9ed);
  box-shadow: 0 0 16px rgba(0, 255, 156, .3);
  transition: width .7s ease;
}

.bar-value {
  color: #ffe600;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}

.bar-info {
  color: #00d9ff;
  font-size: 12px;
  font-weight: 700;
}

@keyframes live-rain {
  to { transform: translateY(80px); }
}

@keyframes matrix-rain {
  to { transform: translateY(62%); }
}

@keyframes matrix-line-drift {
  50% { filter: brightness(1.35); }
}

.site-stats-section {
  margin: 0 60px 34px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  position: relative;
  min-height: 126px;
  padding: 20px;
  border: 1px solid rgba(0, 255, 156, .32);
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 0, rgba(0, 255, 156, .16), transparent 38%),
    linear-gradient(145deg, rgba(3, 18, 11, .98), rgba(4, 10, 8, .98));
  box-shadow: 0 16px 35px rgba(0, 30, 10, .18), inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 255, 156, .08) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, rgba(0, 255, 156, .06) 1px, transparent 1px) 0 0 / 34px 34px;
  pointer-events: none;
}

.info-card .label,
.info-card .value {
  position: relative;
  z-index: 1;
}

.info-card .label {
  margin-bottom: 12px;
  color: rgba(204, 255, 225, .72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.info-card .value {
  color: #19ff36;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 0 14px rgba(0, 255, 42, .34);
}

.feature-section {
  margin: 0 60px 34px;
}

.feature-moving-bar {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(0, 255, 156, .3);
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0, rgba(0, 255, 156, .18), transparent 34%),
    linear-gradient(145deg, #041108, #07100d 58%, #020705);
  box-shadow: 0 18px 42px rgba(0, 30, 10, .16), inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.feature-moving-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(0, 255, 156, .12) 45%, rgba(0, 217, 255, .12) 52%, transparent 64% 100%);
  transform: translateX(-70%);
  animation: feature-scan 5s linear infinite;
  pointer-events: none;
}

.feature-item {
  position: relative;
  z-index: 1;
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(0, 255, 156, .22);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(0, 0, 0, .34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 255, 156, .36);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 255, 156, .09);
  box-shadow: 0 0 18px rgba(0, 255, 156, .16);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 21px;
  flex: 0 0 auto;
}

.feature-title {
  margin-bottom: 5px;
  color: #19ff36;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 12px rgba(0, 255, 42, .28);
}

.feature-desc {
  color: rgba(224, 255, 235, .72);
  font-size: 12px;
  line-height: 1.45;
}

@keyframes feature-scan {
  to { transform: translateX(70%); }
}

.desktop-copy {
  max-width: 520px;
  margin-top: 30px;
  line-height: 1.75;
}

.desktop-copy h3,
.mobile-copy h3 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 400;
}

.desktop-copy p { margin: 0; }

.mobile-copy { display: none; }

.insight-section {
  position: relative;
  isolation: isolate;
  margin: 0 56px 34px;
  padding: 58px 42px 46px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  background: #061a2b;
  box-shadow: 0 22px 60px rgba(0, 44, 66, .2);
}

.insight-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 180%;
  aspect-ratio: 1;
  background: conic-gradient(from 0deg, #04283c, #008ca1, #6940a5, #d05278, #e09b3d, #08788d, #04283c);
  transform: translate(-50%, -50%);
  animation: gradient-orbit 18s linear infinite;
}

.insight-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, .2), transparent 28%),
    linear-gradient(135deg, rgba(2, 18, 32, .52), rgba(3, 30, 48, .78));
  backdrop-filter: blur(22px);
}

.insight-heading {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.insight-heading p,
.insight-card-header p {
  margin: 0 0 5px;
  color: #8ee8ef;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.insight-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.3vw, 40px);
  line-height: 1.12;
}

.insight-heading span {
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
}

.insight-grid {
  width: 100%;
}

.insight-card {
  width: 100%;
  margin-bottom: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: rgba(5, 20, 35, .7);
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 18px 30px rgba(0, 0, 0, .16);
  backdrop-filter: blur(14px);
}

.insight-card:last-child { margin-bottom: 0; }

.insight-card-header {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.insight-card-header p { margin-bottom: 2px; }

.insight-card-header h2,
.insight-card-header h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: .04em;
}

.section-intro {
  margin: -5px 0 20px;
  color: rgba(234, 248, 251, .72);
  font-size: 13px;
  line-height: 1.6;
}

.insight-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(142, 232, 239, .52);
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #9df5fa;
  background: rgba(67, 207, 220, .1);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.faq-list,
.review-list {
  width: 100%;
}

.faq-list .animated-list-item,
.review-list .animated-list-item {
  width: 100%;
  margin-bottom: 12px;
}

.faq-list .animated-list-item:last-child,
.review-list .animated-list-item:last-child { margin-bottom: 0; }

.article-content {
  color: rgba(234, 248, 251, .82);
  font-size: 15px;
  line-height: 1.75;
}

.article-content h1 {
  margin: 0 0 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(142, 232, 239, .3);
  color: #fff;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.15;
}

.article-content h2 {
  margin: 32px 0 10px;
  color: #fff;
  font-size: 25px;
  line-height: 1.25;
}

.article-content h3 {
  margin: 24px 0 8px;
  color: #9df5fa;
  font-size: 19px;
  line-height: 1.35;
}

.article-content p { margin: 0 0 16px; }

.article-content ul,
.article-content ol {
  margin: 8px 0 22px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 7px;
  padding-left: 5px;
}

.article-content li::marker { color: #64e0e8; }

.article-content strong { color: #fff; }

.article-table-wrap {
  width: 100%;
  margin: 20px 0 30px;
  border: 1px solid rgba(142, 232, 239, .24);
  border-radius: 13px;
  overflow-x: auto;
}

.article-data-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: #eaf8fb;
  font-size: 14px;
  line-height: 1.45;
}

.article-data-table th,
.article-data-table td {
  padding: 15px 17px;
  border-right: 1px solid rgba(142, 232, 239, .14);
  border-bottom: 1px solid rgba(142, 232, 239, .14);
  text-align: left;
}

.article-data-table th:last-child,
.article-data-table td:last-child { border-right: 0; }

.article-data-table tbody tr:last-child td { border-bottom: 0; }

.article-data-table thead th {
  color: #9df5fa;
  background: rgba(63, 193, 207, .14);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.article-data-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, .035); }

.animated-list-item {
  position: relative;
  z-index: 0;
  margin: 0;
  border: 0;
  border-radius: 13px;
  overflow: hidden;
  color: #eaf8fb;
  background: transparent;
}

.animated-list-item::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 160%;
  aspect-ratio: 1;
  background: conic-gradient(from 0deg, transparent 0 38%, #4de5ee 48%, #bc75ff 57%, transparent 68% 100%);
  transform: translate(-50%, -50%);
  animation: border-orbit 4.5s linear infinite;
}

.animated-list-item::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px;
  border-radius: 12px;
  background: rgba(8, 29, 45, .96);
  transition: background .25s ease;
}

.animated-list-item:hover::after,
.animated-list-item:focus-visible::after,
.animated-list-item[open]::after {
  background: rgba(12, 42, 59, .98);
}

.faq-list summary {
  position: relative;
  padding: 16px 42px 16px 16px;
  color: #f5fdff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 17px;
  color: #7ee4eb;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .25s ease;
}

.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-list details p {
  margin: -4px 0 0;
  padding: 0 16px 16px;
  color: rgba(234, 248, 251, .72);
  font-size: 13px;
  line-height: 1.55;
}

.review-list blockquote {
  min-height: 116px;
  padding: 15px 16px;
}

.review-list p {
  margin: 0 0 12px;
  color: rgba(234, 248, 251, .8);
  font-size: 13px;
  line-height: 1.5;
}

.review-list footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #fff;
  font-size: 12px;
}

.review-list footer time,
.review-list footer span {
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, .3);
  color: #7edce5;
}

@keyframes gradient-orbit {
  to { transform: translate(-50%, -50%) rotate(1turn); }
}

@keyframes border-orbit {
  to { transform: translate(-50%, -50%) rotate(1turn); }
}

@media (prefers-reduced-motion: reduce) {
  .feature-moving-bar::before,
  .live-rtp-section::before,
  .live-rtp-section::after,
  .insight-section::before,
  .animated-list-item::before { animation: none; }
}

.footer { position: relative; }

.footer-grid {
  max-width: 1818px;
  margin: 0 auto;
  padding: 28px 50px 34px;
  display: grid;
  grid-template-columns: 1.02fr 1.02fr 1fr 1.22fr;
  gap: 54px;
  align-items: start;
}

.footer-toggle,
.footer-col h2 {
  margin: 0 0 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--deep-blue);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}

.footer-toggle span { display: none; }

.footer-col a {
  display: table;
  margin: 6px 0;
  color: var(--deep-blue);
  font-size: 14px;
  line-height: 1.15;
}

.footer-col p {
  margin: 7px 0;
  color: var(--deep-blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.social-title { margin-top: 22px !important; }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 7px;
}

.socials img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.app-col img {
  width: 210px;
  height: auto;
  margin: 3px 0;
}

.accept-col { position: relative; }

.payments {
  width: 285px;
  height: auto;
  margin: 13px 0 8px;
}

.cert {
  position: absolute;
  top: 29px;
  right: 0;
  float: none;
  width: 94px;
  height: 58px;
  margin-left: 0;
  border: 2px solid #111;
  border-radius: 30px 6px 6px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
  font-weight: 700;
  line-height: .95;
}

.cert small {
  font-size: 6px;
  font-weight: 400;
}

.backtop {
  position: absolute;
  right: 52px;
  bottom: 72px;
  width: 58px;
  height: 58px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--deep-blue);
  font-size: 28px;
  cursor: pointer;
}

.copyright {
  padding: 18px;
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1320px) {
  .main-nav { gap: 6px; padding-inline: 24px; }
  .main-nav a { padding-inline: 10px; font-size: 13px; }
  .product-section { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .main-image { height: 620px; }
  .product-info { height: 620px; }
}

@media (max-width: 980px) {
  .product-section { grid-template-columns: 1fr 1fr; }
  .main-image { height: 520px; }

  .live-rtp-section { margin-inline: 24px; padding-inline: 18px; }
  .rtp-calendar-list { grid-template-columns: repeat(7, minmax(118px, 1fr)); overflow-x: auto; padding-bottom: 4px; }
  .bar-item { grid-template-columns: 1fr 48px; gap: 8px 12px; }
  .bar-name { grid-column: 1 / -1; }
  .bar-info { grid-column: 1 / -1; }

  .site-stats-section { margin-inline: 24px; }
  .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .feature-section { margin-inline: 24px; }
  .feature-moving-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .insight-section {
    margin-inline: 24px;
    padding-inline: 30px;
  }

}

@media (max-width: 720px) {
  body {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  .desktop-only,
  .main-nav { display: none !important; }

  .topbar { height: 23px; }
  .topbar-inner { justify-content: flex-end; padding: 0 8px; }
  .topbar span {
    font-size: 11px;
    font-weight: 400;
  }

  .mobile-nav {
    height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    background: #fff;
  }

  .hamburger {
    width: 32px;
    border: 0;
    background: #fff;
    color: var(--deep-blue);
    font-size: 22px;
    cursor: pointer;
  }

  .brand {
    height: 42px;
    padding: 0 12px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    width: 126px;
  }

  .brand img {
    width: 100%;
    height: auto;
    max-height: 30px;
    object-fit: contain;
  }

  .mobile-icons {
    margin-left: auto;
    padding-right: 6px;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .mobile-icons img {
    width: 28px;
    height: 28px;
    outline: 2px dashed var(--green);
    outline-offset: 3px;
  }

  .mobile-menu {
    display: none;
    padding: 8px 10px 10px;
    border-bottom: 1px solid #eee;
    background: #fff;
  }

  .mobile-menu.open { display: grid; gap: 8px; }
  .mobile-menu a {
    color: var(--deep-blue);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
  }

  .top-action-bar {
    padding: 10px 15px 0;
    gap: 8px;
  }

  .top-action-button {
    min-height: 44px;
    border-radius: 8px;
    font-size: 13px;
    box-shadow: 0 5px 0 #000, 0 8px 12px rgba(0, 0, 0, .18);
  }

  .top-action-button.register {
    box-shadow: 0 5px 0 #c23a31, 0 8px 12px rgba(194, 58, 49, .18);
  }

  main { max-width: none; }

  .product-section {
    display: block;
    padding: 0 0 18px;
  }

  .main-image {
    height: auto;
    padding: 0;
    border: 0;
  }

  .main-image img {
    width: 100%;
    height: auto;
    padding: 10px;
  }

  .thumbs {
    margin: 18px 15px 0;
    gap: 5px;
  }

  .thumb {
    height: 67px;
    padding: 7px;
  }

  .product-info {
    height: auto;
    padding: 13px 15px 0;
    display: block;
  }

  .live-rtp-section {
    margin: 0 12px 20px;
    padding: 18px 10px;
    border-radius: 18px;
  }

  .site-stats-section { margin: 0 12px 20px; }
  .info-grid { grid-template-columns: 1fr; gap: 10px; }

  .info-card {
    min-height: 96px;
    padding: 16px;
    border-radius: 15px;
  }

  .info-card .label { font-size: 11px; }
  .info-card .value { font-size: 22px; }

  .feature-section { margin: 0 12px 20px; }

  .feature-moving-bar {
    padding: 12px;
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 18px;
  }

  .feature-item {
    min-height: 86px;
    padding: 13px;
    border-radius: 14px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 19px;
  }

  .feature-title { font-size: 14px; }
  .feature-desc { font-size: 11px; }

  .rtp-calendar-neng4d {
    padding: 11px;
    border-radius: 11px;
  }

  .rtp-calendar-head,
  .bar-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .rtp-calendar-title,
  .bar-head h2 { font-size: 16px; }
  .rtp-calendar-time,
  .bar-head span { font-size: 11px; text-align: left; }

  .rtp-calendar-list {
    grid-template-columns: repeat(7, 104px);
    gap: 8px;
  }

  .rtp-day-card { min-height: 84px; }

  .slot-bar-live {
    margin-top: 18px;
    padding: 18px 14px;
    border-radius: 16px;
  }

  .bar-chart { gap: 16px; }

  .bar-item {
    grid-template-columns: 1fr 42px;
    gap: 7px 9px;
  }

  .bar-name {
    grid-column: 1 / -1;
    font-size: 14px;
  }

  .bar-fill { height: 22px; }
  .bar-value { font-size: 14px; }

  .bar-info {
    grid-column: 1 / -1;
    font-size: 11px;
  }

  .neng4d-card {
    height: auto;
    padding: 15px;
    gap: 12px;
    border-radius: 16px;
  }

  .hero-title h1 { font-size: 22px; }

  .info-head h2,
  .bonus-head h3 { font-size: 12px; }

  .info-list,
  .bonus-list { padding: 9px 11px; }

  .info-row {
    align-items: flex-start;
    gap: 10px;
  }

  .info-text,
  .info-number,
  .bonus-item p { font-size: 12px; }

  .cta-buttons-gold { gap: 9px; }

  .btn-gold {
    min-height: 45px;
    font-size: 13px;
  }

  .desktop-copy { display: none; }

  .mobile-copy {
    display: block;
    padding: 8px 16px 17px;
    line-height: 1.7;
  }

  .mobile-copy p {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
  }

  .mobile-copy h3 {
    font-size: 14px;
    font-weight: 600;
  }

  .insight-section {
    margin: 0 12px 20px;
    padding: 38px 14px 16px;
    border-radius: 18px;
  }

  .insight-heading {
    margin-bottom: 25px;
    padding: 0 6px;
  }

  .insight-heading h2 { font-size: 26px; }
  .insight-heading span { font-size: 13px; line-height: 1.5; }

  .insight-card {
    padding: 18px;
    border-radius: 15px;
  }

  .insight-card-header { margin: 0 0 15px; }
  .insight-card-header h2,
  .insight-card-header h3 { font-size: 19px; }
  .insight-icon { width: 40px; height: 40px; border-radius: 12px; }

  .faq-list .animated-list-item,
  .review-list .animated-list-item { margin-bottom: 9px; }

  .review-list blockquote { min-height: auto; }

  .article-content { font-size: 14px; line-height: 1.7; }
  .article-content h1 { font-size: 27px; }
  .article-content h2 { margin-top: 27px; font-size: 21px; }
  .article-content h3 { font-size: 17px; }
  .article-data-table { font-size: 13px; }

  .faq-list summary { font-size: 13px; }

  .footer-grid {
    display: block;
    padding: 0 0 34px;
  }

  .footer-toggle {
    width: 100%;
    margin: 0;
    padding: 12px 16px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    color: var(--deep-blue);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
  }

  .footer-toggle span { display: inline; }

  .link-col .footer-content {
    display: none;
    padding: 4px 16px 15px;
  }

  .help-col .footer-content {
    display: block;
    padding: 4px 16px 14px;
  }

  .footer-col a {
    margin: 7px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
  }

  .footer-col p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
  }

  .footer-col.open .footer-content { display: block; }

  .help-col .footer-content > a,
  .help-col .footer-content > p:not(.social-title) {
    display: none;
  }

  .help-col.open .footer-content > a {
    display: table;
  }

  .help-col.open .footer-content > p {
    display: block;
  }

  .help-col .social-title,
  .help-col .socials {
    display: block;
  }

  .help-col .social-title {
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    margin: 14px 0 8px !important;
  }

  .help-col .socials {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 0 22px;
  }

  .socials img {
    width: 28px;
    height: 28px;
  }

  .app-col {
    padding-top: 14px;
    text-align: center;
  }

  .app-col h2 {
    margin: 0 0 5px;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 400;
    text-align: center;
  }

  .app-col img {
    width: 138px;
    height: auto;
    margin: 3px auto;
  }

  .accept-col {
    padding: 15px 16px 62px;
    position: relative;
  }

  .accept-col h2 {
    margin: 0;
    color: var(--deep-blue);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
  }

  .payments {
    width: min(282px, calc(100vw - 34px));
    height: auto;
    margin: 12px auto 10px;
  }

  .cert {
    position: static;
    float: none;
    width: 94px;
    height: 64px;
    margin: 8px auto 12px;
    border-radius: 32px 6px 6px 32px;
  }

  .accept-col p {
    margin: 4px 0;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
  }

  .backtop {
    right: 8px;
    bottom: 54px;
    width: 42px;
    height: 42px;
    background: #fff;
    font-size: 22px;
  }

  .copyright {
    padding: 11px 6px;
    font-size: 10px;
    font-weight: 400;
  }
}

/* Theme override: 161A30, 31304D, B6BBC4, F0ECE5 */
:root {
  --blue: #31304D;
  --deep-blue: #161A30;
  --text: #161A30;
  --muted: #B6BBC4;
  --line: #B6BBC4;
  --green: #B6BBC4;
  --theme-light: #F0ECE5;
  --theme-muted: #B6BBC4;
  --theme-dark: #161A30;
  --theme-accent: #31304D;
}

body {
  color: #161A30;
  background: #F0ECE5;
}

.snow-symbol {
  color: #F0ECE5;
  filter: drop-shadow(0 3px 4px rgba(22, 26, 48, .3));
}

.topbar,
.copyright {
  color: #F0ECE5;
  background: #161A30;
}

.main-nav,
.mobile-nav,
.mobile-menu,
.hamburger,
.brand,
.thumb,
.backtop {
  background: #F0ECE5;
}

.main-nav,
.mobile-nav,
.mobile-menu,
.brand {
  border-color: #B6BBC4;
}

.main-nav a,
.mobile-menu a,
.footer-toggle,
.footer-col h2,
.footer-col a,
.footer-col p,
.accept-col h2,
.accept-col p,
.app-col h2,
.hamburger,
.backtop {
  color: #161A30;
}

.main-nav a {
  border-color: rgba(182, 187, 196, .65);
  background: #F0ECE5;
}

.main-nav a:hover,
.mobile-menu a:hover,
.footer-col a:hover {
  color: #31304D;
}

.main-nav .bonus,
.top-action-button.register,
.btn-register-gold {
  color: #F0ECE5;
  background: #31304D;
  border-color: #31304D;
}

.top-action-button {
  color: #F0ECE5;
  background: #161A30;
  box-shadow: 0 7px 0 #31304D, 0 12px 18px rgba(22, 26, 48, .22);
}

.top-action-button.register {
  box-shadow: 0 7px 0 #161A30, 0 12px 18px rgba(49, 48, 77, .24);
}

.neng4d-card,
.live-rtp-section,
.rtp-calendar-neng4d,
.slot-bar-live,
.info-card,
.feature-moving-bar,
.insight-section,
.insight-card {
  color: #F0ECE5;
  border-color: rgba(182, 187, 196, .45);
  background: linear-gradient(145deg, #161A30, #31304D);
  box-shadow: 0 18px 44px rgba(22, 26, 48, .28), inset 0 0 0 1px rgba(240, 236, 229, .08);
}

.neng4d-card::before,
.feature-moving-bar::before,
.live-rtp-section::after,
.insight-section::after {
  background: linear-gradient(130deg, transparent, rgba(182, 187, 196, .2), transparent);
}

.live-rtp-section::before,
.info-card::before {
  background:
    linear-gradient(90deg, rgba(240, 236, 229, .08) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(180deg, rgba(182, 187, 196, .1) 1px, transparent 1px) 0 0 / 68px 68px;
}

.insight-section::before,
.animated-list-item::before {
  background: conic-gradient(from 0deg, #161A30, #31304D, #B6BBC4, #F0ECE5, #161A30);
}

.hero-title h1,
.article-content h1,
.article-content h2,
.insight-card-header h2,
.insight-card-header h3,
.faq-list summary,
.review-list footer,
.bar-name,
.rtp-percent,
.info-number {
  color: #F0ECE5;
  text-shadow: 0 0 16px rgba(22, 26, 48, .28);
}

.hero-title span,
.highlight-gold,
.info-head h2,
.bonus-head h3,
.rtp-calendar-title,
.bar-head h2,
.bar-value,
.article-content h3,
.article-content a,
.article-content li::marker,
.faq-list summary::after,
.feature-title,
.info-card .value,
.matrix-digit.bright {
  color: #F0ECE5;
  text-shadow: 0 0 14px rgba(182, 187, 196, .32);
}

.info-container,
.bonus-wrap,
.bonus-item,
.rtp-day-card,
.feature-item,
.animated-list-item::after {
  border-color: rgba(182, 187, 196, .38);
  background: rgba(22, 26, 48, .88);
}

.info-head,
.bonus-head,
.article-data-table thead th,
.rtp-status,
.bar-head span {
  color: #F0ECE5;
  background: linear-gradient(90deg, #161A30, #31304D);
}

.info-dot,
.gold-icon,
.game-icon,
.bar-fill-inner {
  background: #B6BBC4;
  border-color: #B6BBC4;
  box-shadow: 0 0 14px rgba(182, 187, 196, .42);
}

.info-text,
.bonus-item p,
.rtp-calendar-time,
.bar-info,
.rtp-day-name,
.rtp-day-date,
.feature-desc,
.article-content,
.section-intro,
.faq-list details p,
.review-list p,
.insight-heading span,
.article-data-table,
.animated-list-item {
  color: #F0ECE5;
}

.bar-fill {
  background: rgba(240, 236, 229, .18);
  box-shadow: inset 0 0 12px rgba(22, 26, 48, .34);
}

.btn-gold {
  color: #161A30;
  border-color: #B6BBC4;
  background: #F0ECE5;
  box-shadow: 0 8px 20px rgba(22, 26, 48, .2);
}

.btn-login-gold {
  color: #F0ECE5;
  background: #161A30;
}

.cert {
  color: #161A30;
  border-color: #161A30;
}

.article-content h1,
.article-table-wrap,
.article-data-table th,
.article-data-table td,
.review-list footer time,
.review-list footer span {
  border-color: rgba(240, 236, 229, .26);
}