:root {
  --c-bg: #0b0c0d;
  --c-bg2: #111214;
  --c-bg3: #181a1b;
  --c-card: #141618;
  --c-border: #242628;
  --c-accent: #bbeb00;
  --c-accent-dark: #a3d000;
  --c-btn-dark: #1f2021;
  --c-btn-dark-hover: #2a2c2e;
  --c-text: #e8eaec;
  --c-text-muted: #8a8f97;
  --c-text-dim: #5a5f68;
  --c-header: #0b0c0d;
  --c-footer: #0b0c0d;
  --c-plus: #2a3d00;
  --c-minus: #3d1a00;
  --c-plus-border: #5a8000;
  --c-minus-border: #8a3a00;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 0 24px rgba(187, 235, 0, 0.18);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
  font-size: 16px;
}
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-accent-dark);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.x7f3k {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.k9m2p {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.wp-content-wrapper {
  display: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: none;
}
.btn--login {
  background: var(--c-btn-dark);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn--login:hover {
  background: var(--c-btn-dark-hover);
  color: #fff;
  border-color: #444;
}
.btn--signup {
  background: var(--c-accent);
  color: #0b0c0d;
  font-weight: 800;
}
.btn--signup:hover {
  background: var(--c-accent-dark);
  color: #0b0c0d;
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}
.btn--lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: var(--radius-md);
}
.btn--outline {
  background: transparent;
  color: var(--c-accent);
  border: 2px solid var(--c-accent);
}
.btn--outline:hover {
  background: var(--c-accent);
  color: #0b0c0d;
}

.b3d9r {
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.b3d9r .x7f3k {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.q1z8m {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.q1z8m img {
  height: 80px;
  width: auto;
}
.n7w4x {
  display: flex;
  align-items: center;
  gap: 6px;
}
.n7w4x a {
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}
.n7w4x a:hover {
  color: var(--c-accent);
  background: rgba(187, 235, 0, 0.06);
}
.p5v2k {
  display: flex;
  align-items: center;
  gap: 8px;
}
.o9j1l {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 4px 12px 4px 8px;
  font-size: 12px;
  color: var(--c-text-muted);
}
.o9j1l .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: blink 1.8s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.r6t3n {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  cursor: pointer;
}
.r6t3n span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.r6t3n.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.r6t3n.active span:nth-child(2) {
  opacity: 0;
}
.r6t3n.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.s2d7y {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  z-index: 999;
  padding: 24px 20px;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}
.s2d7y.open {
  display: flex;
}
.s2d7y a {
  color: var(--c-text);
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  text-align: center;
}
.s2d7y a:hover {
  background: var(--c-bg3);
}
.s2d7y .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

.h4r8p {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.h4r8p::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11, 12, 13, 0.92) 40%,
      rgba(11, 12, 13, 0.5) 100%
    ),
    url("/ttban.jpg") center/cover no-repeat;
  z-index: 0;
}
.h4r8p .x7f3k {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}
.m3c6n {
  max-width: 580px;
}
.m3c6n h1 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 16px;
  line-height: 1.15;
  color: #fff;
}
.m3c6n h1 span {
  color: var(--c-accent);
}
.m3c6n p {
  font-size: 18px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.j5k9z {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.v8w2f {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.v8w2f .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.v8w2f .stat span:first-child {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-accent);
  font-family: "Montserrat", Arial, sans-serif;
}
.v8w2f .stat span:last-child {
  font-size: 12px;
  color: var(--c-text-muted);
}

.sec {
  padding: 64px 0;
}
.sec-title {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 8px;
  color: #fff;
}
.sec-sub {
  font-size: 15px;
  color: var(--c-text-muted);
  margin-bottom: 36px;
}
.sec-head {
  margin-bottom: 36px;
}

.a4t7b {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.a4t7b .col {
  flex: 1 1 300px;
  background: var(--c-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--c-border);
}
.a4t7b .col--plus {
  border-color: var(--c-plus-border);
  background: linear-gradient(135deg, var(--c-card), #1a2a00);
}
.a4t7b .col--minus {
  border-color: var(--c-minus-border);
  background: linear-gradient(135deg, var(--c-card), #2a1200);
}
.a4t7b .col-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.col--plus .col-title {
  color: #a8e000;
}
.col--minus .col-title {
  color: #f97316;
}
.pm-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
}
.pm-item:last-child {
  border-bottom: none;
}
.pm-item .ico {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.col--plus .ico {
  background: rgba(168, 224, 0, 0.15);
  color: #a8e000;
}
.col--minus .ico {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
}
.pm-item span {
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.5;
}

.l2x9m {
  background: var(--c-bg2);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--c-border);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.l2x9m .jackpot-title {
  font-size: 15px;
  color: var(--c-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.l2x9m .jackpot-amount {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--c-accent);
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: -1px;
  text-shadow: 0 0 40px rgba(187, 235, 0, 0.4);
  margin-bottom: 8px;
}
.l2x9m .jackpot-sub {
  font-size: 13px;
  color: var(--c-text-muted);
}
.jackpot-ticker {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.jackpot-ticker .jt-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  min-width: 160px;
  text-align: center;
}
.jt-item .jt-label {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: 4px;
}
.jt-item .jt-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-accent);
  font-family: "Montserrat", Arial, sans-serif;
}

.f9d3s {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.f9d3s::-webkit-scrollbar {
  height: 4px;
}
.f9d3s::-webkit-scrollbar-track {
  background: var(--c-bg2);
}
.f9d3s::-webkit-scrollbar-thumb {
  background: var(--c-border);
}
.t8r4k {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-width: 280px;
  flex: 0 0 calc(33.33% - 12px);
  scroll-snap-align: start;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.t8r4k:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}
.t8r4k .t-badge {
  background: var(--c-accent);
  color: #0b0c0d;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.t8r4k h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #fff;
}
.t8r4k .t-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.t8r4k .t-prize {
  font-size: 24px;
  font-weight: 900;
  color: var(--c-accent);
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 6px;
}
.t8r4k .t-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-text-muted);
}
.t8r4k .t-timer svg {
  color: var(--c-accent);
}
.timer-digits {
  font-weight: 700;
  color: var(--c-text);
}

.app-block {
  background: var(--c-bg2);
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.app-inner {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.app-info {
  flex: 1 1 340px;
  padding: 36px;
}
.app-info p {
  color: var(--c-text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.app-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 260px;
}
.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-btn-dark);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  color: var(--c-text);
  text-decoration: none;
  transition: all var(--transition);
  font-size: 14px;
}
.app-btn:hover {
  background: var(--c-btn-dark-hover);
  border-color: #555;
  color: #fff;
}
.app-btn .ab-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  fill: var(--c-accent);
}
.app-btn .ab-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.app-btn .ab-label {
  font-size: 11px;
  color: var(--c-text-muted);
}
.app-btn .ab-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.app-table-wrap {
  flex: 1 1 340px;
  overflow-x: auto;
  padding: 36px 36px 36px 0;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.app-table th,
.app-table td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
}
.app-table th {
  background: var(--c-bg3);
  color: var(--c-text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.app-table td {
  background: var(--c-card);
  color: var(--c-text);
}
.app-table tr:hover td {
  background: var(--c-bg3);
}

.c5n1q {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.c5n1q::-webkit-scrollbar {
  height: 4px;
}
.c5n1q::-webkit-scrollbar-track {
  background: var(--c-bg2);
}
.c5n1q::-webkit-scrollbar-thumb {
  background: var(--c-border);
}
.bonus-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-width: 280px;
  flex: 0 0 calc(33.33% - 12px);
  scroll-snap-align: start;
  transition: transform var(--transition);
}
.bonus-card:hover {
  transform: translateY(-4px);
}
.bonus-card .bc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(187, 235, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
  border: 1px solid rgba(187, 235, 0, 0.2);
}
.bonus-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
}
.bonus-card .bc-amount {
  font-size: 26px;
  font-weight: 900;
  color: var(--c-accent);
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 6px;
}
.bonus-card .bc-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.bonus-card .bc-tag {
  display: inline-block;
  margin-top: 12px;
  background: rgba(187, 235, 0, 0.1);
  color: var(--c-accent);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(187, 235, 0, 0.3);
}

.demo-wrap {
  background: var(--c-bg2);
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
}
.demo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--c-border);
}
.demo-bar .d-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.demo-bar .d-badge {
  background: rgba(187, 235, 0, 0.12);
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(187, 235, 0, 0.25);
}
.demo-iframe {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
  background: #000;
}

.review-block {
  background: var(--c-bg2);
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
  padding: 40px;
}
.author-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}
.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--c-bg3);
  border: 2px solid var(--c-accent);
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info .a-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.author-info .a-role {
  font-size: 13px;
  color: var(--c-text-muted);
}
.author-info .a-link {
  font-size: 12px;
  color: var(--c-accent);
}
.content-area h2 {
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #fff;
}
.content-area h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #e0e4e8;
}
.content-area p {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.content-area ul,
.content-area ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.content-area ul {
  list-style: disc;
}
.content-area ol {
  list-style: decimal;
}
.content-area li {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.6;
  margin-bottom: 6px;
}
.content-area a {
  color: var(--c-accent);
  text-decoration: underline;
}
.content-area table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 14px;
}
.content-area th,
.content-area td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--c-border);
}
.content-area th {
  background: var(--c-bg3);
  color: var(--c-text-muted);
}
.content-area td {
  background: var(--c-card);
}
.content-area strong {
  color: #fff;
  font-weight: 700;
}
.content-area em {
  color: var(--c-accent);
  font-style: italic;
}
.content-area blockquote {
  border-left: 3px solid var(--c-accent);
  padding-left: 16px;
  color: var(--c-text-muted);
  font-style: italic;
  margin: 16px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(187, 235, 0, 0.4);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 12px;
}
.faq-q span {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  flex: 1;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.faq-icon svg {
  transition: transform var(--transition);
  color: var(--c-text-muted);
}
.faq-item.open .faq-icon {
  background: rgba(187, 235, 0, 0.12);
}
.faq-item.open .faq-icon svg {
  transform: rotate(180deg);
  color: var(--c-accent);
}
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  display: block;
}

