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

:root {
  --clr-bg: #15021a;
  --clr-header: #1e0226;
  --clr-pink: #f532b3;
  --clr-teal: #21d1b4;
  --clr-white: #ffffff;
  --clr-light: #e8d5f5;
  --clr-muted: #a78bb8;
  --clr-card: #2a0835;
  --clr-border: #3d1050;
  --font-main: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  --font-body: "Roboto", "Open Sans", Arial, Helvetica, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: 0.28s ease;
}

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

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-light);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--clr-teal);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-pink);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  color: var(--clr-white);
  line-height: 1.25;
  font-weight: 700;
}
h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  margin-bottom: 0.85rem;
}
h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  margin-bottom: 0.7rem;
}

p {
  margin-bottom: 1rem;
}
ul,
ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
li {
  margin-bottom: 0.4rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55em 1.4em;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.btn:active {
  transform: translateY(0);
}

.btn--pink {
  background: var(--clr-pink);
  color: var(--clr-white);
  box-shadow: 0 4px 18px rgba(245, 50, 179, 0.35);
}
.btn--teal {
  background: var(--clr-teal);
  color: #0d1f1c;
  box-shadow: 0 4px 18px rgba(33, 209, 180, 0.35);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-teal);
  color: var(--clr-teal);
}
.btn--outline:hover {
  background: var(--clr-teal);
  color: #0d1f1c;
}
.btn--lg {
  padding: 0.75em 2em;
  font-size: 1.05rem;
}
.btn--sm {
  padding: 0.35em 0.9em;
  font-size: 0.8rem;
}

.box {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  padding: 28px;
  margin-bottom: 24px;
}
.box--flat {
  border-radius: var(--radius-sm);
  padding: 20px;
}

.section {
  padding: 48px 0;
}
.section--sm {
  padding: 28px 0;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.header-nav a {
  color: var(--clr-light);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition);
}
.header-nav a:hover {
  color: var(--clr-white);
  background: rgba(245, 50, 179, 0.15);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--clr-teal);
  white-space: nowrap;
  font-weight: 600;
}
.header-online span.dot {
  width: 8px;
  height: 8px;
  background: var(--clr-teal);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.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);
}

.mobile-header-btns {
  display: none;
  align-items: center;
  gap: 6px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 12px 20px 16px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav a {
  color: var(--clr-light);
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav a:last-child {
  border-bottom: none;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 20px 0;
  min-height: 360px;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: center;
}
.hero-slider .slide.active {
  opacity: 1;
  position: relative;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 2, 38, 0.88) 30%,
    rgba(21, 2, 26, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 48px 40px;
}
.hero-content h1,
.hero-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--clr-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.hero-content p {
  color: var(--clr-light);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.hero-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}
.hero-dot.active {
  background: var(--clr-pink);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}
.info-table table {
  width: 100%;
  min-width: 420px;
}
.info-table th,
.info-table td {
  padding: 11px 14px;
  text-align: left;
  border: 1px solid var(--clr-border);
  font-size: 0.9rem;
}
.info-table th {
  background: rgba(245, 50, 179, 0.15);
  color: var(--clr-pink);
  font-weight: 700;
  width: 38%;
}
.info-table td {
  color: var(--clr-light);
}
.info-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.advantage-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.advantage-item:hover {
  border-color: var(--clr-teal);
  transform: translateY(-3px);
}
.advantage-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--clr-pink), var(--clr-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.advantage-text h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.advantage-text p {
  font-size: 0.82rem;
  color: var(--clr-muted);
  margin: 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.game-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-pink);
}
.game-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.game-card-body {
  padding: 12px;
}
.game-card-body h3 {
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.wheel-section {
  text-align: center;
  padding: 40px 20px;
}
.wheel-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
#wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(245, 50, 179, 0.4);
}
.wheel-result {
  background: linear-gradient(
    135deg,
    rgba(33, 209, 180, 0.2),
    rgba(245, 50, 179, 0.2)
  );
  border: 1px solid var(--clr-teal);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: none;
  animation: fadeIn 0.5s ease;
}
.wheel-result.show {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.author-block {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--clr-pink);
}
.author-info h4 {
  color: var(--clr-white);
  margin-bottom: 4px;
  font-size: 1rem;
}
.author-info p {
  color: var(--clr-muted);
  font-size: 0.83rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.author-socials {
  display: flex;
  gap: 10px;
}
.author-socials a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245, 50, 179, 0.15);
  color: var(--clr-pink);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  transition: background var(--transition);
}
.author-socials a:hover {
  background: var(--clr-pink);
  color: var(--clr-white);
}

