@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,300;0,400;0,600;0,700;0,900;1,400&display=swap");

:root {
  --bg: #0e1117;
  --header-bg: #161b25;
  --card-bg: #161b25;
  --card-hover: #1a2030;
  --primary: #42506c;
  --primary-hover: #4f5f80;
  --secondary: #ec0433;
  --secondary-hover: #c90329;
  --gold: #d4a843;
  --gold-light: #e8c060;
  --text: #e8e8ec;
  --text-muted: #8892a4;
  --border: #252d3d;
  --border-light: #303c52;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.35);
  --transition: 0.28s ease;
  --font: "Sofia Sans", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--gold);
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}

.wp-site-blocks,
.wp-block-template-part {
  display: contents;
}
.elementor-hidden,
.elementor-invisible {
  display: none !important;
}
#wpadminbar {
  display: none;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--wide {
  max-width: 1440px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none !important;
  letter-spacing: 0.4px;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(66, 80, 108, 0.4);
}
.btn--secondary {
  background: var(--secondary);
  color: #fff;
}
.btn--secondary:hover {
  background: var(--secondary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(236, 4, 51, 0.4);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #161b25;
  font-weight: 900;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 168, 67, 0.45);
  color: #161b25;
}
.btn--outline {
  border: 2px solid var(--border-light);
  color: var(--text);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: var(--radius);
}
.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.header-logo a {
  display: block;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin: 0 16px;
}
.header-nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.header-nav svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.75;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid var(--border);
}
.online-count .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 6px rgba(46, 204, 113, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.25);
  }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.burger:hover {
  background: rgba(255, 255, 255, 0.08);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, #0a0e16 0%, #161b25 60%, #1a2035 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/ab.avif");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 17, 23, 0.95) 0%,
    rgba(14, 17, 23, 0.6) 60%,
    rgba(14, 17, 23, 0.2) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.hero-text {
  flex: 1;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.hero h1 span {
  color: var(--secondary);
}
.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-bonus {
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(22, 27, 37, 0.95),
    rgba(26, 32, 48, 0.95)
  );
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  min-width: 280px;
  text-align: center;
  box-shadow:
    0 0 40px rgba(212, 168, 67, 0.12),
    var(--shadow);
}
.hero-bonus .bonus-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.hero-bonus .bonus-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-bonus .bonus-extra {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.hero-bonus .bonus-tag {
  display: inline-block;
  background: rgba(236, 4, 51, 0.15);
  border: 1px solid rgba(236, 4, 51, 0.3);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}

.section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.section-sub {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 15px;
}
.section-title span {
  color: var(--secondary);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(212, 168, 67, 0.3);
}

.block {
  margin: 0 0 48px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.block--dark {
  background: #111620;
}
.block--highlight {
  border-color: rgba(212, 168, 67, 0.25);
  box-shadow:
    0 0 30px rgba(212, 168, 67, 0.06),
    var(--shadow-card);
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.toc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
}
.toc-item:hover {
  background: rgba(236, 4, 51, 0.08);
  border-color: rgba(236, 4, 51, 0.3);
  color: var(--secondary);
  transform: translateX(3px);
}
.toc-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--secondary);
}
.toc-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2px 7px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.adv-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-align: center;
}
.adv-card:hover {
  background: var(--card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(236, 4, 51, 0.15),
    rgba(236, 4, 51, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(236, 4, 51, 0.2);
}
.adv-icon svg {
  width: 28px;
  height: 28px;
  color: var(--secondary);
}
.adv-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.adv-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.jackpot-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 28px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1a2035, #1f2840);
  border: 1px solid rgba(212, 168, 67, 0.2);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.jackpot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(212, 168, 67, 0.15);
}
.jackpot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.05), transparent);
  pointer-events: none;
}
.jackpot-tier {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}
.jackpot-tier--mega {
  background: rgba(212, 168, 67, 0.2);
  color: var(--gold);
}
.jackpot-tier--major {
  background: rgba(236, 4, 51, 0.2);
  color: var(--secondary);
}
.jackpot-tier--minor {
  background: rgba(66, 80, 108, 0.3);
  color: #8899bb;
}
.jackpot-tier--mini {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}
.jackpot-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin: 12px 0 6px;
  text-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
}
.jackpot-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.jackpot-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.3);
  padding: 7px 16px;
  border-radius: 20px;
  text-decoration: none !important;
  transition: all var(--transition);
}
.jackpot-btn:hover {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
  border-color: var(--gold);
}