.g7s4t {
  background: var(--c-footer);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}
.ft-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.ft-brand {
  flex: 0 0 220px;
}
.ft-brand img {
  height: 70px;
  margin-bottom: 14px;
}
.ft-brand p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.ft-col {
  flex: 1 1 140px;
}
.ft-col .ft-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.ft-col a {
  display: block;
  font-size: 13px;
  color: var(--c-text-dim);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.ft-col a:hover {
  color: var(--c-accent);
}
.ft-logos {
  margin-bottom: 24px;
}
.ft-logos-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.ft-logos-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.ft-logo-badge {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
}
.ft-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.ft-copy {
  font-size: 12px;
  color: var(--c-text-dim);
  line-height: 1.7;
}
.ft-legal {
  font-size: 11px;
  color: var(--c-text-dim);
  max-width: 500px;
  line-height: 1.6;
}

.w3d6k {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #1a2200, #0d1a00);
  border-top: 2px solid var(--c-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.w3d6k .wd-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.w3d6k .wd-text span:first-child {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-accent);
}
.w3d6k .wd-text span:last-child {
  font-size: 12px;
  color: var(--c-text-muted);
}
.w3d6k .wd-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  line-height: 1;
  transition: color var(--transition);
}
.w3d6k .wd-close:hover {
  color: var(--c-text);
}
.w3d6k .btn--signup {
  font-size: 14px;
  padding: 12px 24px;
}
body.widget-hidden .w3d6k {
  display: none;
}

.m8v5c {
  display: none;
}
.m8v5c input[type="text"] {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--c-text);
  font-size: 14px;
  width: 200px;
}
.m8v5c select {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 10px;
  color: var(--c-text);
  font-size: 14px;
}
.m8v5c label {
  font-size: 13px;
  color: var(--c-text-muted);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .n7w4x {
    display: none;
  }
  .r6t3n {
    display: flex;
  }
  .t8r4k,
  .bonus-card {
    flex: 0 0 calc(80% - 12px);
  }
  .a4t7b {
    flex-direction: column;
  }
  .app-inner {
    flex-direction: column;
  }
  .app-table-wrap {
    padding: 0 20px 24px;
  }
  .demo-iframe {
    height: 400px;
  }
  .ft-grid {
    flex-direction: column;
    gap: 28px;
  }
  .ft-brand {
    flex: none;
  }
  .sec {
    padding: 44px 0;
  }
}
@media (max-width: 600px) {
  .h4r8p {
    min-height: 380px;
  }
  .m3c6n p {
    font-size: 15px;
  }
  .j5k9z {
    flex-direction: column;
  }
  .j5k9z .btn {
    width: 100%;
    justify-content: center;
  }
  .v8w2f {
    gap: 16px;
  }
  .l2x9m {
    padding: 24px 16px;
  }
  .review-block {
    padding: 24px 16px;
  }
  .ft-bottom {
    flex-direction: column;
  }
  .app-info {
    padding: 24px;
  }
  .jackpot-ticker {
    flex-direction: column;
    align-items: center;
  }
  .jt-item {
    min-width: 200px;
    width: 100%;
  }
}

.wp-block-template {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.elementor-section-wrap {
  display: none;
}
#wpadminbar {
  display: none !important;
}
.site-wrapper {
  position: relative;
}
.entry-content {
  font-family: inherit;
}

[data-v0-uid="x7k2m"] {
  background: var(--c-bg2);
}
[data-v0-uid="p3n9r"] {
  border-color: var(--c-border);
}
