@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap");

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

:root {
  --c-bg: #15021a;
  --c-header: #1e0226;
  --c-pink: #f532b3;
  --c-teal: #21d1b4;
  --c-text: #e8d5f0;
  --c-text-muted: #9b7aaf;
  --c-border: rgba(245, 50, 179, 0.18);
  --c-card: #200b2a;
  --c-card2: #1a0522;
  --c-gold: #ffd700;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 32px rgba(245, 50, 179, 0.1);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Montserrat", "Roboto", Arial, Helvetica, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--c-pink);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--c-teal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.x7k2m9 {
  display: none;
  visibility: hidden;
}

.wp-block-cover__inner-container {
  position: relative;
}

.elementor-section-wrap {
  width: 100%;
}

.b3n8p1 {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  padding: 10px 22px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    opacity var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.07);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn--pink {
  background: linear-gradient(135deg, #f532b3 0%, #c0208a 100%);
  color: #fff;
  box-shadow: 0 2px 18px rgba(245, 50, 179, 0.35);
}

.btn--pink:hover {
  box-shadow: 0 4px 28px rgba(245, 50, 179, 0.55);
  color: #fff;
}

.btn--teal {
  background: linear-gradient(135deg, #21d1b4 0%, #17a08a 100%);
  color: #0a1a16;
  box-shadow: 0 2px 18px rgba(33, 209, 180, 0.35);
}

.btn--teal:hover {
  box-shadow: 0 4px 28px rgba(33, 209, 180, 0.55);
  color: #0a1a16;
}

.btn--lg {
  font-size: 1.08rem;
  padding: 14px 34px;
}

.btn--sm {
  font-size: 0.8rem;
  padding: 7px 16px;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-pink), var(--c-teal));
  border-radius: 2px;
  margin-top: 8px;
}

.section-title--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title--center::after {
  margin: 8px auto 0;
}

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

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

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

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.hdr-a9x2 {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

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

.hdr-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hdr-logo img {
  height: 42px;
  width: auto;
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex: 1;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.hdr-nav li a {
  color: var(--c-text);
  font-size: 0.87rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
  letter-spacing: 0.01em;
}

.hdr-nav li a:hover {
  color: var(--c-teal);
  background: rgba(33, 209, 180, 0.09);
}

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

.hdr-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.hdr-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-teal);
  box-shadow: 0 0 6px var(--c-teal);
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 6px var(--c-teal);
  }
  50% {
    box-shadow:
      0 0 14px var(--c-teal),
      0 0 24px rgba(33, 209, 180, 0.4);
  }
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.burger-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-header);
  z-index: 990;
  padding: 24px 20px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  border-top: 1px solid var(--c-border);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  color: var(--c-text);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--c-border);
  transition:
    color var(--transition),
    background var(--transition);
}

.mobile-menu a:hover {
  color: var(--c-teal);
  background: rgba(33, 209, 180, 0.06);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 4px;
  border-bottom: none;
}

.hero-z8p3 {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d0115;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(21, 2, 26, 0.92) 0%,
    rgba(21, 2, 26, 0.55) 60%,
    rgba(21, 2, 26, 0.2) 100%
  );
}

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

.hero-badge {
  display: inline-block;
  background: rgba(245, 50, 179, 0.15);
  border: 1px solid rgba(245, 50, 179, 0.35);
  color: var(--c-pink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero-h1 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-h1 span {
  background: linear-gradient(90deg, var(--c-pink), var(--c-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--c-text);
  margin-bottom: 28px;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(33, 209, 180, 0.1);
  border: 1px solid rgba(33, 209, 180, 0.3);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 28px;
  color: var(--c-teal);
  font-weight: 700;
  font-size: 1.1rem;
}

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

.jackpots-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.jackpot-card {
  flex: 1 1 200px;
  max-width: 240px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.jackpot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-pink), var(--c-teal));
}

.jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(245, 50, 179, 0.18);
}

.jackpot-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.jackpot-label {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 8px;
}

.jackpot-amount {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--c-gold), #ffb700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.01em;
}

.jackpot-game {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 6px;
}

.mirrors-block {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  overflow-x: auto;
}

.mirrors-timestamp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--c-teal);
  font-weight: 600;
  margin-bottom: 20px;
  background: rgba(33, 209, 180, 0.07);
  border: 1px solid rgba(33, 209, 180, 0.18);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  display: inline-flex;
}

.mirrors-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 600px;
}

.mirrors-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  border-bottom: 2px solid var(--c-border);
  background: rgba(30, 2, 38, 0.6);
}

.mirrors-table td {
  padding: 13px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(245, 50, 179, 0.08);
  vertical-align: middle;
}

.mirrors-table tr:last-child td {
  border-bottom: none;
}

.mirrors-table tr:hover td {
  background: rgba(245, 50, 179, 0.04);
}

.mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-teal);
}