.winners-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 24px;
}
.winners-table {
  width: 100%;
  min-width: 500px;
}
.winners-table th {
  background: #111620;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.winners-table td {
  padding: 13px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  text-align: left;
}
.winners-table tr:last-child td {
  border-bottom: none;
}
.winners-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.winners-table .rank {
  font-weight: 900;
  font-size: 15px;
  color: var(--text-muted);
  width: 50px;
}
.winners-table .rank--1 {
  color: var(--gold);
}
.winners-table .rank--2 {
  color: #b0bec5;
}
.winners-table .rank--3 {
  color: #cd7f32;
}
.winners-table .winner-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.winners-table .winner-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.winners-table .win-amount {
  font-weight: 700;
  color: #2ecc71;
  font-size: 15px;
}
.winners-table .win-game {
  font-size: 12px;
  color: var(--text-muted);
}

.video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
  background: #000;
  border: 1px solid var(--border);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.wheel-section {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.wheel-canvas-wrap {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.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: 24px solid var(--secondary);
  filter: drop-shadow(0 2px 6px rgba(236, 4, 51, 0.5));
  z-index: 10;
}
canvas#wheelCanvas {
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(212, 168, 67, 0.15),
    0 0 80px rgba(0, 0, 0, 0.5);
  display: block;
}
.wheel-info {
  flex: 1;
  min-width: 260px;
}
.wheel-info h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.wheel-info p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.wheel-result {
  display: none;
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 20px;
  animation: fadeInUp 0.4s ease;
}
.wheel-result--win {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.35);
}
.wheel-result--lose {
  background: rgba(236, 4, 51, 0.08);
  border: 1px solid rgba(236, 4, 51, 0.25);
}
.wheel-result h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}
.wheel-result--win h4 {
  color: #2ecc71;
}
.wheel-result--lose h4 {
  color: var(--secondary);
}
.wheel-result p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
#spinBtn {
  min-width: 200px;
}
#spinBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.review-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 28px 0 14px;
  border-left: 3px solid var(--secondary);
  padding-left: 14px;
}
.review-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 10px;
}
.review-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 16px 0 8px;
}
.review-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.review-text ul,
.review-text ol {
  margin: 14px 0 18px 20px;
  color: var(--text-muted);
}
.review-text ul {
  list-style: disc;
}
.review-text ol {
  list-style: decimal;
}
.review-text li {
  margin-bottom: 7px;
  line-height: 1.65;
}
.review-text a {
  color: var(--secondary);
  text-decoration: underline;
}
.review-text a:hover {
  color: var(--gold);
}
.review-text table {
  margin: 20px auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.review-text table th {
  background: #111620;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.review-text table td {
  padding: 11px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--text-muted);
}
.review-text table tr:last-child td {
  border-bottom: none;
}
.review-text blockquote {
  margin: 20px 0;
  padding: 18px 24px;
  background: rgba(212, 168, 67, 0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}
.review-text strong {
  color: var(--text);
  font-weight: 700;
}
.review-text em {
  color: var(--gold);
}

.reg-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 24px;
}
.reg-table {
  min-width: 480px;
}
.reg-table th {
  background: #111620;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.reg-table td {
  padding: 15px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  text-align: left;
  line-height: 1.6;
  vertical-align: top;
}
.reg-table tr:last-child td {
  border-bottom: none;
}
.reg-table tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.step-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 24px;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--border-light);
}
.author-body {
  flex: 1;
}
.author-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.author-role {
  font-size: 13px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 10px;
}
.author-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.author-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.author-socials a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none !important;
  transition: all var(--transition);
}
.author-socials a:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.author-socials svg {
  width: 15px;
  height: 15px;
}
.author-dates {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.author-dates span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.author-dates svg {
  width: 13px;
  height: 13px;
}

.faq-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition);
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}
.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  display: block;
}