.site-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 40px 0 20px;
  margin-top: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
}
.footer-logo img {
  height: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer-nav a {
  color: var(--clr-muted);
  font-size: 0.85rem;
}
.footer-nav a:hover {
  color: var(--clr-teal);
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.footer-legal-links a {
  color: var(--clr-muted);
  font-size: 0.78rem;
}
.footer-legal-links a:hover {
  color: var(--clr-teal);
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  align-items: center;
}
.footer-payments span,
.footer-providers span {
  font-size: 0.75rem;
  color: var(--clr-muted);
  margin-right: 6px;
  font-weight: 600;
}
.footer-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--clr-light);
  font-weight: 600;
}
.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  align-items: center;
}
.footer-copyright {
  border-top: 1px solid var(--clr-border);
  padding-top: 16px;
  font-size: 0.78rem;
  color: var(--clr-muted);
  text-align: center;
  line-height: 1.7;
}

.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: linear-gradient(90deg, #1e0226 0%, #2a0835 100%);
  border-top: 2px solid var(--clr-teal);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.bottom-widget-text {
  color: var(--clr-white);
  font-size: 0.88rem;
  font-weight: 600;
}
.bottom-widget-text strong {
  color: var(--clr-teal);
}
.bottom-widget-close {
  background: transparent;
  border: none;
  color: var(--clr-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 2px 6px;
  flex-shrink: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--clr-muted);
  padding: 12px 0;
}
.breadcrumbs a {
  color: var(--clr-teal);
}
.breadcrumbs span {
  color: var(--clr-muted);
}
.breadcrumbs li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumbs li + li::before {
  content: "/";
  color: var(--clr-muted);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.bonus-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    border-color var(--transition),
    transform var(--transition);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-pink), var(--clr-teal));
}
.bonus-card:hover {
  border-color: var(--clr-pink);
  transform: translateY(-4px);
}
.bonus-card h3 {
  font-size: 1.05rem;
}
.bonus-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-teal);
}
.bonus-desc {
  font-size: 0.83rem;
  color: var(--clr-muted);
  flex: 1;
}
.bonus-tag {
  display: inline-block;
  background: rgba(245, 50, 179, 0.2);
  color: var(--clr-pink);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  align-self: flex-start;
}

.promo-block {
  background: linear-gradient(
    135deg,
    rgba(245, 50, 179, 0.15),
    rgba(33, 209, 180, 0.1)
  );
  border: 2px solid var(--clr-teal);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.promo-code-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.promo-code-val {
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed var(--clr-teal);
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--clr-teal);
  cursor: pointer;
  font-family: monospace;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--clr-white);
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover {
  background: rgba(245, 50, 179, 0.1);
}
.faq-question .faq-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr-pink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.65;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 16px;
}

.toc-block {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  padding: 24px;
}
.toc-block ol {
  padding-left: 1.2rem;
}
.toc-block li {
  margin-bottom: 8px;
}
.toc-block a {
  color: var(--clr-teal);
  font-size: 0.9rem;
}

.comparison-table {
  width: 100%;
  overflow-x: auto;
  display: block;
}
.comparison-table table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
}
.comparison-table th {
  background: rgba(245, 50, 179, 0.18);
  color: var(--clr-pink);
  padding: 12px 14px;
  text-align: left;
  border: 1px solid var(--clr-border);
  font-size: 0.88rem;
}
.comparison-table td {
  padding: 11px 14px;
  border: 1px solid var(--clr-border);
  color: var(--clr-light);
  font-size: 0.87rem;
}
.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.check {
  color: var(--clr-teal);
  font-weight: 700;
}
.cross {
  color: #ff4d6a;
  font-weight: 700;
}

.alt-brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.alt-brand-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: border-color var(--transition);
}
.alt-brand-card:hover {
  border-color: var(--clr-teal);
}
.alt-brand-card h4 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.alt-brand-card p {
  font-size: 0.77rem;
  color: var(--clr-muted);
  margin: 0;
}

.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.jackpot-card {
  background: linear-gradient(135deg, #2a0835, #1e0226);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
}
.jackpot-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-teal);
  display: block;
  margin: 8px 0;
}
.jackpot-name {
  font-size: 0.88rem;
  color: var(--clr-muted);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.slot-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition:
    transform var(--transition),
    border-color var(--transition);
  position: relative;
}
.slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-teal);
}
.slot-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}
.slot-card-body {
  padding: 10px 8px;
}
.slot-card-body h4 {
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.slot-rtp {
  font-size: 0.72rem;
  color: var(--clr-teal);
  font-weight: 700;
}
.slot-demo-btn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 2, 26, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.slot-card:hover .slot-demo-btn {
  opacity: 1;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
}
.popup-overlay.active {
  display: flex;
}
.popup-box {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 700px;
  width: 95%;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--clr-muted);
  font-size: 1.5rem;
  cursor: pointer;
}
.popup-iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: var(--radius-sm);
}

