*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #0b0c15;
  --c-surface: #0d101c;
  --c-surface2: #141726;
  --c-border: #1e2235;
  --c-blue: #0d5492;
  --c-blue-h: #0e6ab8;
  --c-green: #0d7646;
  --c-green-h: #0fa859;
  --c-text: #e8eaf0;
  --c-text-muted: #8a90a8;
  --c-gold: #f0c040;
  --c-red: #c0392b;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Inter", sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 15px;
  min-width: 320px;
}
a {
  color: var(--c-blue);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--c-blue-h);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

.xw3r9 {
  display: none;
}
.pq7z2 {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.kn4f8 {
  opacity: 0;
  pointer-events: none;
}

.site-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.section-gap {
  padding: 60px 0;
}
.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: -0.02em;
}
.section-title span {
  color: var(--c-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.btn:active {
  transform: translateY(0);
}
.btn-login {
  background: var(--c-blue);
  color: #fff;
}
.btn-login:hover {
  background: var(--c-blue-h);
  color: #fff;
}
.btn-signup {
  background: var(--c-green);
  color: #fff;
}
.btn-signup:hover {
  background: var(--c-green-h);
  color: #fff;
}
.btn-gold {
  background: linear-gradient(135deg, #f0c040, #e0a020);
  color: #0b0c15;
  font-weight: 700;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #f5cc50, #e8ab30);
  color: #0b0c15;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius);
}

.site-header {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 64px;
}
.header-logo img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  color: var(--c-text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    color 0.2s,
    background 0.2s;
}
.header-nav a:hover {
  color: var(--c-text);
  background: var(--c-border);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background 0.2s;
}
.burger:hover {
  background: var(--c-border);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b0c15 0%, #0d1a2e 50%, #0b0c15 100%);
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 12, 21, 0.2) 0%,
    rgba(11, 12, 21, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 84, 146, 0.25);
  border: 1px solid rgba(13, 84, 146, 0.5);
  color: #7eb8f0;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}
.hero-title span {
  color: var(--c-gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: #b0b8d0;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-bonus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 118, 70, 0.15);
  border: 1px solid rgba(13, 118, 70, 0.4);
  color: #6ee8a0;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 20px;
}

.pros-cons-section {
  background: var(--c-surface);
}
.pros-cons-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.pros-col,
.cons-col {
  flex: 1;
  min-width: 280px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.3s;
}
.pros-col:hover,
.cons-col:hover {
  box-shadow: var(--shadow);
}
.pros-col {
  border-top: 3px solid var(--c-green);
}
.cons-col {
  border-top: 3px solid var(--c-red);
}
.col-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.col-title-pros {
  color: var(--c-green);
}
.col-title-cons {
  color: var(--c-red);
}
.pros-cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--c-text);
}
.pros-cons-list li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.pros-cons-list.pros li::before {
  background: var(--c-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M6.5 11.5L3 8l1-1 2.5 2.5 5-5 1 1z'/%3E%3C/svg%3E");
}
.pros-cons-list.cons li::before {
  background: var(--c-red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M11 5l-6 6M5 5l6 6' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.mirrors-section {
}
.mirrors-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.mirrors-datetime {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 118, 70, 0.12);
  border: 1px solid rgba(13, 118, 70, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #6ee8a0;
}
.mirrors-datetime svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-surface);
  min-width: 520px;
}
thead th {
  background: var(--c-surface2);
  color: var(--c-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
tbody td {
  padding: 12px 16px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  text-align: left;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-ok {
  background: rgba(13, 118, 70, 0.2);
  color: #6ee8a0;
}
.status-slow {
  background: rgba(240, 192, 64, 0.2);
  color: #f0c040;
}
.mirror-link {
  color: var(--c-blue);
  font-weight: 500;
  transition: color 0.2s;
}
.mirror-link:hover {
  color: var(--c-blue-h);
}

.winners-section {
  background: var(--c-surface);
}
.winners-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.winner-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.winner-item:hover {
  transform: translateX(4px);
  box-shadow: 4px 0 16px rgba(0, 0, 0, 0.3);
}
.winner-rank {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-text-muted);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.winner-rank.r1 {
  color: var(--c-gold);
}
.winner-rank.r2 {
  color: #c0c0c0;
}
.winner-rank.r3 {
  color: #cd7f32;
}
.winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.winner-name {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
}
.winner-game {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}
.winner-amount {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-gold);
  white-space: nowrap;
}

.wheel-section {
}
.wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.wheel-desc {
  text-align: center;
  color: var(--c-text-muted);
  max-width: 500px;
  font-size: 0.9rem;
}
.wheel-container {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}
.wheel-canvas {
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(13, 84, 146, 0.4),
    0 0 80px rgba(13, 118, 70, 0.15);
}
.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid var(--c-gold);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
.wheel-btn {
  margin-top: 8px;
}
.wheel-result {
  text-align: center;
  padding: 20px 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  max-width: 360px;
  width: 100%;
}
.wheel-result.win {
  border-color: var(--c-green);
  background: rgba(13, 118, 70, 0.1);
}
.wheel-result.lose {
  border-color: var(--c-red);
  background: rgba(192, 57, 43, 0.08);
}
.wheel-result-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.wheel-result.win .wheel-result-title {
  color: var(--c-green);
}
.wheel-result.lose .wheel-result-title {
  color: var(--c-red);
}
.wheel-result p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.wheel-result .btn {
  margin: 0 auto;
}
.wheel-result-hidden {
  display: none;
}

.review-section {
}
.review-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
  line-height: 1.8;
}
.review-block h2 {
  color: var(--c-text);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 16px;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 12px;
}
.review-block h3 {
  color: var(--c-text);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 24px 0 10px;
}
.review-block h4 {
  color: var(--c-text);
  font-size: 1rem;
  font-weight: 600;
  margin: 18px 0 8px;
}
.review-block p {
  color: var(--c-text);
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.review-block ul,
.review-block ol {
  padding-left: 20px;
  margin-bottom: 14px;
  color: var(--c-text);
}
.review-block li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.review-block a {
  color: var(--c-blue);
}
.review-block table {
  min-width: 0;
  width: 100%;
}
.review-block table th,
.review-block table td {
  padding: 10px 14px;
}
.review-block strong {
  color: var(--c-gold);
}
.review-block blockquote {
  border-left: 3px solid var(--c-blue);
  padding-left: 16px;
  color: var(--c-text-muted);
  font-style: italic;
  margin: 16px 0;
}

.author-section {
  background: var(--c-surface);
}
.author-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  flex-wrap: wrap;
}
.author-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-blue);
  flex-shrink: 0;
}
.author-info {
  flex: 1;
  min-width: 200px;
}
.author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}
.author-role {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.author-bio {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.author-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 500;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.author-social-link:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
}

.site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 0;
}
.footer-main {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-logo-col {
  min-width: 180px;
}
.footer-logo img {
  height: 40px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.footer-links-col {
  min-width: 140px;
}
.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}
.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-link-list a {
  color: var(--c-text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-link-list a:hover {
  color: var(--c-text);
}
.footer-payments {
  margin-bottom: 24px;
}
.footer-payments-title,
.footer-providers-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer-badge {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  font-weight: 600;
  transition: border-color 0.2s;
}
.footer-badge:hover {
  border-color: var(--c-blue);
}
.footer-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 0;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.footer-legal {
  font-size: 0.72rem;
  color: #5a6070;
  line-height: 1.5;
  max-width: 600px;
}

.sticky-widget {
  position: fixed;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 12px;
}
.widget-inner {
  pointer-events: all;
  background: linear-gradient(135deg, #0d1829, #0d2010);
  border: 1px solid rgba(13, 118, 70, 0.5);
  border-radius: 14px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(13, 118, 70, 0.15);
  flex-wrap: wrap;
  max-width: 680px;
  width: 100%;
  animation: slideUp 0.5s ease forwards;
}
@keyframes slideUp {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.widget-text {
  flex: 1;
  min-width: 180px;
}
.widget-bonus {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.widget-bonus strong {
  color: var(--c-gold);
}
.widget-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.widget-close {
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.widget-close:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 4px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    width: 100%;
    padding: 10px 14px;
  }
  .burger {
    display: flex;
  }
  .online-count {
    display: none;
  }
}
@media (max-width: 640px) {
  .section-gap {
    padding: 40px 0;
  }
  .hero-content {
    padding: 60px 0 40px;
  }
  .pros-cons-grid {
    flex-direction: column;
  }
  .footer-main {
    flex-direction: column;
    gap: 24px;
  }
  .widget-inner {
    padding: 10px 14px;
    gap: 10px;
  }
  .header-right {
    gap: 6px;
  }
  .btn {
    padding: 7px 14px;
    font-size: 0.8rem;
  }
}

.wp-content-dummy {
  display: none;
}
.elementor-widget-wrap {
  display: none;
}
.wp-block-group {
  display: none;
}

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

main#main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.hero-section {
  min-height: auto !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.hero-bg {
  min-height: 400px !important;
}

.hero-content {
  padding: 50px 0 !important;
  margin-top: 0 !important;
}

@media (max-width: 640px) {
  .hero-bg {
    min-height: 300px !important;
  }

  .hero-content {
    padding: 30px 0 !important;
  }
}
