*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Inter", sans-serif;
  background: #0b1020;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: #22d3ee;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #06b6d4;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
  text-decoration: none;
}
.btn--login {
  background: #22d3ee;
  color: #0b1020;
}
.btn--login:hover {
  background: #0891b2;
  color: #fff;
  transform: translateY(-1px);
}
.btn--signup {
  background: #06b6d4;
  color: #0b1020;
}
.btn--signup:hover {
  background: #0891b2;
  color: #fff;
  transform: translateY(-1px);
}
.btn--bonus {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
  color: #0b1020;
  font-weight: 700;
}
.btn--bonus:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.35);
}
.btn--primary {
  background: #22d3ee;
  color: #0b1020;
  font-weight: 700;
}
.btn--primary:hover {
  background: #0891b2;
  color: #fff;
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  border: 2px solid #22d3ee;
  color: #22d3ee;
}
.btn--outline:hover {
  background: #22d3ee;
  color: #0b1020;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}
.btn--sm {
  padding: 7px 16px;
  font-size: 0.8rem;
}

.site-header {
  background: #0f172a;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}
.header-logo img {
  height: 44px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: #22d3ee;
  background: rgba(34, 211, 238, 0.08);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.online-count {
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}
.online-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-slide {
  display: none;
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide.active {
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 16, 32, 0.92) 40%,
    rgba(11, 16, 32, 0.3)
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 60px 0;
}
.hero-content h1,
.hero-content h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}
.hero-content p {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 24px;
  line-height: 1.7;
}
.hero-content .badge {
  display: inline-block;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid #22d3ee;
  color: #22d3ee;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active {
  background: #22d3ee;
  width: 24px;
  border-radius: 4px;
}

.section {
  padding: 64px 0;
}
.section-sm {
  padding: 40px 0;
}
.section-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.section-sub {
  color: #94a3b8;
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.section-header {
  margin-bottom: 32px;
}

.card {
  background: #0f172a;
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s;
}
.card:hover {
  border-color: rgba(34, 211, 238, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.card-text {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid rgba(34, 211, 238, 0.15);
}
.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
  font-size: 0.9rem;
}
.info-table th {
  background: #0f172a;
  color: #94a3b8;
  font-weight: 600;
  white-space: nowrap;
}
.info-table td {
  color: #e2e8f0;
}
.info-table tr:last-child td {
  border-bottom: none;
}
.info-table tr:hover td {
  background: rgba(34, 211, 238, 0.04);
}
.info-table td:first-child {
  color: #94a3b8;
  font-weight: 500;
  white-space: nowrap;
}
.info-table td:last-child {
  color: #fff;
  font-weight: 500;
}
.info-table .badge-val {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-block;
}

.mirror-block {
  background: #0f172a;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
}
.mirror-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.mirror-time {
  font-size: 0.8rem;
  color: #94a3b8;
}
.mirror-time strong {
  color: #22d3ee;
}
.mirror-table {
  width: 100%;
  border-collapse: collapse;
}
.mirror-table th,
.mirror-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(34, 211, 238, 0.08);
  font-size: 0.85rem;
}
.mirror-table th {
  color: #64748b;
  font-weight: 600;
}
.mirror-table td {
  color: #e2e8f0;
}
.mirror-table tr:last-child td {
  border-bottom: none;
}
.mirror-table a {
  color: #22d3ee;
  font-weight: 500;
}
.mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
}
.mirror-status.active {
  color: #22c55e;
}
.mirror-status.active::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.game-card {
  background: #0f172a;
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.game-card:hover {
  border-color: #22d3ee;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.game-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0b1020;
}
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.game-card:hover .game-card-img img {
  transform: scale(1.05);
}
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 32, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.game-card:hover .game-card-overlay {
  opacity: 1;
}
.game-card-body {
  padding: 12px;
}
.game-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.game-card-provider {
  font-size: 0.75rem;
  color: #64748b;
}

.wheel-section {
  background: #0f172a;
  border-radius: 16px;
  border: 1px solid rgba(34, 211, 238, 0.15);
  padding: 40px;
  text-align: center;
}
.wheel-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
.wheel-canvas {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}
.wheel-arrow {
  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 #22d3ee;
  filter: drop-shadow(0 0 8px #22d3ee);
}
.wheel-result {
  margin-top: 24px;
  padding: 20px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid #22d3ee;
  border-radius: 12px;
  display: none;
}
.wheel-result.show {
  display: block;
  animation: fadeIn 0.4s ease;
}
.wheel-result h3 {
  color: #22d3ee;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.wheel-result p {
  color: #cbd5e1;
  margin-bottom: 16px;
}

.author-block {
  background: #0f172a;
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #22d3ee;
  flex-shrink: 0;
}
.author-info {
  flex: 1;
  min-width: 220px;
}
.author-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.author-bio {
  font-size: 0.87rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 12px;
}
.author-links {
  display: flex;
  gap: 10px;
}
.author-links a {
  color: #22d3ee;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.author-links a:hover {
  color: #06b6d4;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.bonus-card {
  background: #0f172a;
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22d3ee, #06b6d4);
}
.bonus-card:hover {
  border-color: #22d3ee;
  transform: translateY(-3px);
}
.bonus-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.bonus-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.bonus-card-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #22d3ee;
  margin-bottom: 8px;
}
.bonus-card-desc {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #0f172a;
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(34, 211, 238, 0.06);
}
.faq-icon {
  width: 22px;
  height: 22px;
  border: 2px solid #22d3ee;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22d3ee;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
}
.faq-answer-inner {
  padding: 0 20px 16px;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 600px;
}

.breadcrumb {
  padding: 16px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.83rem;
}
.breadcrumb a {
  color: #94a3b8;
}
.breadcrumb a:hover {
  color: #22d3ee;
}
.breadcrumb span {
  color: #64748b;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb li + li::before {
  content: "/";
  color: #374151;
}

.toc-block {
  background: #0f172a;
  border-left: 3px solid #22d3ee;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.toc-block h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.toc-block ol {
  padding-left: 16px;
}
.toc-block li {
  margin-bottom: 6px;
}
.toc-block a {
  color: #22d3ee;
  font-size: 0.88rem;
}
.toc-block a:hover {
  color: #06b6d4;
}

.promo-accent {
  background: linear-gradient(135deg, #0f172a, #0b1624);
  border: 2px solid #22d3ee;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-accent::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(34, 211, 238, 0.06),
    transparent 70%
  );
  pointer-events: none;
}
.promo-code-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.promo-code-val {
  background: #0b1020;
  border: 2px dashed #22d3ee;
  color: #22d3ee;
  font-size: 1.6rem;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 10px;
  letter-spacing: 2px;
  font-family: monospace;
}
.promo-copy-btn {
  background: #22d3ee;
  color: #0b1020;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.promo-copy-btn:hover {
  background: #06b6d4;
  transform: translateY(-1px);
}
.promo-copy-btn.copied {
  background: #22c55e;
  color: #fff;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: #0f172a;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 16px;
  width: 95%;
  max-width: 780px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.modal-overlay.open .modal {
  transform: scale(1);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
}
.modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.modal-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #22d3ee;
}
.modal-body {
  flex: 1;
  padding: 0;
}
.modal-iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

.site-footer {
  background: #0f172a;
  border-top: 1px solid rgba(34, 211, 238, 0.1);
  padding: 48px 0 24px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
}
.footer-about {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.7;
}
.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: #64748b;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #22d3ee;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.payment-badge {
  background: #0b1020;
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
}
.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.provider-badge {
  background: #0b1020;
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  color: #64748b;
}
.footer-bottom {
  border-top: 1px solid rgba(34, 211, 238, 0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-legal {
  font-size: 0.75rem;
  color: #374151;
  line-height: 1.6;
  max-width: 700px;
}
.footer-copy {
  font-size: 0.78rem;
  color: #374151;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.footer-legal-links a {
  font-size: 0.75rem;
  color: #4b5563;
  text-decoration: none;
}
.footer-legal-links a:hover {
  color: #94a3b8;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  border-top: 2px solid #22d3ee;
  z-index: 90;
  padding: 10px 0;
  box-shadow: 0 -4px 30px rgba(34, 211, 238, 0.15);
}
.widget-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.widget-text {
  font-size: 0.88rem;
  color: #94a3b8;
}
.widget-text strong {
  color: #22d3ee;
  font-size: 1rem;
}
.widget-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.widget-close {
  background: none;
  border: none;
  color: #64748b;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 6px;
  transition: color 0.2s;
}
.widget-close:hover {
  color: #94a3b8;
}

.content-review {
  padding: 0;
}
.content-review h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}
.content-review h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 20px 0 10px;
}
.content-review h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #cbd5e1;
  margin: 16px 0 8px;
}
.content-review p {
  color: #94a3b8;
  margin-bottom: 14px;
  line-height: 1.7;
}
.content-review ul,
.content-review ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.content-review ul {
  list-style: disc;
}
.content-review ol {
  list-style: decimal;
}
.content-review li {
  color: #94a3b8;
  margin-bottom: 6px;
  line-height: 1.6;
}
.content-review table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  overflow-x: auto;
  display: block;
}
.content-review table th,
.content-review table td {
  padding: 10px 14px;
  border: 1px solid rgba(34, 211, 238, 0.15);
  text-align: left;
  font-size: 0.88rem;
}
.content-review table th {
  background: #0f172a;
  color: #94a3b8;
}
.content-review table td {
  color: #e2e8f0;
}
.content-review a {
  color: #22d3ee;
}
.content-review a:hover {
  color: #06b6d4;
}
.content-review strong,
.content-review b {
  color: #e2e8f0;
}
.content-review blockquote {
  border-left: 3px solid #22d3ee;
  padding: 12px 16px;
  margin: 16px 0;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 0 8px 8px 0;
}
.content-review blockquote p {
  color: #cbd5e1;
  margin: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th {
  background: #0f172a;
  color: #94a3b8;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(34, 211, 238, 0.08);
  font-size: 0.88rem;
  color: #e2e8f0;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table .highlight {
  color: #22d3ee;
  font-weight: 700;
}
.comparison-table .check {
  color: #22c55e;
}
.comparison-table .cross {
  color: #ef4444;
}

.jackpot-bar {
  background: linear-gradient(135deg, #0f172a, #0b1624);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.jackpot-item {
  text-align: center;
}
.jackpot-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.jackpot-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #22d3ee;
  font-variant-numeric: tabular-nums;
}

.slots-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.slot-cat-btn {
  background: #0f172a;
  border: 1px solid rgba(34, 211, 238, 0.15);
  color: #94a3b8;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.slot-cat-btn:hover,
.slot-cat-btn.active {
  background: rgba(34, 211, 238, 0.12);
  border-color: #22d3ee;
  color: #22d3ee;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.feature-item {
  background: #0f172a;
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: #22d3ee;
}
.feature-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
}

.mirror-no-work {
  background: #0f172a;
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 14px;
  padding: 24px;
}
.mirror-no-work h3 {
  color: #ef4444;
  margin-bottom: 14px;
  font-size: 1rem;
}
.mirror-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.mirror-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(239, 68, 68, 0.05);
  border-radius: 8px;
}
.mirror-step-num {
  width: 28px;
  height: 28px;
  background: rgba(239, 68, 68, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ef4444;
}
.mirror-step-text {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
}
.mirror-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mirror-btn-alt {
  background: #0b1020;
  border: 1px solid rgba(34, 211, 238, 0.2);
  color: #22d3ee;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mirror-btn-alt:hover {
  background: rgba(34, 211, 238, 0.1);
  border-color: #22d3ee;
}

.safety-block {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.safety-item {
  background: #0f172a;
  border-left: 3px solid #22c55e;
  border-radius: 0 10px 10px 0;
  padding: 16px;
}
.safety-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 6px;
}
.safety-item p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

.alt-apps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.alt-app-item {
  background: #0f172a;
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.alt-app-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.alt-app-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
  flex: 1;
}

.get-bonus-hero {
  background: linear-gradient(135deg, #0f2a3a, #0b1020);
  border: 2px solid rgba(34, 211, 238, 0.3);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.get-bonus-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08), transparent);
  pointer-events: none;
}
.get-bonus-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.get-bonus-text p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.get-bonus-val {
  font-size: 2.2rem;
  font-weight: 900;
  color: #22d3ee;
  text-align: center;
  white-space: nowrap;
}
.get-bonus-val span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8;
  display: block;
}

