:root {
  --c-bg: #0b0c0d;
  --c-bg2: #111316;
  --c-bg3: #181a1e;
  --c-surface: #1a1c20;
  --c-surface2: #202328;
  --c-border: #2a2d32;
  --c-accent: #bbeb00;
  --c-accent-hover: #ceff00;
  --c-accent-dark: #8fb000;
  --c-btn-dark: #1f2021;
  --c-btn-dark-hover: #2d3033;
  --c-text: #e8eaed;
  --c-text-muted: #8a9099;
  --c-text-dim: #5a6070;
  --c-white: #ffffff;
  --c-gold: #f0b429;
  --c-green: #22c55e;
  --c-red: #ef4444;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 24px rgba(187, 235, 0, 0.18);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: "Montserrat", "Inter", Arial, sans-serif;
  --font-body: "Inter", "Roboto", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 15px;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-accent-hover);
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--font-body);
}

.x7k2m {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.q9p3n {
  display: flex;
}
.r4t8w {
  align-items: center;
}
.y2b6e {
  justify-content: space-between;
}
.m5v1x {
  flex-wrap: wrap;
}
.h3f7a {
  gap: 12px;
}
.d8k4z {
  gap: 20px;
}
.p6r2t {
  gap: 32px;
}
.n1c9s {
  gap: 8px;
}
.w4j3m {
  flex-direction: column;
}

.jt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: none;
  outline: none;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.jt-btn--dark {
  background: var(--c-btn-dark);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.jt-btn--dark:hover {
  background: var(--c-btn-dark-hover);
  color: var(--c-white);
  transform: translateY(-1px);
}

.jt-btn--accent {
  background: var(--c-accent);
  color: #0b0c0d;
}
.jt-btn--accent:hover {
  background: var(--c-accent-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.jt-btn--lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.jt-btn--sm {
  padding: 7px 16px;
  font-size: 13px;
}

.jt-section {
  padding: 70px 0;
}

.jt-section--sm {
  padding: 40px 0;
}

.jt-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 40px);
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-balance: balance;
}

.jt-title span {
  color: var(--c-accent);
}

.jt-subtitle {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-top: 12px;
}

.jt-label {
  display: inline-block;
  background: rgba(187, 235, 0, 0.12);
  color: var(--c-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
  border: 1px solid rgba(187, 235, 0, 0.25);
}

.jt-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.jt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(187, 235, 0, 0.3);
}

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

#b2k9p {
  position: relative;
  z-index: 100;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}
#b2k9p.sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.hd-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.hd-logo img {
  height: 42px;
  width: auto;
}

.hd-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.hd-nav a {
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
  white-space: nowrap;
}
.hd-nav a:hover {
  color: var(--c-text);
  background: var(--c-surface);
}

.hd-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hd-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 99px;
  padding: 5px 12px;
  white-space: nowrap;
}
.hd-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px var(--c-green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.hd-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hd-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.hd-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hd-burger.active span:nth-child(2) {
  opacity: 0;
}
.hd-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hd-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  padding: 16px 20px;
  gap: 4px;
}
.hd-mobile-menu.open {
  display: flex;
}
.hd-mobile-menu a {
  color: var(--c-text-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}
.hd-mobile-menu a:hover {
  background: var(--c-surface);
  color: var(--c-text);
}
.hd-mobile-menu .jt-btn {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

#s5r2n {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/ttban.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 12, 13, 0.95) 0%,
    rgba(11, 12, 13, 0.6) 60%,
    rgba(11, 12, 13, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.3);
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 24px;
  letter-spacing: 0.4px;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 5.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--c-white);
  margin-bottom: 20px;
  text-balance: balance;
}
.hero-title .acc {
  color: var(--c-accent);
}

.hero-desc {
  font-size: 17px;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--c-white);
  line-height: 1.1;
}
.hero-stat-val span {
  color: var(--c-accent);
}
.hero-stat-lbl {
  font-size: 12px;
  color: var(--c-text-dim);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

#m3z8q {
  padding: 16px 0;
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.bc-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--c-text-dim);
}
.bc-list a {
  color: var(--c-text-muted);
}
.bc-list a:hover {
  color: var(--c-accent);
}
.bc-sep {
  color: var(--c-text-dim);
  font-size: 12px;
}
.bc-list .bc-current {
  color: var(--c-text-muted);
}