.mirror-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.mirror-option {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.mirror-option:hover {
  border-color: var(--clr-teal);
  transform: translateY(-3px);
}
.mirror-option h4 {
  color: var(--clr-teal);
  margin-bottom: 8px;
}
.mirror-option p {
  font-size: 0.82rem;
  color: var(--clr-muted);
}

.mirror-check-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.reg-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.reg-method-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.reg-method-card:hover {
  border-color: var(--clr-pink);
  transform: translateY(-3px);
}
.reg-method-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}
.reg-method-card h4 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.reg-method-card p {
  font-size: 0.78rem;
  color: var(--clr-muted);
  margin: 0;
}

.section-title {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--clr-white);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-pink), var(--clr-teal));
  border-radius: 2px;
}

.content-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 24px;
}
.content-block h2 {
  color: var(--clr-pink);
  margin-top: 1.5rem;
}
.content-block h2:first-child {
  margin-top: 0;
}
.content-block h3 {
  color: var(--clr-teal);
  margin-top: 1.2rem;
}
.content-block p {
  color: var(--clr-light);
  line-height: 1.7;
}
.content-block a {
  color: var(--clr-teal);
}
.content-block ul,
.content-block ol {
  color: var(--clr-light);
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  overflow-x: auto;
  display: block;
}
.content-block table th {
  background: rgba(245, 50, 179, 0.15);
  color: var(--clr-pink);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--clr-border);
}
.content-block table td {
  padding: 9px 14px;
  border: 1px solid var(--clr-border);
  color: var(--clr-light);
}

.js-slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.45s ease;
  gap: 16px;
}

.slider-track .bonus-card,
.slider-track .game-card {
  flex: 0 0 calc(33.33% - 16px * 2 / 3);
  min-width: 0;
}

.slider-track.games-grid,
.slider-track.bonus-cards {
  display: flex;
  grid-template-columns: none;
}

.slider-arrows {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
.slider-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  color: var(--clr-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.slider-arrow:hover {
  background: var(--clr-pink);
}

.tag {
  background: rgba(33, 209, 180, 0.15);
  color: var(--clr-teal);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-block;
}
.tag--pink {
  background: rgba(245, 50, 179, 0.15);
  color: var(--clr-pink);
}

.video-block {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  line-height: 0;
}
.video-block iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

.app-download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.wp-c0ntent-l0ad {
  display: none;
}
.entry-meta {
  display: none;
  visibility: hidden;
}
.elementor-hidden {
  display: none;
}

.mt1 {
  margin-top: 1rem;
}
.mt2 {
  margin-top: 2rem;
}
.mb1 {
  margin-bottom: 1rem;
}
.mb2 {
  margin-bottom: 2rem;
}
.text-center {
  text-align: center;
}
.text-pink {
  color: var(--clr-pink);
}
.text-teal {
  color: var(--clr-teal);
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.full-width {
  width: 100%;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .games-grid:not(.slider-track) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-header-btns {
    display: flex;
  }
  .header-actions .btn {
    display: none;
  }
  .header-online {
    display: none;
  }

  .hero-content {
    padding: 32px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .games-grid:not(.slider-track) {
    grid-template-columns: repeat(2, 1fr);
  }
  .slider-track {
    gap: 0;
  }
  .slider-track .bonus-card,
  .slider-track .game-card {
    flex: 0 0 100%;
  }
  .slider-arrows {
    display: flex;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .author-block {
    flex-direction: column;
    text-align: center;
  }
  .author-socials {
    justify-content: center;
  }
  .bottom-widget {
    flex-wrap: wrap;
    gap: 8px;
  }
  .video-block iframe {
    height: 220px;
  }
  .popup-iframe {
    height: 260px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .bonus-cards:not(.slider-track) {
    grid-template-columns: 1fr;
  }
  .mirror-block {
    grid-template-columns: 1fr 1fr;
  }
  .jackpot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .alt-brands {
    grid-template-columns: repeat(2, 1fr);
  }
  .btn--lg {
    white-space: normal;
    text-align: center;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .games-grid:not(.slider-track) {
    grid-template-columns: 1fr 1fr;
  }
  .mirror-block {
    grid-template-columns: 1fr;
  }
  .jackpot-grid {
    grid-template-columns: 1fr;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-slider {
    min-height: 280px;
  }
  .content-block {
    padding: 20px;
  }
  .box {
    padding: 16px;
  }
  .promo-code-val {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
}

@media (min-width: 769px) {
  .content-block table {
    display: table;
  }
}