.registration-bonus {
  background: #0f172a;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.reg-bonus-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.reg-bonus-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.reg-bonus-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #22d3ee;
  margin-bottom: 4px;
}
.reg-bonus-desc {
  font-size: 0.84rem;
  color: #64748b;
}

.tech-content {
  background: #0f172a;
  border-radius: 14px;
  padding: 32px;
  border: 1px solid rgba(34, 211, 238, 0.08);
}
.tech-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 10px;
}
.tech-content h2:first-child {
  margin-top: 0;
}
.tech-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 18px 0 8px;
}
.tech-content p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.tech-content ul,
.tech-content ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.tech-content ul {
  list-style: disc;
}
.tech-content ol {
  list-style: decimal;
}
.tech-content li {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 5px;
  line-height: 1.6;
}
.tech-content a {
  color: #22d3ee;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.5s ease both;
}
.slide-up {
  animation: slideUp 0.5s ease both;
}

.d-none {
  display: none !important;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}
.gap-2 {
  gap: 16px;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.w-full {
  width: 100%;
}
.rounded {
  border-radius: 8px;
}
.bg-card {
  background: #0f172a;
}

#xp93f2 {
  display: none;
}
#b8kq17 {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.wp-block-placeholder {
  display: none;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-grid > :first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f172a;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    z-index: 200;
    overflow-y: auto;
    gap: 0;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(34, 211, 238, 0.07);
    font-size: 1rem;
    border-radius: 0;
  }
  .burger {
    display: flex;
    z-index: 210;
    position: relative;
  }
  .hero-slide {
    min-height: 360px;
  }
  .hero-content {
    padding: 40px 0;
  }
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > :first-child {
    grid-column: auto;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .get-bonus-hero {
    text-align: center;
    justify-content: center;
  }
  .get-bonus-hero .get-bonus-val {
    order: -1;
    width: 100%;
  }
  .jackpot-bar {
    justify-content: center;
  }
  .safety-block {
    grid-template-columns: 1fr;
  }
  .widget-inner {
    justify-content: center;
    text-align: center;
  }
  .alt-apps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .header-actions .btn--login,
  .header-actions .btn--signup {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: 1.4rem;
  }
  .modal-iframe {
    height: 380px;
  }
  .alt-apps {
    grid-template-columns: 1fr;
  }
  .promo-code-val {
    font-size: 1.2rem;
    padding: 10px 18px;
  }
}

