:root {
  --c-bg: #0b0c0d;
  --c-bg2: #111214;
  --c-bg3: #16181a;
  --c-bg4: #1c1e21;
  --c-accent: #bbeb00;
  --c-accent-dark: #9dc800;
  --c-btn-dark: #1f2021;
  --c-btn-dark-hover: #2a2c2e;
  --c-text: #e8e9ea;
  --c-text-muted: #8c9099;
  --c-text-sub: #6b7280;
  --c-border: #222426;
  --c-border2: #2d3035;
  --c-plus: #22c55e;
  --c-minus: #ef4444;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-accent: 0 0 32px rgba(187, 235, 0, 0.18);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: "Inter", "Roboto", Arial, sans-serif;
  --font-head: "Montserrat", "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
}
body {
  background: var(--c-bg);
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-accent-dark);
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.x7k2m {
  display: none;
}
.p9q1r {
  visibility: hidden;
  position: absolute;
}
.bz4w8 {
  width: 0;
  height: 0;
  overflow: hidden;
}

.g-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.g-section {
  padding: 72px 0;
}
.g-section--sm {
  padding: 48px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn--dark {
  background: var(--c-btn-dark);
  color: var(--c-text);
  padding: 10px 22px;
}
.btn--dark:hover {
  background: var(--c-btn-dark-hover);
  color: var(--c-text);
  transform: translateY(-1px);
}
.btn--accent {
  background: var(--c-accent);
  color: #0b0c0d;
  padding: 10px 22px;
}
.btn--accent:hover {
  background: var(--c-accent-dark);
  color: #0b0c0d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}
.btn--accent-lg {
  background: var(--c-accent);
  color: #0b0c0d;
  padding: 14px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
}
.btn--accent-lg:hover {
  background: var(--c-accent-dark);
  color: #0b0c0d;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.btn--outline {
  background: transparent;
  color: var(--c-accent);
  border: 1.5px solid var(--c-accent);
  padding: 10px 22px;
}
.btn--outline:hover {
  background: var(--c-accent);
  color: #0b0c0d;
}
.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

.tag {
  display: inline-block;
  background: var(--c-bg4);
  color: var(--c-text-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}
.tag--accent {
  background: rgba(187, 235, 0, 0.12);
  color: var(--c-accent);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.25;
  margin-bottom: 10px;
}
.section-sub {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}
.section-header {
  margin-bottom: 44px;
}
.section-header .tag {
  margin-bottom: 12px;
}

#hdr {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hdr-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  height: 68px;
}
.hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.hdr-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.hdr-logo-txt {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--c-accent);
  letter-spacing: 0.5px;
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.hdr-nav a {
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.hdr-nav a:hover {
  color: var(--c-text);
  background: var(--c-bg4);
}
.hdr-online {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--c-text-muted);
  flex-shrink: 0;
}
.hdr-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08);
  }
}
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hdr-burger:hover {
  background: var(--c-bg4);
}
.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hdr-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hdr-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.hdr-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--c-bg);
  z-index: 9999;
  overflow-y: auto;
  padding: 80px 20px 24px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--c-border);
}
.mob-nav.is-open {
  display: flex;
}
.mob-nav a {
  color: var(--c-text-muted);
  font-size: 16px;
  font-weight: 500;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: block;
}
.mob-nav a:hover {
  color: var(--c-text);
  background: var(--c-bg4);
}
.mob-nav-sep {
  height: 1px;
  background: var(--c-border);
  margin: 12px 0;
}
.mob-nav-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 13, 0.97) 0%,
    rgba(11, 12, 13, 0.7) 55%,
    rgba(11, 12, 13, 0.2) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.25);
  color: var(--c-accent);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-accent);
  display: block;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.13;
  color: var(--c-text);
  margin-bottom: 16px;
}
.hero-title span {
  color: var(--c-accent);
}
.hero-desc {
  font-size: 16px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-promo-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  background: rgba(187, 235, 0, 0.07);
  border: 1px solid rgba(187, 235, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  max-width: 420px;
}
.hero-promo-badge-code {
  font-family: "Courier New", monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 2px;
  border-right: 1px solid rgba(187, 235, 0, 0.25);
  padding-right: 12px;
  margin-right: 4px;
}
.hero-promo-badge-txt {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.45;
}
.hero-promo-badge-txt strong {
  color: var(--c-text);
  display: block;
}

#advantages {
  background: var(--c-bg2);
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.adv-card {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-accent);
  opacity: 0;
  transition: opacity var(--transition);
}
.adv-card:hover {
  border-color: var(--c-border2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.adv-card:hover::before {
  opacity: 1;
}
.adv-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(187, 235, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.adv-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}
.adv-desc {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
}

#pros-cons {
  background: var(--c-bg);
}
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.proscons-card {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.proscons-card--plus {
  border-top: 3px solid var(--c-plus);
}
.proscons-card--minus {
  border-top: 3px solid var(--c-minus);
}
.proscons-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.proscons-card--plus .proscons-card-title {
  color: var(--c-plus);
}
.proscons-card--minus .proscons-card-title {
  color: var(--c-minus);
}
.proscons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.proscons-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.proscons-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 2px;
}
.proscons-card--plus .proscons-list li::before {
  background: rgba(34, 197, 94, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='%2322c55e' d='M7.5 12.3L4.2 9l-1 1 4.3 4.3 9-9-1-1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.proscons-card--minus .proscons-list li::before {
  background: rgba(239, 68, 68, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cline x1='4' y1='4' x2='14' y2='14' stroke='%23ef4444' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='14' y1='4' x2='4' y2='14' stroke='%23ef4444' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

#app-info {
  background: var(--c-bg2);
}
.appinfo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.appinfo-table-wrap {
  overflow-x: auto;
}
.appinfo-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
}
.appinfo-table th,
.appinfo-table td {
  text-align: left;
  padding: 13px 18px;
  border: 1px solid var(--c-border);
  font-size: 14px;
}
.appinfo-table th {
  background: var(--c-bg4);
  color: var(--c-text-muted);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.appinfo-table td {
  background: var(--c-bg3);
  color: var(--c-text);
}
.appinfo-table tr:hover td {
  background: var(--c-bg4);
}
.appinfo-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
  width: 45%;
}
.appinfo-dl {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.appinfo-dl-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}
.appinfo-dl-sub {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.dl-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-bg4);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 13px 18px;
  color: var(--c-text);
  text-decoration: none;
  transition: all var(--transition);
}
.dl-btn:hover {
  border-color: var(--c-accent);
  background: rgba(187, 235, 0, 0.05);
  color: var(--c-text);
  transform: translateX(3px);
}
.dl-btn-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.dl-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dl-btn-text span:first-child {
  font-size: 11px;
  color: var(--c-text-muted);
  font-weight: 500;
}
.dl-btn-text span:last-child {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
}

#live-games {
  background: var(--c-bg);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.game-card:hover {
  border-color: rgba(187, 235, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.game-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.35s;
}
.game-card:hover .game-card-img {
  transform: scale(1.04);
}
.game-card-body {
  padding: 16px;
}
.game-card-provider {
  font-size: 11px;
  color: var(--c-text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.game-card-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 12px;
}
.games-slider-wrap {
  position: relative;
}
.games-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#wheel-section {
  background: var(--c-bg2);
}
.wheel-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.wheel-canvas-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 48px rgba(187, 235, 0, 0.15);
  display: block;
}
.wheel-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--c-accent);
  filter: drop-shadow(0 2px 6px rgba(187, 235, 0, 0.5));
  z-index: 2;
}
.wheel-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wheel-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.2;
}
.wheel-title span {
  color: var(--c-accent);
}
.wheel-desc {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.wheel-result {
  background: rgba(187, 235, 0, 0.07);
  border: 1px solid rgba(187, 235, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: none;
}
.wheel-result.is-show {
  display: block;
  animation: fadeInUp 0.4s ease;
}
.wheel-result-title {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}
.wheel-result-bonus {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-accent);
  margin-bottom: 14px;
}
.wheel-result-lose {
  display: none;
}
.wheel-result-lose.is-show {
  display: block;
  animation: fadeInUp 0.4s ease;
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.wheel-result-lose-txt {
  font-size: 15px;
  color: #ef4444;
  font-weight: 600;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#promo {
  background: var(--c-bg);
}
.promo-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.promo-card {
  background: var(--c-bg3);
  border: 2px solid rgba(187, 235, 0, 0.3);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(187, 235, 0, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.promo-label {
  font-size: 13px;
  color: var(--c-text-muted);
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.promo-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: var(--c-plus);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.promo-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-plus);
}
.promo-code-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 20px;
  background: var(--c-bg4);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.promo-code {
  font-family: "Courier New", monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 4px;
  padding: 16px 24px;
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--c-border);
}
.promo-copy-btn {
  background: var(--c-btn-dark);
  border: none;
  color: var(--c-text);
  padding: 0 20px;
  height: 66px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  transition: all var(--transition);
  flex-shrink: 0;
}
.promo-copy-btn svg {
  width: 20px;
  height: 20px;
}
.promo-copy-btn:hover {
  background: var(--c-bg4);
  color: var(--c-accent);
}
.promo-copy-btn.is-copied {
  background: rgba(34, 197, 94, 0.15);
  color: var(--c-plus);
}
.promo-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.promo-timer {
  font-size: 13px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.promo-timer strong {
  color: var(--c-text);
}
.promo-bonus-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

#review {
  background: var(--c-bg2);
}
.review-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.review-content {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}
.review-content h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
  margin: 28px 0 12px;
}
.review-content h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin: 22px 0 10px;
}
.review-content h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  margin: 18px 0 8px;
}
.review-content p {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.review-content strong {
  color: var(--c-text);
  font-weight: 600;
}
.review-content em {
  color: var(--c-accent-dark);
  font-style: italic;
}
.review-content ul,
.review-content ol {
  margin: 12px 0 16px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.review-content ul li {
  list-style: disc;
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.65;
  padding-left: 4px;
}
.review-content ol li {
  list-style: decimal;
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.65;
  padding-left: 4px;
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow-x: auto;
  display: block;
}
.review-content table th,
.review-content table td {
  text-align: left;
  padding: 11px 16px;
  border: 1px solid var(--c-border);
  font-size: 14px;
}
.review-content table th {
  background: var(--c-bg4);
  color: var(--c-text-muted);
  font-weight: 600;
}
.review-content table td {
  background: var(--c-bg3);
  color: var(--c-text-muted);
}
.review-content a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.review-content blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 12px 20px;
  background: rgba(187, 235, 0, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
}
.review-content blockquote p {
  margin-bottom: 0;
  color: var(--c-text-muted);
  font-style: italic;
}
.review-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}

#author {
  background: var(--c-bg);
}
.author-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  max-width: 700px;
  margin: 0 auto;
}
.author-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(187, 235, 0, 0.3);
  flex-shrink: 0;
}
.author-info {
  flex: 1;
}
.author-role {
  font-size: 12px;
  color: var(--c-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.author-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 10px;
}
.author-bio {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.author-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-bg4);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  color: var(--c-text-muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}
.author-social:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.author-social svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

#ftr {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding-top: 52px;
  padding-bottom: 32px;
}
.ftr-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--c-border);
}
.ftr-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ftr-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ftr-brand-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
}
.ftr-brand-logo-txt {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--c-accent);
}
.ftr-brand-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.ftr-nav-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.ftr-nav-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ftr-nav-links a {
  font-size: 14px;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.ftr-nav-links a:hover {
  color: var(--c-text);
}
.ftr-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.ftr-payments {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ftr-payments-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.ftr-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ftr-badge {
  background: var(--c-bg4);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-muted);
}
.ftr-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ftr-legal {
  font-size: 12px;
  color: var(--c-text-sub);
  line-height: 1.65;
  max-width: 860px;
}
.ftr-copy {
  font-size: 13px;
  color: var(--c-text-sub);
}
.ftr-lic {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-bg4);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 12px;
  color: var(--c-text-muted);
}

