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

:root {
  --clr-black: #000000;
  --clr-bg: #323234;
  --clr-teal: #00fbc8;
  --clr-red: #ff2e09;
  --clr-white: #ffffff;
  --clr-surface: #1e1e20;
  --clr-card: #28282a;
  --clr-border: #3e3e42;
  --clr-text: #e8e8ec;
  --clr-muted: #9898a0;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --transition: 0.26s ease;
}

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

body {
  font-family: 'PT Sans', sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.x7k2-wrap { width: 100%; max-width: 1260px; margin: 0 auto; padding: 0 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'PT Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.4); }
.btn:active { transform: translateY(0); }

.btn-teal { background: var(--clr-teal); color: var(--clr-black); border-color: var(--clr-teal); }
.btn-teal:hover { box-shadow: 0 6px 24px rgba(0,251,200,.35); }
.btn-red { background: var(--clr-red); color: var(--clr-white); border-color: var(--clr-red); }
.btn-red:hover { box-shadow: 0 6px 24px rgba(255,46,9,.35); }
.btn-outline { background: transparent; color: var(--clr-teal); border-color: var(--clr-teal); }
.btn-outline:hover { background: var(--clr-teal); color: var(--clr-black); }

.q9f1-hdr {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--clr-black);
  border-bottom: 1px solid #1a1a1a;
}
.q9f1-hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 68px;
}
.q9f1-logo { flex-shrink: 0; }
.q9f1-logo img { height: 44px; width: auto; }

.q9f1-nav { display: flex; align-items: center; gap: 4px; }
.q9f1-nav a {
  color: #c8c8d0;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.q9f1-nav a:hover { color: var(--clr-teal); background: rgba(0,251,200,.07); }

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

.q9f1-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-muted);
  white-space: nowrap;
}
.q9f1-online-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-teal);
  box-shadow: 0 0 6px var(--clr-teal);
  animation: pls-pulse 1.6s infinite;
}
@keyframes pls-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.q9f1-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.q9f1-burger span {
  display: block;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.q9f1-burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.q9f1-burger.is-open span:nth-child(2) { opacity: 0; }
.q9f1-burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.q9f1-mob-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--clr-black);
  padding: 12px 20px 16px;
  border-top: 1px solid #1a1a1a;
}
.q9f1-mob-nav a {
  color: #c8c8d0;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.q9f1-mob-nav a:hover { color: var(--clr-teal); background: rgba(0,251,200,.07); }
.q9f1-mob-nav.is-open { display: flex; }

.m8r3-hero {
  position: relative;
  overflow: hidden;
  height: 540px;
  background: var(--clr-surface);
}
.m8r3-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: center;
}
.m8r3-slide.is-active { opacity: 1; }
.m8r3-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.m8r3-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}
.m8r3-slide-badge {
  display: inline-block;
  background: var(--clr-red);
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.m8r3-slide h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.18;
  max-width: 600px;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.m8r3-slide p {
  font-size: 16px;
  color: #d4d4dc;
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.55;
}
.m8r3-slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.m8r3-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.m8r3-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.m8r3-dot.is-active { background: var(--clr-teal); transform: scale(1.3); }

.m8r3-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--clr-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.m8r3-arr:hover { background: rgba(0,251,200,.25); }
.m8r3-arr-prev { left: 16px; }
.m8r3-arr-next { right: 16px; }

.t4p2-section { padding: 60px 0 0; }
.t4p2-section + .t4p2-section { padding-top: 0; }

.x9b5-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.x9b5-subtitle {
  font-size: 15px;
  color: var(--clr-muted);
  margin-bottom: 28px;
}
.x9b5-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-teal), var(--clr-red));
  border-radius: 2px;
  margin-bottom: 28px;
}

.p6d1-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  background: var(--clr-card);
  margin: 0 2px;
}
.p6d1-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}
.p6d1-table tr { border-bottom: 1px solid var(--clr-border); }
.p6d1-table tr:last-child { border-bottom: none; }
.p6d1-table tr:hover td { background: rgba(0,251,200,.04); }
.p6d1-table td {
  padding: 13px 20px;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
  line-height: 1.5;
}
.p6d1-table td:first-child {
  font-weight: 700;
  color: var(--clr-teal);
  width: 38%;
  white-space: nowrap;
}
.p6d1-table td:last-child { color: var(--clr-text); }