.wp-post-image {
  border-radius: 8px;
}
.wp-caption {
  font-size: 0.8rem;
  color: #64748b;
}
.aligncenter {
  margin: 0 auto;
  display: block;
}
.entry-content,
.post-content {
  line-height: 1.7;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"] {
  background: #0b1020;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 6px;
  padding: 10px 14px;
  color: #e2e8f0;
  width: 100%;
}
.elementor-widget-container {
  position: relative;
}
.et_pb_section {
  padding: 40px 0;
}
.vc_row {
  display: flex;
  flex-wrap: wrap;
}

.content-technical {
  background: #0f172a;
  border-radius: 14px;
  padding: 32px;
  border: 1px solid rgba(34, 211, 238, 0.08);
}
.content-technical h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(34, 211, 238, 0.12);
}
.content-technical h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 10px;
}
.content-technical h2:first-child {
  margin-top: 0;
}
.content-technical h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 18px 0 8px;
}
.content-technical p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.content-technical ul,
.content-technical ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.content-technical ul {
  list-style: disc;
}
.content-technical ol {
  list-style: decimal;
}
.content-technical li {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 6px;
  line-height: 1.6;
}
.content-technical a {
  color: #22d3ee;
}
.content-technical a:hover {
  color: #06b6d4;
}
.content-technical strong {
  color: #e2e8f0;
}