.mirror-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-teal);
  box-shadow: 0 0 6px var(--c-teal);
  animation: pulse-dot 2s infinite;
}

.mirror-status.slow {
  color: var(--c-gold);
}

.mirror-status.slow::before {
  background: var(--c-gold);
  box-shadow: 0 0 6px var(--c-gold);
}

.mirror-link {
  color: var(--c-teal);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--transition);
}

.mirror-link:hover {
  color: var(--c-pink);
}

.mirror-speed-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.speed-bar-bg {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  min-width: 60px;
}

.speed-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--c-teal), #17d0b4);
}

.speed-bar-fill.medium {
  background: linear-gradient(90deg, var(--c-gold), #ffb700);
}

.speed-text {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.winner-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.winner-card:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 18px rgba(245, 50, 179, 0.12);
}

.winner-rank {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--c-text-muted);
  width: 22px;
  flex-shrink: 0;
  text-align: center;
}

.winner-rank.gold {
  color: var(--c-gold);
}
.winner-rank.silver {
  color: #c0c0c0;
}
.winner-rank.bronze {
  color: #cd7f32;
}

.winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-pink), var(--c-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.winner-info {
  flex: 1;
  min-width: 0;
}

.winner-nick {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-game {
  font-size: 0.74rem;
  color: var(--c-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-amount {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--c-teal);
  flex-shrink: 0;
  text-align: right;
}

.wheel-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.wheel-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.wheel-wrap {
  position: relative;
  width: 300px;
  height: 300px;
}

.wheel-canvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(245, 50, 179, 0.25),
    0 0 80px rgba(33, 209, 180, 0.1);
}

.wheel-pointer {
  position: absolute;
  top: -16px;
  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-pink);
  filter: drop-shadow(0 2px 6px rgba(245, 50, 179, 0.6));
  z-index: 2;
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-header);
  border: 4px solid var(--c-pink);
  z-index: 3;
  box-shadow: 0 0 14px rgba(245, 50, 179, 0.5);
}

.wheel-result {
  display: none;
  text-align: center;
  padding: 24px 32px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  max-width: 360px;
  width: 100%;
  animation: fadeInUp 0.4s ease forwards;
}

.wheel-result.show {
  display: block;
}

.wheel-result-win {
  border-color: rgba(33, 209, 180, 0.4);
  box-shadow: 0 0 32px rgba(33, 209, 180, 0.15);
}

.wheel-result-lose {
  border-color: rgba(245, 50, 179, 0.2);
}

.wheel-result-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.wheel-result-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.wheel-result-title.win {
  color: var(--c-teal);
}

.wheel-result-title.lose {
  color: var(--c-text-muted);
}

.wheel-result-desc {
  font-size: 0.92rem;
  color: var(--c-text);
  margin-bottom: 18px;
  line-height: 1.55;
}

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

.review-block {
  background: var(--c-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px;
}

.review-content {
  line-height: 1.75;
  color: var(--c-text);
  font-size: 0.97rem;
}

.review-content h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--c-text);
  margin: 28px 0 14px;
  line-height: 1.3;
}

.review-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-teal);
  margin: 22px 0 12px;
}

.review-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-pink);
  margin: 18px 0 10px;
}

.review-content p {
  margin-bottom: 16px;
  color: var(--c-text);
  line-height: 1.75;
}

.review-content ul,
.review-content ol {
  margin: 0 0 18px 22px;
  padding: 0;
}

.review-content ul li,
.review-content ol li {
  margin-bottom: 8px;
  color: var(--c-text);
  padding-left: 6px;
}

.review-content ul li::marker {
  color: var(--c-pink);
}

.review-content ol li::marker {
  color: var(--c-teal);
  font-weight: 700;
}

.review-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px auto;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.9rem;
}

.review-content th {
  background: rgba(245, 50, 179, 0.1);
  color: var(--c-text);
  text-align: left;
  padding: 12px 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--c-border);
}

.review-content td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(245, 50, 179, 0.07);
  color: var(--c-text);
  text-align: left;
}

.review-content tr:last-child td {
  border-bottom: none;
}

.review-content tr:hover td {
  background: rgba(245, 50, 179, 0.04);
}

.review-content a {
  color: var(--c-pink);
  text-decoration: underline;
}

.review-content blockquote {
  border-left: 3px solid var(--c-pink);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(245, 50, 179, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text);
  font-style: italic;
}

.review-content strong {
  color: #fff;
  font-weight: 700;
}

.review-content em {
  color: var(--c-teal);
}

.review-content img {
  border-radius: var(--radius-sm);
  margin: 16px 0;
  max-width: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 17px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(245, 50, 179, 0.05);
}

.faq-question[aria-expanded="true"] {
  color: var(--c-teal);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.32s ease,
    padding var(--transition);
}

.faq-answer.is-open {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.author-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-pink);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(245, 50, 179, 0.2);
}

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 6px;
}