#f4n1v {
  background: var(--c-bg2);
}
.adv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.adv-item {
  flex: 1 1 220px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.adv-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(187, 235, 0, 0.3);
}
.adv-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.adv-icon svg {
  width: 26px;
  height: 26px;
  color: var(--c-accent);
}
.adv-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-white);
  margin-bottom: 8px;
}
.adv-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

#w7l5b {
  background: var(--c-bg);
}
.winners-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.winners-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}
.winners-table thead tr {
  background: var(--c-surface2);
  border-bottom: 1px solid var(--c-border);
}
.winners-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.winners-table td {
  padding: 13px 18px;
  font-size: 14px;
  color: var(--c-text);
  border-bottom: 1px solid rgba(42, 45, 50, 0.7);
}
.winners-table tr:last-child td {
  border-bottom: none;
}
.winners-table tr:nth-child(even) td {
  background: rgba(26, 28, 32, 0.4);
}
.winners-table tr:hover td {
  background: var(--c-surface);
}
.winner-rank {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: var(--c-text-dim);
}
.winner-rank.gold {
  color: #f0b429;
}
.winner-rank.silver {
  color: #9aa5b4;
}
.winner-rank.bronze {
  color: #c07c3a;
}
.winner-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.winner-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-surface2);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
}
.winner-nick {
  font-weight: 600;
}
.winner-game {
  color: var(--c-text-muted);
  font-size: 13px;
}
.winner-amount {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--c-accent);
}

#k2p8e {
  background: var(--c-bg2);
}
.bonus-grid {
  display: flex;
  gap: 24px;
}
.bonus-card {
  flex: 1 1 280px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(187, 235, 0, 0.35);
}
.bonus-card--featured {
  border-color: rgba(187, 235, 0, 0.5);
  box-shadow: 0 0 30px rgba(187, 235, 0, 0.1);
}
.bonus-card-top {
  padding: 28px 28px 0;
  position: relative;
}
.bonus-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.bonus-tag--new {
  background: rgba(187, 235, 0, 0.15);
  color: var(--c-accent);
  border: 1px solid rgba(187, 235, 0, 0.25);
}
.bonus-tag--hot {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.bonus-tag--fs {
  background: rgba(240, 180, 41, 0.12);
  color: var(--c-gold);
  border: 1px solid rgba(240, 180, 41, 0.25);
}

.bonus-amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--c-white);
  line-height: 1.05;
  margin-bottom: 8px;
}
.bonus-amount span {
  color: var(--c-accent);
}
.bonus-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 14px;
}
.bonus-conds {
  font-size: 12px;
  color: var(--c-text-dim);
  margin-bottom: 20px;
}
.bonus-card-body {
  padding: 0 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bonus-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.bonus-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--c-text-muted);
}
.bonus-feat-ic {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-green);
}
.bonus-feat-ic svg {
  width: 11px;
  height: 11px;
}

.bonus-slider-wrap {
  display: none;
}