.breadcrumbs {
  padding: 16px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.83rem;
  margin-bottom: 4px;
}
.breadcrumbs a {
  color: #94a3b8;
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: #22d3ee;
}
.breadcrumbs-sep {
  color: #374151;
}


/* critical layout and interaction fixes */
.hero,
.hero-slider,
.hero-slide {
  width: 100%;
  max-width: none;
}

.hero-slide > .container {
  width: 100%;
}

body:not(.page-technical) .hero > .hero-slide.active,
body:not(.page-technical) .hero > .hero-slide[style*="display:flex"] {
  width: 100% !important;
  min-width: 100% !important;
  flex: 0 0 100% !important;
}

.wheel-section {
  min-height: auto;
}

.wheel-wrap {
  width: 300px;
  max-width: 100%;
  min-height: 300px;
}

.wheel-canvas {
  width: 300px;
  height: 300px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
}

@media (max-width: 768px) {
  .site-header .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-inner {
    flex-wrap: nowrap;
    min-height: 64px;
  }

  .header-logo {
    position: relative;
    z-index: 212;
    flex: 0 0 auto;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .btn--signup {
    display: none;
  }

  .burger {
    display: flex !important;
    position: relative;
    z-index: 214;
    flex: 0 0 auto;
  }

  .header-nav {
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .28s ease, opacity .2s ease, visibility .2s ease;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    padding: 88px 22px 28px;
    background: #0f172a;
    z-index: 210;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
  }

  .header-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .header-nav a {
    flex: 0 0 auto;
    width: 100%;
    padding: 15px 2px;
    font-size: 1rem;
  }

  body.menu-open {
    overflow: hidden !important;
    touch-action: none;
  }

  .hero,
  .hero-slide,
  .hero-slide.active,
  .hero-slide[style*="display:flex"] {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .hero-slide {
    background-position: center;
  }

  .hero-slide::before {
    background: linear-gradient(90deg, rgba(11,16,32,.94), rgba(11,16,32,.58));
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .wheel-section {
    padding: 28px 16px;
  }

  .wheel-wrap {
    width: min(300px, calc(100vw - 64px));
    min-height: 0;
  }

  .wheel-canvas {
    width: 100%;
    height: auto;
  }
}