.site-footer {
  background: var(--header-bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-flag img {
  width: 24px;
  height: 16px;
  border-radius: 2px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none !important;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--text);
}
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none !important;
}
.footer-socials a:hover {
  background: rgba(236, 4, 51, 0.1);
  border-color: rgba(236, 4, 51, 0.4);
  color: var(--secondary);
}
.footer-socials svg {
  width: 16px;
  height: 16px;
}
.footer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}
.footer-logos-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-logos-row .logo-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.footer-logos-row .logo-badge svg {
  width: 14px;
  height: 14px;
}
.footer-logos-row h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  width: 100%;
  margin-bottom: 6px;
}
.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: underline;
}
.footer-legal a:hover {
  color: var(--text);
}
.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}
.responsible-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}
.responsible-logos a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none !important;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  transition: all var(--transition);
}
.responsible-logos a:hover {
  border-color: var(--border-light);
  color: var(--text);
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #161b25, #1a2035);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.widget-text {
  flex: 1;
}
.widget-text strong {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: block;
  line-height: 1.2;
}
.widget-text span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}
.widget-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.widget-dismiss {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}
.widget-dismiss:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.widget-dismiss svg {
  width: 14px;
  height: 14px;
}
body.widget-hidden .sticky-widget {
  display: none;
}
body {
  padding-bottom: 70px;
}
body.widget-hidden {
  padding-bottom: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.animate-fade-in {
  animation: fadeIn 0.5s ease both;
}
.animate-slide-up {
  animation: fadeInUp 0.5s ease both;
}
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

.qx82f1,
.zy6p4n,
.bm3r7s {
  display: none;
}
.wp-block-column,
.wp-block-group,
.wp-block-separator {
  display: revert;
}
.elementor-section {
  display: contents;
}
.fl-builder-content {
  display: contents;
}
.entry-meta,
.entry-header {
  display: contents;
}
.post-thumbnail {
  display: contents;
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.site-info {
  display: contents;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-grid > :first-child {
    grid-column: 1/-1;
  }
  .hero-bonus {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--header-bg);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    box-shadow: var(--shadow);
    z-index: 999;
  }
  .header-nav.is-open {
    display: flex;
  }
  .header-nav a {
    padding: 12px 16px;
    font-size: 15px;
    width: 100%;
    border-radius: var(--radius-sm);
  }
  .burger {
    display: flex;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .online-count {
    font-size: 12px;
    padding: 5px 10px;
  }
  .hero-content {
    flex-direction: column;
    gap: 32px;
    padding: 40px 20px;
  }
  .hero-bonus {
    width: 100%;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .block {
    padding: 24px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-copyright {
    flex-direction: column;
    align-items: flex-start;
  }
  .sticky-widget {
    flex-wrap: wrap;
  }
  .advantages-grid,
  .jackpot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wheel-section {
    flex-direction: column;
    align-items: center;
  }
  canvas#wheelCanvas {
    width: 260px !important;
    height: 260px !important;
  }
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-socials {
    justify-content: center;
  }
  .author-dates {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .jackpot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .toc-grid {
    grid-template-columns: 1fr;
  }
  .widget-text strong {
    font-size: 13px;
  }
  .btn--lg {
    padding: 13px 24px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  #jackpot {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  #jackpot .jackpot-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 16px !important;
    margin: 20px 0 0 !important;
    overflow: visible !important;
  }
  #jackpot .jackpot-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 24px 16px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  #jackpot .jackpot-amount {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    font-size: clamp(1.7rem, 8vw, 2.25rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
  }
  #jackpot .jackpot-label {
    font-size: 14px !important;
    line-height: 1.45 !important;
    overflow-wrap: anywhere !important;
  }
  #jackpot .jackpot-btn {
    justify-content: center !important;
    min-width: 150px !important;
  }
}
@media (max-width: 420px) {
  #jackpot .jackpot-card {
    padding: 22px 14px !important;
  }
  #jackpot .jackpot-amount {
    font-size: clamp(1.55rem, 7.6vw, 1.95rem) !important;
  }
}

@media (max-width: 768px) {
  .header-actions .btn--secondary {
    display: none !important;
  }

  .header-actions .btn--primary {
    display: inline-flex !important;
  }
}