.w5n8-top {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  overflow: hidden;
}
.w5n8-top-hd {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  gap: 12px;
}
.w5n8-top-hd-col { font-size: 12px; font-weight: 700; color: var(--clr-muted); text-transform: uppercase; letter-spacing: .8px; }
.w5n8-top-hd-col:nth-child(1) { width: 36px; flex-shrink: 0; }
.w5n8-top-hd-col:nth-child(2) { flex: 1; }
.w5n8-top-hd-col:nth-child(3) { width: 100px; text-align: right; }

.w5n8-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
  animation: fadeInRow 0.4s ease both;
}
.w5n8-row:last-child { border-bottom: none; }
.w5n8-row:hover { background: rgba(0,251,200,.05); }

@keyframes fadeInRow {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: none; }
}

.w5n8-rank {
  width: 36px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-muted);
}
.w5n8-rank.top1 { color: #ffd700; }
.w5n8-rank.top2 { color: #c0c0c0; }
.w5n8-rank.top3 { color: #cd7f32; }

.w5n8-nick { flex: 1; font-size: 14px; color: var(--clr-text); font-weight: 600; }
.w5n8-ava {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-black);
  flex-shrink: 0;
}
.w5n8-sum {
  width: 100px;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-teal);
}

.b3f7-bonuses { display: flex; gap: 16px; }
.b3f7-bonus-card {
  flex: 1;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.b3f7-bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-teal), var(--clr-red));
}
.b3f7-bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-teal);
  box-shadow: 0 12px 32px rgba(0,251,200,.12);
}
.b3f7-icon {
  font-size: 32px;
  line-height: 1;
}
.b3f7-bonus-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.2;
}
.b3f7-bonus-amount {
  font-size: 26px;
  font-weight: 700;
  color: var(--clr-teal);
  line-height: 1;
}
.b3f7-bonus-desc {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.5;
}
.b3f7-bonus-card .btn { margin-top: auto; }

.b3f7-slider-wrap { position: relative; overflow: hidden; }
.b3f7-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}
.b3f7-slider-track .b3f7-bonus-card {
  min-width: calc(100vw - 40px);
  flex-shrink: 0;
}
.b3f7-slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.b3f7-sdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: background var(--transition);
}
.b3f7-sdot.is-active { background: var(--clr-teal); }

.w6c1-wheel-section {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 40px 24px;
  text-align: center;
}
.w6c1-canvas-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 24px auto;
}
#w6c1-wheel { border-radius: 50%; box-shadow: 0 0 32px rgba(0,251,200,.2); }

.w6c1-spin-btn {
  margin: 0 auto 20px;
  display: flex;
}
.w6c1-result {
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.w6c1-result-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-teal);
  animation: fadeIn 0.5s ease;
}
.w6c1-result-sub {
  font-size: 14px;
  color: var(--clr-muted);
}
.w6c1-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 22px solid var(--clr-red);
  filter: drop-shadow(0 2px 4px rgba(255,46,9,.5));
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.c1v3-review {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 32px 36px;
}
.c1v3-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}
.c1v3-author-ava {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a3a, #0a2020);
  border: 2px solid var(--clr-teal);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-teal);
}
.c1v3-author-info { display: flex; flex-direction: column; gap: 2px; }
.c1v3-author-name { font-size: 16px; font-weight: 700; color: var(--clr-white); }
.c1v3-author-role { font-size: 13px; color: var(--clr-muted); }
.c1v3-author-link { font-size: 13px; color: var(--clr-teal); text-decoration: none; }
.c1v3-author-link:hover { text-decoration: underline; }