.author-title {
  font-size: 0.82rem;
  color: var(--c-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.author-bio {
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.65;
  margin-bottom: 14px;
}

.author-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text-muted);
  padding: 6px 12px;
  border: 1px solid var(--c-border);
  border-radius: 50px;
  transition:
    color var(--transition),
    border-color var(--transition);
}

.author-social-link:hover {
  color: var(--c-teal);
  border-color: var(--c-teal);
}

.ftr-m7b4 {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 0;
  margin-top: auto;
}

.ftr-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  align-items: flex-start;
}

.ftr-brand {
  flex: 1 1 200px;
  min-width: 180px;
}

.ftr-logo {
  height: 38px;
  margin-bottom: 14px;
}

.ftr-brand-desc {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 240px;
}

.ftr-col {
  flex: 1 1 130px;
  min-width: 120px;
}

.ftr-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}

.ftr-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.ftr-col ul li a {
  font-size: 0.87rem;
  color: var(--c-text);
  transition: color var(--transition);
}

.ftr-col ul li a:hover {
  color: var(--c-teal);
}

.ftr-payments {
  margin-bottom: 28px;
}

.ftr-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}

.ftr-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ftr-logo-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.03em;
  transition:
    color var(--transition),
    background var(--transition);
}

.ftr-logo-badge:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.1);
}

.ftr-bottom {
  border-top: 1px solid var(--c-border);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.ftr-copy {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.ftr-legal {
  font-size: 0.75rem;
  color: rgba(155, 122, 175, 0.7);
  line-height: 1.6;
  max-width: 760px;
  text-align: center;
}

.ftr-license {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-teal);
  font-weight: 600;
  margin-top: 8px;
}

.widget-k3n2 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: linear-gradient(135deg, #1a0422 0%, #21d1b4 200%);
  background: #1a0522;
  border-top: 2px solid var(--c-pink);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 30px rgba(245, 50, 179, 0.25);
}

.widget-text {
  display: flex;
  flex-direction: column;
}

.widget-bonus {
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-teal);
  line-height: 1.2;
}

.widget-sub {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.widget-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #21d1b4 0%, #17a08a 100%);
  color: #071a15;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 18px rgba(33, 209, 180, 0.4);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.widget-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 28px rgba(33, 209, 180, 0.6);
  color: #071a15;
  text-decoration: none;
}

.widget-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-text-muted);
  font-size: 1.2rem;
  padding: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.widget-close:hover {
  color: var(--c-text);
}

.section-bg-alt {
  background: var(--c-card2);
}

.section-bg-card {
  background: var(--c-card);
}

.divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
  border: none;
  margin: 0;
}

.breadcrumb-nav {
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

.breadcrumb-nav a {
  color: var(--c-text-muted);
  transition: color var(--transition);
}

.breadcrumb-nav a:hover {
  color: var(--c-pink);
}

.breadcrumb-sep {
  margin: 0 6px;
  color: var(--c-border);
}

body.widget-dismissed .widget-k3n2 {
  display: none;
}

body.widget-active {
  padding-bottom: 64px;
}

.wp-content-hidden {
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.elementor-widget-wrap > .elementor-element {
  width: 100%;
}

.entry-content > * + * {
  margin-top: 1em;
}

.has-text-align-center {
  text-align: center;
}

.wp-block-spacer {
  height: 20px;
}

@media (max-width: 992px) {
  .hdr-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .hero-content {
    max-width: 100%;
    padding: 48px 0;
  }
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }
  .author-socials {
    justify-content: center;
  }
  .ftr-top {
    gap: 28px;
  }
  .hdr-online {
    display: none;
  }
}

@media (max-width: 640px) {
  .section-wrap {
    padding: 40px 0;
  }
  .section-title {
    font-size: 1.35rem;
  }
  .hero-z8p3 {
    min-height: 360px;
  }
  .jackpots-grid {
    gap: 12px;
  }
  .jackpot-card {
    flex: 1 1 140px;
    max-width: 160px;
    padding: 18px 12px;
  }
  .winners-grid {
    grid-template-columns: 1fr;
  }
  .wheel-wrap {
    width: 240px;
    height: 240px;
  }
  .review-block {
    padding: 20px 16px;
  }
  .mirrors-block {
    padding: 16px;
  }
  .widget-k3n2 {
    flex-direction: row;
  }
  .widget-text .widget-bonus {
    font-size: 0.88rem;
  }
  .widget-cta {
    font-size: 0.85rem;
    padding: 9px 16px;
  }
  .hdr-inner {
    height: 60px;
  }
  .hdr-right .btn--sm {
    font-size: 0.73rem;
    padding: 6px 12px;
  }
}

@media (hover: none) {
  .btn:hover {
    transform: none;
  }
  .btn:hover::after {
    opacity: 0;
  }
  .mobile-menu .btn:hover {
    box-shadow: none;
  }
}