#e1m3x {
  background: var(--c-bg);
}
.slot-wrap {
  max-width: 520px;
  margin: 0 auto;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.slot-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-white);
  margin-bottom: 6px;
}
.slot-subtitle {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
}
.slot-machine {
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.slot-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}
.slot-reel {
  width: 90px;
  height: 90px;
  background: var(--c-bg2);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  line-height: 1;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s;
}
.slot-reel.spinning {
  border-color: var(--c-accent);
  animation: reel-shake 0.12s linear infinite;
}
@keyframes reel-shake {
  0%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-3px);
  }
  75% {
    transform: translateY(3px);
  }
}
.slot-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  margin: 0;
}
.slot-balance {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--c-text-muted);
}
.slot-balance strong {
  color: var(--c-white);
  font-family: var(--font-head);
  font-weight: 700;
}
.slot-win-msg {
  background: rgba(187, 235, 0, 0.12);
  border: 1px solid rgba(187, 235, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: none;
}
.slot-win-msg.visible {
  display: block;
  animation: fade-in-msg 0.35s ease;
}
@keyframes fade-in-msg {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.slot-win-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--c-accent);
  margin-bottom: 4px;
}
.slot-win-text {
  font-size: 14px;
  color: var(--c-text-muted);
}
.slot-lose-msg {
  display: none;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--c-text-muted);
}
.slot-lose-msg.visible {
  display: block;
}
.slot-bet-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.slot-bet-label {
  font-size: 13px;
  color: var(--c-text-muted);
}
.slot-bet-btns {
  display: flex;
  gap: 6px;
}
.slot-bet-btn {
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.slot-bet-btn.active,
.slot-bet-btn:hover {
  background: var(--c-accent);
  color: #000;
  border-color: var(--c-accent);
}

#r6x2s {
  background: var(--c-bg2);
}
.review-content {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.review-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-surface2);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
}
.review-author-info {
  display: flex;
  flex-direction: column;
}
.review-author-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--c-white);
  margin-bottom: 4px;
}
.review-author-bio {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.review-author-link {
  font-size: 13px;
  color: var(--c-accent);
  margin-top: 4px;
}
.review-body {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.75;
}
.review-body h2,
.review-body h3 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--c-white);
  margin: 28px 0 14px;
  line-height: 1.25;
}
.review-body h2 {
  font-size: clamp(20px, 3vw, 28px);
}
.review-body h3 {
  font-size: clamp(17px, 2.5vw, 22px);
}
.review-body p {
  margin-bottom: 16px;
}
.review-body ul,
.review-body ol {
  margin: 16px 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: disc;
}
.review-body ol {
  list-style: decimal;
}
.review-body li {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.6;
  padding-left: 4px;
}
.review-body a {
  color: var(--c-accent);
}
.review-body a:hover {
  color: var(--c-accent-hover);
  text-decoration: underline;
}
.review-body strong {
  color: var(--c-white);
  font-weight: 700;
}
.review-body em {
  color: var(--c-text-muted);
}
.review-body blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 12px 20px;
  background: rgba(187, 235, 0, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  color: var(--c-text-muted);
  font-style: italic;
}
.review-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.review-body th {
  background: var(--c-surface2);
  padding: 11px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--c-text);
  border: 1px solid var(--c-border);
  white-space: nowrap;
}
.review-body td {
  padding: 11px 16px;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}
.review-body tr:nth-child(even) td {
  background: rgba(26, 28, 32, 0.5);
}
.review-body code {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 13px;
  color: var(--c-accent);
  font-family: "Courier New", monospace;
}
.review-body pre {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  overflow-x: auto;
  margin: 20px 0;
}
.review-body pre code {
  background: none;
  border: none;
  padding: 0;
}
.review-body img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: 20px 0;
}
.review-body hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 28px 0;
}

#o4b7r {
  background: var(--c-bg);
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}
.testimonial-card {
  flex: 1 1 280px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-surface2);
  border: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
}
.testimonial-info {
  display: flex;
  flex-direction: column;
}
.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--c-white);
}
.testimonial-date {
  font-size: 12px;
  color: var(--c-text-dim);
  margin-top: 2px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.review-form-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 600px;
  margin: 0 auto;
}
.review-form-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-white);
  margin-bottom: 6px;
}
.review-form-sub {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
}
.jt-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.jt-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jt-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.3px;
}
.jt-form input,
.jt-form textarea {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--c-text);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  width: 100%;
}
.jt-form input::placeholder,
.jt-form textarea::placeholder {
  color: var(--c-text-dim);
}
.jt-form input:focus,
.jt-form textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(187, 235, 0, 0.12);
}
.jt-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}
.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  animation: fade-in-msg 0.35s ease;
}
.form-success.visible {
  display: block;
}
.form-success-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.form-success-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-green);
  margin-bottom: 4px;
}
.form-success-text {
  font-size: 14px;
  color: var(--c-text-muted);
}