.c1v3-content h2 { font-size: 22px; font-weight: 700; color: var(--clr-white); margin: 24px 0 10px; }
.c1v3-content h3 { font-size: 18px; font-weight: 700; color: var(--clr-white); margin: 20px 0 8px; }
.c1v3-content h4 { font-size: 16px; font-weight: 700; color: var(--clr-teal); margin: 16px 0 6px; }
.c1v3-content p { font-size: 15px; color: var(--clr-text); margin-bottom: 14px; line-height: 1.65; }
.c1v3-content ul, .c1v3-content ol { padding-left: 22px; margin-bottom: 14px; }
.c1v3-content li { font-size: 15px; color: var(--clr-text); margin-bottom: 6px; line-height: 1.55; }
.c1v3-content a { color: var(--clr-teal); text-decoration: underline; }
.c1v3-content a:hover { opacity: 0.8; }
.c1v3-content strong { color: var(--clr-white); font-weight: 700; }
.c1v3-content em { color: var(--clr-muted); font-style: italic; }
.c1v3-content blockquote {
  border-left: 3px solid var(--clr-teal);
  padding: 12px 18px;
  background: var(--clr-surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 14px;
  color: #c0c0c8;
  font-style: italic;
}
.c1v3-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  text-align: left;
}
.c1v3-content table th, .c1v3-content table td {
  border: 1px solid var(--clr-border);
  padding: 10px 14px;
  font-size: 14px;
}
.c1v3-content table th { background: var(--clr-surface); color: var(--clr-teal); font-weight: 700; }
.c1v3-content hr { border: none; border-top: 1px solid var(--clr-border); margin: 20px 0; }

.f2q8-faq {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
}
.f2q8-item { border-bottom: 1px solid var(--clr-border); }
.f2q8-item:last-child { border-bottom: none; }
.f2q8-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-white);
  transition: color var(--transition);
  user-select: none;
}
.f2q8-q:hover { color: var(--clr-teal); }
.f2q8-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--clr-muted);
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}
.f2q8-item.is-open .f2q8-icon {
  transform: rotate(45deg);
  border-color: var(--clr-teal);
  color: var(--clr-teal);
}
.f2q8-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease, padding var(--transition);
  padding: 0 24px;
}
.f2q8-a-inner {
  padding-bottom: 18px;
  font-size: 15px;
  color: #b0b0ba;
  line-height: 1.65;
}

.v3x1-footer {
  background: var(--clr-black);
  padding: 48px 0 24px;
  margin-top: 70px;
  border-top: 1px solid #1a1a1a;
}
.v3x1-footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.v3x1-footer-logo img { height: 42px; width: auto; margin-bottom: 12px; }
.v3x1-footer-logo p { font-size: 13px; color: var(--clr-muted); line-height: 1.6; max-width: 190px; }

.v3x1-footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
}
.v3x1-footer-col a {
  display: block;
  font-size: 14px;
  color: #8888a0;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.v3x1-footer-col a:hover { color: var(--clr-teal); }

.v3x1-payments {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #1a1a1a;
}
.v3x1-payments h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
}
.v3x1-pay-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.v3x1-pay-badge {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text);
}

.v3x1-providers {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #1a1a1a;
}
.v3x1-providers h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
}
.v3x1-prov-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.v3x1-prov-badge {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.v3x1-legal {
  font-size: 12px;
  color: #5a5a68;
  line-height: 1.6;
  text-align: center;
  padding-top: 4px;
}
.v3x1-legal a { color: #6868a0; text-decoration: underline; }

.n4k0-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: #0a0a0a;
  border-top: 2px solid var(--clr-red);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
}
.n4k0-widget-text { font-size: 14px; color: var(--clr-white); font-weight: 600; }
.n4k0-widget-text span { color: var(--clr-teal); }

.r3p5-section {
  padding: 60px 0;
}

.js-lazy-hidden { display: none !important; }

.cid-fc7b82 { display: block; }
.ref-d9c3 { line-height: 0; position: absolute; z-index: -999; visibility: hidden; }
.wc-overlay { pointer-events: none; opacity: 0; }
.wp-img-meta { display: none !important; }

@media (max-width: 1024px) {
  .v3x1-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .q9f1-nav { display: none; }
  .q9f1-burger { display: flex; }
  .m8r3-hero { height: 460px; }
  .b3f7-bonuses { display: none; }
  .b3f7-slider-wrap { display: block !important; }
  .b3f7-slider-dots { display: flex; }
  .v3x1-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .c1v3-review { padding: 22px 18px; }
}

@media (max-width: 480px) {
  .m8r3-hero { height: auto; min-height: 380px; padding: 60px 0; }
  .w6c1-wheel-section { padding: 28px 14px; }
  .n4k0-widget { flex-direction: column; gap: 8px; text-align: center; }
}