#widget-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: linear-gradient(90deg, #0d1100 0%, #0b0c0d 100%);
  border-top: 2px solid var(--c-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.widget-txt {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.widget-txt-main {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
}
.widget-txt-main span {
  color: var(--c-accent);
}
.widget-txt-sub {
  font-size: 12px;
  color: var(--c-text-muted);
}
.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  padding: 4px;
  font-size: 20px;
  line-height: 1;
  transition: color var(--transition);
  flex-shrink: 0;
}
.widget-close:hover {
  color: var(--c-text);
}
.widget-btn {
  background: var(--c-accent);
  color: #0b0c0d;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.widget-btn:hover {
  background: var(--c-accent-dark);
  color: #0b0c0d;
  transform: translateY(-1px);
}

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

.wp-content {
  display: none;
}
.elementor-section {
  display: none;
}
.wp-block-columns {
  display: none;
}
.entry-content {
  display: none;
}
.wp-post-image {
  display: none;
}
.vc_row {
  display: none;
}
.site-header {
  display: none;
}
.custom-logo-link {
  display: none;
}
.wp-block-group {
  display: none;
}
.page-template {
  display: none;
}
.jetpack-sharing-widget {
  display: none;
}
.comments-area {
  display: none;
}
.widget-area {
  display: none;
}
.post-thumbnail {
  display: none;
}
.breadcrumb {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.breadcrumb span {
  color: var(--c-text-sub);
}
.breadcrumb a {
  color: var(--c-text-muted);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto;
  }
  .hdr-nav {
    display: none;
  }
  .hdr-burger {
    display: flex;
  }
  .adv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ftr-top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .ftr-payments {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .g-section {
    padding: 52px 0;
  }
  .adv-grid {
    grid-template-columns: 1fr;
  }
  .proscons-grid {
    grid-template-columns: 1fr;
  }
  .appinfo-grid {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: 1fr;
    display: none;
  }
  .games-slider-mob {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .games-slider-mob .game-card {
    min-width: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .wheel-wrap {
    grid-template-columns: 1fr;
  }
  .wheel-canvas {
    width: 280px !important;
    height: 280px !important;
  }
  .review-content {
    padding: 24px 20px;
  }
  .author-card {
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px;
  }
  .author-photo {
    width: 72px;
    height: 72px;
  }
  .ftr-top {
    grid-template-columns: 1fr;
  }
  .ftr-nav-grid {
    grid-template-columns: 1fr 1fr;
  }
  .widget-sticky {
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 10px;
  }
  .widget-txt-main {
    font-size: 13px;
  }
  .promo-card {
    padding: 24px 18px;
  }
  .promo-code {
    font-size: 20px;
    letter-spacing: 2px;
    padding: 14px 16px;
  }
}
@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .promo-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .promo-actions .btn {
    text-align: center;
    justify-content: center;
  }
  .author-socials {
    flex-direction: column;
  }
  .hdr-inner {
    gap: 10px;
  }
  .hdr-actions {
    gap: 6px;
  }
  .btn--dark,
  .btn--accent {
    padding: 9px 14px;
    font-size: 13px;
  }
  .ftr-nav-grid {
    grid-template-columns: 1fr;
  }
}

.games-slider-mob {
  display: none;
}