#n5d3w {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding: 60px 0 36px;
}
.footer-top {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 36px;
}
.footer-brand {
  flex: 2 1 280px;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 12px;
  color: var(--c-text-muted);
}
.footer-nav-col {
  flex: 1 1 140px;
}
.footer-nav-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-dim);
  margin-bottom: 16px;
}
.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-col a {
  font-size: 13px;
  color: var(--c-text-muted);
}
.footer-nav-col a:hover {
  color: var(--c-accent);
}

.footer-payments-row,
.footer-providers-row {
  margin-bottom: 28px;
}
.footer-row-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer-logo-pill {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  white-space: nowrap;
  transition:
    border-color var(--transition),
    color var(--transition);
}
.footer-logo-pill:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copyright {
  font-size: 12px;
  color: var(--c-text-dim);
  line-height: 1.7;
  max-width: 600px;
}
.footer-copyright a {
  color: var(--c-text-dim);
}
.footer-copyright a:hover {
  color: var(--c-accent);
}
.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  font-size: 11px;
  font-weight: 900;
  color: var(--c-text-dim);
  flex-shrink: 0;
}

#v3k7x {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #0e1002 0%, #141800 50%, #0e1002 100%);
  border-top: 1px solid rgba(187, 235, 0, 0.35);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 30px rgba(187, 235, 0, 0.08);
}
.widget-text {
  font-size: 14px;
  color: var(--c-text-muted);
  font-weight: 500;
}
.widget-text strong {
  color: var(--c-white);
}
.widget-bonus-badge {
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.3);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-accent);
  white-space: nowrap;
}
.widget-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--c-text-dim);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition:
    color var(--transition),
    background var(--transition);
  font-size: 18px;
  line-height: 1;
}
.widget-close:hover {
  color: var(--c-text);
  background: var(--c-surface);
}

body.widget-open {
  padding-bottom: 62px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}
.faq-item {
  background: var(--c-surface);
  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.3);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  font-family: var(--font-body);
  transition: color var(--transition);
}
.faq-q:hover {
  color: var(--c-white);
}
.faq-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform var(--transition),
    background var(--transition);
}
.faq-arrow svg {
  width: 12px;
  height: 12px;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(187, 235, 0, 0.12);
  border-color: rgba(187, 235, 0, 0.3);
}
.faq-item.open .faq-arrow svg {
  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;
}

@media (max-width: 900px) {
  .hd-nav {
    display: none;
  }
  .hd-burger {
    display: flex;
  }
  .hd-online {
    display: none;
  }
  .bonus-grid {
    flex-direction: column;
  }
  .footer-top {
    gap: 32px;
  }
  .bonus-card {
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 56px 0;
  }
  .hero-title {
    letter-spacing: -1px;
  }
  .hero-stats {
    gap: 20px;
  }
  .jt-section {
    padding: 52px 0;
  }
  .adv-grid {
    gap: 14px;
  }
  .adv-item {
    flex: 1 1 160px;
    padding: 20px 16px;
  }
  .review-content {
    padding: 24px 20px;
  }
  .review-form-wrap {
    padding: 24px 20px;
  }
  .winners-table th,
  .winners-table td {
    padding: 10px 12px;
  }
  .slot-wrap {
    padding: 24px 20px;
  }
  .slot-reel {
    width: 72px;
    height: 72px;
    font-size: 34px;
  }
  #v3k7x {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 40px 10px 16px;
  }
  .widget-text {
    font-size: 13px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
}

.wp-block-group {
}
.wp-block-columns {
}
.entry-content {
}
.elementor-widget-container {
}
.wpcf7-form {
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.alignleft {
  float: left;
  margin-right: 20px;
}
.alignright {
  float: right;
  margin-left: 20px;
}
.aligncenter {
  margin: 0 auto;
  display: block;
}
.wp-caption {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 8px;
  border-radius: var(--radius-sm);
  max-width: 100%;
}
.wp-caption-text {
  font-size: 12px;
  color: var(--c-text-dim);
  text-align: center;
  margin-top: 6px;
}
.has-text-align-center {
  text-align: center;
}
.has-large-font-size {
  font-size: 24px;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--c-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--c-surface2);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--c-border);
}

::selection {
  background: rgba(187, 235, 0, 0.25);
  color: var(--c-white);
}
