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

:root {
  --color-header: #200f39;
  --color-footer: #200f39;
  --color-bg: #180b29;
  --color-btn-login: #2b154e;
  --color-btn-reg: #6b34cc;
  --color-text: #e8e0f5;
  --color-text-muted: #a98fcc;
  --color-accent: #6b34cc;
  --color-accent-light: #8b5cf6;
  --color-border: rgba(107, 52, 204, 0.3);
  --color-card: #1e1035;
  --color-card-hover: #261445;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(107, 52, 204, 0.15);
  --shadow-hover: 0 8px 40px rgba(107, 52, 204, 0.3);
  --transition: 0.3s ease;
  --font-main: "Montserrat", Arial, Helvetica, sans-serif;
  --font-body: "Roboto", Arial, Helvetica, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: var(--color-accent-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: #fff;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}
h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--login {
  background: var(--color-btn-login);
  color: #e8e0f5;
  border: 1px solid rgba(107, 52, 204, 0.5);
}
.btn--login:hover {
  background: #3a1d6e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn--reg {
  background: var(--color-btn-reg);
  color: #fff;
}
.btn--reg:hover {
  background: #7c42e0;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 52, 204, 0.5);
}

.btn--bonus {
  background: linear-gradient(135deg, #6b34cc, #8b5cf6);
  color: #fff;
  font-size: 0.9rem;
  padding: 12px 28px;
}
.btn--bonus:hover {
  background: linear-gradient(135deg, #7c42e0, #9d6eff);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 52, 204, 0.6);
}

.btn--primary {
  background: var(--color-btn-reg);
  color: #fff;
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}
.btn--primary:hover {
  background: #7c42e0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 52, 204, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 10px 22px;
}
.btn--outline:hover {
  border-color: var(--color-accent);
  color: #fff;
  background: rgba(107, 52, 204, 0.1);
}

.site-header {
  background: var(--color-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-logo img {
  height: 64px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(4000%)
    hue-rotate(300deg) brightness(95%) contrast(105%);
}
.header-logo a {
  display: flex;
  align-items: center;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.header-nav a {
  color: #c4a8f0;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: #fff;
  background: rgba(107, 52, 204, 0.2);
}

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

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 6px #4ade80;
  }
  50% {
    box-shadow:
      0 0 14px #4ade80,
      0 0 4px #4ade80;
  }
}

.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: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900;
}
.mobile-menu-overlay.active {
  display: block;
}

@media (max-width: 900px) {
  .burger-btn {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-header);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 72px 24px 24px;
    gap: 4px;
    z-index: 1050;
    transition: left var(--transition);
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
  }

  .header-nav.nav-open {
    left: 0;
  }

  .header-nav a {
    width: 100%;
    font-size: 1rem;
    padding: 12px 16px;
  }
}

@media (max-width: 600px) {
  .site-header .container {
    gap: 10px;
  }
  .header-logo img {
    height: 36px;
  }
  .online-count {
    display: none;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  background: linear-gradient(135deg, #180b29 0%, #200f39 50%, #2b154e 100%);
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

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

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

.hero-slide-content h1,
.hero-slide-content .h1-hero {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-slide-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #d4b8ff;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6b34cc, #8b5cf6);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(107, 52, 204, 0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--color-accent);
  width: 24px;
  border-radius: 4px;
}

.slider-arrows {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 10;
}

.slider-arrow {
  pointer-events: all;
  width: 40px;
  height: 40px;
  background: rgba(107, 52, 204, 0.5);
  border: 1px solid rgba(107, 52, 204, 0.6);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--color-accent);
}

.section {
  padding: 56px 0;
}
.section-sm {
  padding: 32px 0;
}
.section-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: #fff;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 14px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #6b34cc, #8b5cf6);
  border-radius: 2px;
}

.section-title.center {
  text-align: center;
}
.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.box {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

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

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

.info-table {
  width: 100%;
  min-width: 360px;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.info-table tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.info-table tr:last-child {
  border-bottom: none;
}
.info-table tr:hover {
  background: rgba(107, 52, 204, 0.08);
}

.info-table td {
  padding: 13px 18px;
  vertical-align: middle;
  text-align: left;
}

.info-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
  font-family: var(--font-main);
  font-size: 0.85rem;
  white-space: nowrap;
  width: 40%;
}

.info-table td:last-child {
  color: #fff;
  font-weight: 500;
}

.rating-stars {
  color: #f59e0b;
  font-size: 1.1rem;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.screenshot-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}
.screenshot-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}
.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (max-width: 600px) {
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
  .screenshot-item img {
    height: 180px;
  }
}

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

.app-download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-btn-login);
  border: 1px solid var(--color-border);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.app-download-btn:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.app-download-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.demo-wrap {
  position: relative;
  padding-bottom: 66.25%;
  height: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.demo-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.content-block {
  line-height: 1.8;
}
.content-block h2 {
  color: #fff;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.content-block h3 {
  color: #d4b8ff;
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}
.content-block p {
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.content-block ul,
.content-block ol {
  margin: 1rem 0 1rem 1.5rem;
}
.content-block li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--color-text);
}
.content-block a {
  color: var(--color-accent-light);
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.content-block table th {
  background: rgba(107, 52, 204, 0.3);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.88rem;
}
.content-block table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.content-block table tr:last-child td {
  border-bottom: none;
}
.content-block blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 12px 20px;
  background: rgba(107, 52, 204, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: #d4b8ff;
}
.content-block strong {
  color: #fff;
  font-weight: 600;
}

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

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

.faq-item.open {
  border-color: var(--color-accent);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  transition: background var(--transition);
  user-select: none;
}

.faq-question:hover {
  background: rgba(107, 52, 204, 0.1);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(107, 52, 204, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--color-accent-light);
}

.faq-item.open .faq-icon {
  background: var(--color-accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-item.open .faq-answer {
  padding: 0 22px 20px;
  max-height: 500px;
}
.faq-answer p {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

.site-footer {
  background: var(--color-footer);
  padding: 48px 0 24px;
  margin-top: auto;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-border);
}

.footer-logo img {
  height: 44px;
  margin-bottom: 16px;
  filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(4000%)
    hue-rotate(300deg) brightness(95%) contrast(105%);
}
.footer-logo p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: #c4a8f0;
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: #fff;
}

.footer-payments {
  padding: 24px 0;
}
.footer-payments p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  transition: all var(--transition);
}
.payment-badge:hover {
  background: rgba(107, 52, 204, 0.2);
  border-color: var(--color-accent);
}

.providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.provider-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-legal-links a {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-legal-links a:hover {
  color: #fff;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(169, 143, 204, 0.5);
  margin-top: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.widget-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: linear-gradient(135deg, #1a0b35, #200f39);
  border-top: 2px solid var(--color-accent);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 30px rgba(107, 52, 204, 0.4);
  animation: widget-in 0.6s ease both;
}

@keyframes widget-in {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.widget-text {
  flex: 1;
}
.widget-text p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.3;
}
.widget-text strong {
  font-family: var(--font-main);
  font-size: 1rem;
  color: #fff;
  display: block;
}

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

.widget-sticky .btn--bonus {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .widget-sticky {
    flex-wrap: wrap;
    padding: 12px 16px;
  }
  .widget-sticky .btn--bonus {
    width: 100%;
    justify-content: center;
  }
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6b34cc, #8b5cf6);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent);
}

.bonus-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.bonus-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #fff;
}

.bonus-card .bonus-amount {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent-light);
  margin: 12px 0;
}

.bonus-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0 0 16px;
}

.promo-accent {
  background: linear-gradient(135deg, #1e1035, #2b154e);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-accent::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #6b34cc, #8b5cf6, #6b34cc);
  z-index: -1;
  animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed var(--color-accent);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  margin: 16px 0;
  font-family: monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all var(--transition);
}

.promo-code-display:hover {
  background: rgba(107, 52, 204, 0.2);
}

.copy-btn {
  background: var(--color-accent);
  border: none;
  border-radius: 6px;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-family: var(--font-main);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.copy-btn:hover {
  background: var(--color-accent-light);
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.9rem;
}

.compare-table thead tr {
  background: linear-gradient(135deg, #2b154e, #200f39);
}
.compare-table thead th {
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.88rem;
  text-align: left;
}
.compare-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.compare-table tbody tr:last-child {
  border-bottom: none;
}
.compare-table tbody tr:hover {
  background: rgba(107, 52, 204, 0.07);
}
.compare-table tbody td {
  padding: 13px 18px;
  color: var(--color-text);
}
.compare-table tbody td:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
}

.check-icon {
  color: #4ade80;
  font-weight: 700;
}
.cross-icon {
  color: #f87171;
  font-weight: 700;
}

.breadcrumbs {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.breadcrumbs a:hover {
  color: #fff;
}
.breadcrumbs span {
  color: var(--color-text-muted);
}
.breadcrumbs .current {
  color: var(--color-text);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b34cc, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.93rem;
  color: #fff;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.review-stars svg {
  width: 14px;
  height: 14px;
  fill: #f59e0b;
}
.review-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.review-form-wrap {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.review-form-wrap h3 {
  margin-bottom: 20px;
  color: #fff;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  font-family: var(--font-main);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.93rem;
  transition:
    border-color var(--transition),
    background var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(107, 52, 204, 0.08);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(169, 143, 204, 0.5);
}

.form-success {
  display: none;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: #4ade80;
  font-weight: 500;
  text-align: center;
  margin-top: 16px;
}
.form-success.show {
  display: block;
}

.author-block {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  flex-shrink: 0;
  overflow: hidden;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}
.author-info p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 10px;
}

.author-social {
  display: flex;
  gap: 10px;
}
.author-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent-light);
  font-size: 0.83rem;
  font-weight: 500;
  transition: color var(--transition);
  text-decoration: none;
}
.author-social a:hover {
  color: #fff;
}
.author-badge {
  display: inline-block;
  font-size: 0.72rem;
  padding: 3px 10px;
  background: rgba(107, 52, 204, 0.2);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .author-block {
    flex-direction: column;
  }
  .author-avatar {
    width: 64px;
    height: 64px;
  }
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}

.slot-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.slot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent);
}

.slot-card-img {
  position: relative;
  height: 130px;
  overflow: hidden;
}
.slot-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.slot-card:hover .slot-card-img img {
  transform: scale(1.08);
}

.slot-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.slot-card:hover .slot-card-overlay {
  opacity: 1;
}

.slot-card-overlay span {
  background: var(--color-accent);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.85rem;
}

.slot-card-info {
  padding: 12px;
}
.slot-card-info h4 {
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slot-card-info p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin: 0;
}

.jackpot-block {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.jackpot-card {
  background: linear-gradient(135deg, #1e1035, #2b154e);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jackpot-card::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(107, 52, 204, 0.2);
}

.jackpot-card h4 {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.jackpot-amount {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 6px;
  animation: count-up 2s ease;
}
.jackpot-game {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

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

.alt-app-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
}
.alt-app-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.alt-app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6b34cc, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.alt-app-info h4 {
  font-size: 0.93rem;
  color: #fff;
  margin-bottom: 4px;
}
.alt-app-info p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0;
}

.tech-table-wrap {
  overflow-x: auto;
}

.tech-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.tech-table tr {
  border-bottom: 1px solid var(--color-border);
}
.tech-table tr:last-child {
  border-bottom: none;
}
.tech-table td {
  padding: 12px 16px;
  vertical-align: top;
}
.tech-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
  font-family: var(--font-main);
  font-size: 0.82rem;
  width: 45%;
}
.tech-table td:last-child {
  color: var(--color-text);
}

.bonus-reg-card {
  background: linear-gradient(135deg, #1e1035, #2b154e);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.bonus-reg-amount {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.bonus-reg-amount span {
  font-size: 1rem;
  display: block;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-top: 4px;
}
.bonus-reg-text {
  flex: 1;
  min-width: 200px;
}
.bonus-reg-text p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.wp-hidden {
  display: none;
  visibility: hidden;
}
.wp-embed-placeholder {
  position: absolute;
  left: -9999px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .card-grid-3 {
    grid-template-columns: 1fr;
  }
}

.mobile-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) transparent;
}

.mobile-slider > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.mobile-slider::-webkit-scrollbar {
  height: 4px;
}
.mobile-slider::-webkit-scrollbar-track {
  background: transparent;
}
.mobile-slider::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 2px;
}

@media (max-width: 640px) {
  .card-grid-3 {
    display: flex;
  }
  .card-grid-3 {
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .card-grid-3 > * {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
  .bonus-cards {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .bonus-cards > * {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
}

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

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.tag {
  background: rgba(107, 52, 204, 0.15);
  border: 1px solid rgba(107, 52, 204, 0.3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.78rem;
  color: #c4a8f0;
  font-family: var(--font-main);
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hero-stat {
  text-align: center;
}
.hero-stat-value {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.section-intro {
  max-width: 680px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .box {
    padding: 20px;
  }
  .box-sm {
    padding: 16px;
  }
  .section {
    padding: 36px 0;
  }
  .promo-accent {
    padding: 24px;
  }
  .bonus-reg-card {
    padding: 24px;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    gap: 20px;
  }
  .author-info p {
    font-size: 0.83rem;
  }
  .compare-table {
    font-size: 0.82rem;
  }
  .info-table td {
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
  .btn--primary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  .hero-slide-content {
    padding: 40px 0;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jackpot-block {
    grid-template-columns: repeat(2, 1fr);
  }
}

.xb3f9 {
  font-size: 0;
  display: none;
}
.wc-block-components-dummy {
  display: none;
}
.elementor-invisible {
  visibility: hidden;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease both;
}
.fade-up {
  animation: fadeInUp 0.6s ease both;
}

.section[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.section[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.technical-content {
  max-width: 860px;
}
.technical-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.technical-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  color: #d4b8ff;
}
.technical-content ul {
  margin: 0.8rem 0 0.8rem 1.5rem;
}
.technical-content li {
  margin-bottom: 0.5rem;
  color: var(--color-text);
  line-height: 1.7;
}
.technical-content p {
  color: var(--color-text);
  line-height: 1.8;
}

.app-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.app-spec-grid > div {
  min-width: 0;
}

.app-spec-grid .tech-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.app-spec-grid .tech-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.app-spec-grid .tech-table td {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 768px) {
  .app-spec-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .app-spec-grid .tech-table td {
    padding: 11px 10px;
    font-size: 0.82rem;
  }

  .app-spec-grid .tech-table td:first-child {
    width: 42%;
    font-size: 0.76rem;
  }
}

@media (max-width: 420px) {
  .app-spec-grid .tech-table td {
    padding: 10px 8px;
  }
}
