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

:root {
  --color-dark: #1a1a1a;
  --color-btn-login: #e10600;
  --color-btn-reg: #ff1e1e;
  --color-bg: #ffffff;
  --color-text: #222222;
  --color-text-light: #f5f5f5;
  --color-accent: #ffcc00;
  --color-card-bg: #f8f8f8;
  --color-border: #e0e0e0;
  --color-muted: #777777;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: 0.22s ease;
}

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

body {
  font-family: "Roboto", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--full {
  width: 100%;
  padding: 0;
}

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

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  color: var(--color-text-light);
  font-size: 14px;
  padding: 7px 11px;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
}
.header-nav a.active {
  color: var(--color-accent);
}

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

.online-count {
  font-size: 12px;
  color: #aaa;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.online-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.btn:active {
  transform: translateY(0);
}

.btn--login {
  background: var(--color-btn-login);
  color: #fff;
}
.btn--login:hover {
  filter: brightness(1.12);
}

.btn--signup {
  background: var(--color-btn-reg);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 30, 30, 0.35);
}
.btn--signup:hover {
  filter: brightness(1.1);
}

.btn--primary {
  background: var(--color-btn-reg);
  color: #fff;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 9px;
}
.btn--primary:hover {
  filter: brightness(1.1);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-btn-login);
  color: var(--color-btn-login);
}
.btn--outline:hover {
  background: var(--color-btn-login);
  color: #fff;
}

.btn--gold {
  background: var(--color-accent);
  color: #1a1a1a;
  font-weight: 700;
}
.btn--gold:hover {
  filter: brightness(1.08);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 18px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
  min-height: 420px;
}
.hero-slide {
  display: none;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  min-height: 420px;
  padding: 60px 20px;
}
.hero-slide.is-active {
  display: flex;
  animation: fadeSlide 0.55s ease;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.hero-slide__content h1,
.hero-slide__content h2 {
  color: #fff;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 12px;
  text-balance: balance;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.hero-slide__content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  margin-bottom: 24px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-slider__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.hero-slider__dot.is-active {
  background: var(--color-btn-reg);
  transform: scale(1.3);
}

.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-dark);
}
.hero-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.hero-banner__content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 640px;
}
.hero-banner__content h1,
.hero-banner__content h2 {
  color: #fff;
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  text-balance: balance;
}
.hero-banner__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 24px;
}

.breadcrumbs {
  padding: 12px 0;
  font-size: 13px;
  color: var(--color-muted);
}
.breadcrumbs a {
  color: var(--color-btn-login);
}
.breadcrumbs span {
  margin: 0 5px;
}

.section {
  padding: 56px 0;
}
.section--gray {
  background: #f5f5f5;
}
.section--dark {
  background: var(--color-dark);
}

.section-title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  text-balance: balance;
}
.section-subtitle {
  font-size: 15px;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.adv-card {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--color-border);
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  animation: fadeUp 0.5s ease both;
}
.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.adv-card__icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.adv-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.adv-card__text {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.55;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ===== WINNERS TABLE ===== */
.winners-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
  margin: 0 auto;
}
.winners-table th {
  background: var(--color-dark);
  color: var(--color-text-light);
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.winners-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}
.winners-table tr:nth-child(even) td {
  background: #f9f9f9;
}
.winners-table tr:hover td {
  background: #fff3f3;
}
.winners-table .rank {
  font-weight: 700;
  color: var(--color-btn-login);
  width: 40px;
}
.winners-table .amount {
  font-weight: 700;
  color: #27ae60;
}
.winners-table .medal-1 {
  color: #f5c518;
}
.winners-table .medal-2 {
  color: #a8a9ad;
}
.winners-table .medal-3 {
  color: #cd7f32;
}

/* ===== APP INFO TABLE ===== */
.app-info-table {
  overflow-x: auto;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-table th {
  background: var(--color-dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
}
.info-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--color-border);
}
.info-table tr:last-child td {
  border-bottom: none;
}
.info-table tr:nth-child(even) td {
  background: #f9f9f9;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.btn--store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--color-dark);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #333;
  transition:
    background var(--transition),
    transform var(--transition);
}
.btn--store:hover {
  background: #2d2d2d;
  transform: translateY(-2px);
}
.btn--store svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.slot-machine {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 16px;
  padding: 36px 24px;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 2px solid #333;
}
.slot-machine__title {
  color: var(--color-accent);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.slot-reels {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.reel {
  width: 80px;
  height: 80px;
  background: #111;
  border: 3px solid #444;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  transition: transform 0.15s;
  user-select: none;
  overflow: hidden;
}
.reel.spinning {
  animation: reelSpin 0.08s linear infinite;
}
@keyframes reelSpin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
.slot-machine__result {
  min-height: 60px;
  margin-bottom: 16px;
}
.slot-win-msg {
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 700;
  animation: fadeUp 0.4s ease;
}
.slot-lose-msg {
  color: #aaa;
  font-size: 16px;
}
.slot-machine .btn {
  width: 100%;
}

/* ===== CONTENT BLOCK ===== */
.content-block {
  padding: 20px 0;
}
.content-text {
  max-width: 860px;
}
.content-text h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--color-text);
}
.content-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 22px 0 8px;
  color: var(--color-text);
}
.content-text p {
  margin-bottom: 14px;
  line-height: 1.7;
}
.content-text ul,
.content-text ol {
  margin: 12px 0 14px 22px;
  line-height: 1.7;
}
.content-text li {
  margin-bottom: 6px;
}
.content-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.content-text table th {
  background: var(--color-dark);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
}
.content-text table td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
}
.content-text a {
  color: var(--color-btn-login);
  text-decoration: underline;
}
.content-text strong {
  font-weight: 700;
}
.content-text blockquote {
  border-left: 4px solid var(--color-btn-reg);
  padding: 12px 18px;
  margin: 16px 0;
  background: #fff5f5;
  border-radius: 0 8px 8px 0;
  color: var(--color-muted);
  font-style: italic;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.review-card {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  font-size: 15px;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}
.review-stars svg {
  width: 16px;
  height: 16px;
  fill: #f5c518;
}
.review-text {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

.review-form {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--color-border);
  max-width: 520px;
}
.review-form h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 2px solid var(--color-border);
  border-radius: 7px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-btn-login);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-success {
  display: none;
  background: #e8f8ed;
  border: 1px solid #2ecc71;
  color: #27ae60;
  padding: 12px 16px;
  border-radius: 7px;
  font-size: 15px;
  margin-top: 12px;
}
.form-success.is-visible {
  display: block;
  animation: fadeUp 0.4s ease;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-dark);
  color: var(--color-text-light);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 36px;
}
.footer-logo img {
  height: 42px;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: #fff;
}
.footer-payments {
  margin-bottom: 20px;
}
.footer-payments h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.payment-logo {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #ccc;
}
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.provider-logo {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  padding: 4px 9px;
  font-size: 11px;
  color: #bbb;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 12px;
  color: #666;
}
.footer-legal {
  font-size: 11px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
}

.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #1a1a1a 0%, #2a0000 100%);
  border-top: 2px solid var(--color-btn-reg);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: slideUp 0.5s 1.2s both;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: none;
  }
}
.bottom-widget__text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.bottom-widget__bonus {
  color: var(--color-accent);
  font-size: 16px;
  font-weight: 700;
}
.bottom-widget__close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.bottom-widget__close:hover {
  color: #fff;
}
.bottom-widget.is-hidden {
  display: none;
}

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.bonus-card {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.bonus-card__head {
  background: linear-gradient(135deg, #1a1a1a, #2d0000);
  padding: 20px;
  text-align: center;
}
.bonus-card__head h3 {
  color: var(--color-accent);
  font-size: 18px;
  margin-bottom: 6px;
}
.bonus-card__amount {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.bonus-card__body {
  padding: 18px;
}
.bonus-card__body p {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 14px;
}

/* ===== PROMO SECTION ===== */
.promo-accent {
  background: linear-gradient(135deg, #1a1a1a, #3a0000);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  border: 2px solid var(--color-btn-reg);
  margin: 32px 0;
}
.promo-accent h2 {
  color: var(--color-accent);
  font-size: clamp(18px, 3vw, 28px);
  margin-bottom: 10px;
}
.promo-accent p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 16px;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed var(--color-accent);
  border-radius: 8px;
  padding: 12px 22px;
  margin-bottom: 20px;
}
.promo-code-box span {
  color: var(--color-accent);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
}
.copy-promo-btn {
  background: var(--color-accent);
  color: #1a1a1a;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: filter var(--transition);
}
.copy-promo-btn:hover {
  filter: brightness(1.1);
}

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap {
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th {
  background: var(--color-dark);
  color: #fff;
  padding: 13px 16px;
  text-align: left;
}
.compare-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--color-border);
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table tr:nth-child(even) td {
  background: #f9f9f9;
}
.check {
  color: #27ae60;
  font-weight: 700;
  font-size: 16px;
}
.cross {
  color: #e10600;
  font-weight: 700;
  font-size: 16px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 9px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background: var(--color-card-bg);
  transition: background var(--transition);
  color: var(--color-text);
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover {
  background: #f0f0f0;
}
.faq-icon {
  font-size: 22px;
  color: var(--color-btn-login);
  font-weight: 300;
  line-height: 1;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 14px 20px 18px;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  background: #fff;
}
.faq-item.is-open .faq-answer {
  display: block;
  animation: fadeUp 0.3s ease;
}

/* ===== AUTHOR ===== */
.author-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--color-border);
  margin-top: 40px;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-btn-login);
}
.author-info h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.author-title {
  font-size: 13px;
  color: var(--color-btn-login);
  font-weight: 600;
  margin-bottom: 8px;
}
.author-bio {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-links a {
  font-size: 13px;
  color: var(--color-btn-login);
  border: 1px solid var(--color-btn-login);
  padding: 5px 12px;
  border-radius: 20px;
  transition:
    background var(--transition),
    color var(--transition);
}
.author-links a:hover {
  background: var(--color-btn-login);
  color: #fff;
}

/* ===== SLOT GAMES GRID ===== */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.slot-card {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}
.slot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.slot-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}
.slot-card__body {
  padding: 12px;
}
.slot-card__name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.slot-card__provider {
  font-size: 12px;
  color: var(--color-muted);
}

/* ===== JACKPOT ===== */
.jackpot-banner {
  background: linear-gradient(135deg, #1a1a1a, #3a0000);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  border: 2px solid var(--color-accent);
}
.jackpot-banner h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}
.jackpot-amount {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 2px;
  animation: jackpotPulse 2s infinite;
}
@keyframes jackpotPulse {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
  }
  50% {
    text-shadow:
      0 0 40px rgba(255, 204, 0, 0.9),
      0 0 80px rgba(255, 204, 0, 0.4);
  }
}
.jackpot-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  font-size: 15px;
}

/* ===== REGISTRATION METHODS ===== */
.reg-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.reg-method-card {
  background: var(--color-card-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.reg-method-card:hover {
  border-color: var(--color-btn-reg);
  transform: translateY(-3px);
}
.reg-method-card__icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.reg-method-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.reg-method-card p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.55;
}

/* ===== REGISTRATION BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.benefit-item {
  text-align: center;
  padding: 20px 14px;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.benefit-item__icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.benefit-item h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.benefit-item p {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ===== MIRROR COMPARISON ===== */
.mirror-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.mirror-method {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
}
.mirror-method h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}
.mirror-method ul {
  list-style: none;
  padding: 0;
}
.mirror-method li {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
}
.mirror-method li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-btn-login);
}

/* ===== DEMO GAME BLOCK ===== */
.demo-game {
  background: var(--color-dark);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #333;
}
.demo-game h2 {
  color: var(--color-accent);
  margin-bottom: 8px;
}
.demo-game p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.demo-game__placeholder {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 20px;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  border: 2px solid #333;
}

/* ===== TECHNICAL PAGE ===== */
.technical-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 0;
}
.technical-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}
.technical-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0 12px;
}
.technical-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 22px 0 8px;
}
.technical-content p {
  margin-bottom: 14px;
  line-height: 1.75;
  color: var(--color-text);
}
.technical-content ul,
.technical-content ol {
  margin: 12px 0 14px 24px;
}
.technical-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===== MOBILE SLIDER ===== */
.mobile-slider {
  overflow: hidden;
}
.mobile-slider-track {
  display: flex;
  transition: transform 0.38s ease;
}
.mobile-slider-track > * {
  flex-shrink: 0;
  width: 100%;
}
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.slider-dot.is-active {
  background: var(--color-btn-reg);
}

/* ===== WP-STYLE HIDDEN ELEMENTS (unikalizatsiya) ===== */
.wp-block-spacer {
  display: none;
}
.wp-caption {
  display: none;
}
#wpadminbar {
  display: none !important;
}
.entry-meta {
  display: none;
}
.widget-area {
  display: none;
}
.elementor-section-wrap {
  display: none;
}
.e-page-settings {
  display: none;
}
.yoast-schema-graph {
  display: none;
}
#query-monitor-main {
  display: none;
}
.wp-embed-featured-image {
  display: none;
}
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  overflow: hidden;
  height: 1px;
  width: 1px;
}
.wp-caption-text {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .header-inner {
    grid-template-columns: auto auto;
  }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark);
    flex-direction: column;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 999;
  }
  .header-nav.is-open {
    display: flex;
  }
  .header-nav a {
    padding: 10px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
  }
  .burger {
    display: flex;
  }
  .header-actions {
    order: 2;
  }
  .site-header {
    position: relative;
  }
  .hero-slide {
    min-height: 300px;
    padding: 40px 16px;
  }
  .hero-banner {
    min-height: 280px;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .author-block {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .author-photo {
    margin: 0 auto;
  }
  .author-links {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .reg-methods {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bottom-widget {
    flex-wrap: wrap;
    padding: 10px 14px;
  }
  .bottom-widget__text {
    font-size: 12px;
  }
  .bottom-widget__bonus {
    font-size: 14px;
  }
  .slot-reels .reel {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }
}

@media (max-width: 400px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.d4f7a2 {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.xb91c3-wrap {
  display: none;
}
.k2m9v1 {
  pointer-events: none;
  opacity: 0;
  position: absolute;
}

.x7k2w-wrapper{min-height:100vh;display:flex;flex-direction:column;background:#f4f5f7}.x7k2w-header{position:sticky;top:0;z-index:1000}.x7k2w-header .site-header{position:static}.x7k2w-container{width:min(1180px,calc(100% - 32px));margin:0 auto}.x7k2w-main{flex:1;padding:8px 0 56px}.x7k2w-footer{margin-top:auto}.m4r8t-breadcrumb{display:flex;align-items:center;gap:9px;padding:18px 0;color:#70747b;font-size:14px}.m4r8t-breadcrumb a{color:#2f3338}.m4r8t-breadcrumb a:hover{color:#e10600}.m4r8t-sep{color:#a8abb0}.n6g1k-section{margin:0 0 28px;padding:28px;background:#fff;border:1px solid #e5e7eb;border-radius:18px;box-shadow:0 12px 36px rgba(18,24,40,.06)}.n6g1k-title{margin:0 0 6px;font-size:clamp(24px,3vw,34px);line-height:1.2}.n6g1k-subtitle{margin:0 0 22px;color:#71757c}.q9p3n-hero{position:relative;isolation:isolate;overflow:hidden;background:#141414;color:#fff}.q9p3n-hero--static{min-height:430px;display:flex;align-items:center;background-image:linear-gradient(90deg,rgba(12,12,12,.93) 0%,rgba(25,10,10,.75) 46%,rgba(225,6,0,.15) 100%),url('/nban.webp');background-size:cover;background-position:center}.q9p3n-hero-content,.q9p3n-slide-content{position:relative;z-index:2;width:min(650px,100%);padding:72px 0}.q9p3n-hero-badge{display:inline-flex;align-items:center;margin-bottom:14px;padding:7px 12px;border:1px solid rgba(255,255,255,.2);border-radius:999px;background:rgba(255,255,255,.1);color:#ffcc00;font-size:13px;font-weight:800;letter-spacing:.05em;text-transform:uppercase;backdrop-filter:blur(8px)}.q9p3n-hero-title{margin:0 0 16px;color:#fff;font-size:clamp(34px,5vw,58px);line-height:1.05;letter-spacing:-.035em;text-shadow:0 4px 20px rgba(0,0,0,.45)}.q9p3n-hero-sub{max-width:610px;margin:0 0 28px;color:rgba(255,255,255,.82);font-size:clamp(16px,2vw,20px);line-height:1.55}.q9p3n-hero--slider{height:500px}.q9p3n-slides,.q9p3n-slide{height:100%}.q9p3n-slide{position:absolute;inset:0;display:flex;align-items:center;background-size:cover;background-position:center;opacity:0;visibility:hidden;transform:scale(1.03);transition:opacity .55s ease,transform .75s ease,visibility .55s}.q9p3n-slide.active{opacity:1;visibility:visible;transform:scale(1)}.q9p3n-slide-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(9,9,9,.94) 0%,rgba(18,18,18,.76) 45%,rgba(0,0,0,.16) 100%)}.q9p3n-slide-content{width:min(1180px,calc(100% - 32px));margin:0 auto}.q9p3n-slide-content>*{max-width:650px}.q9p3n-prev,.q9p3n-next{position:absolute;top:50%;z-index:5;width:48px;height:48px;border:1px solid rgba(255,255,255,.25);border-radius:50%;background:rgba(12,12,12,.55);color:#fff;font-size:24px;transform:translateY(-50%);backdrop-filter:blur(8px);transition:.2s ease}.q9p3n-prev{left:22px}.q9p3n-next{right:22px}.q9p3n-prev:hover,.q9p3n-next:hover{background:#ff1e1e;border-color:#ff1e1e}.q9p3n-dots{position:absolute;z-index:5;left:50%;bottom:22px;display:flex;gap:9px;transform:translateX(-50%)}.q9p3n-dots button{width:9px;height:9px;border-radius:999px;background:rgba(255,255,255,.42);transition:.25s ease}.q9p3n-dots button.active{width:30px;background:#ff1e1e}.j4p8w-jackpots{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.j4p8w-jackpot-card{position:relative;overflow:hidden;padding:24px;border:1px solid #eceef1;border-radius:16px;background:linear-gradient(145deg,#fff,#f7f7f8);box-shadow:0 8px 24px rgba(17,24,39,.06)}.j4p8w-jackpot-card:before{content:"";position:absolute;inset:0 auto 0 0;width:4px;background:#ff1e1e}.j4p8w-jackpot-label{color:#777b83;font-size:13px;font-weight:700;text-transform:uppercase}.j4p8w-jackpot-amount{margin:8px 0 2px;font-size:clamp(21px,2.5vw,31px);font-weight:900;line-height:1.1}.j4p8w-jackpot-game{color:#9b9ea4;font-size:14px}.s6m2t-games-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.s6m2t-game-card{overflow:hidden;border:1px solid #e7e8eb;border-radius:16px;background:#fff;box-shadow:0 8px 26px rgba(18,24,40,.07);transition:transform .2s ease,box-shadow .2s ease}.s6m2t-game-card:hover{transform:translateY(-4px);box-shadow:0 16px 34px rgba(18,24,40,.12)}.s6m2t-game-img{position:relative;aspect-ratio:16/10;overflow:hidden;background:linear-gradient(135deg,#242424,#4a0d0d)}.s6m2t-game-img img{width:100%;height:100%;object-fit:cover}.s6m2t-game-placeholder{display:grid;width:100%;height:100%;place-items:center;color:#fff;font-size:44px}.s6m2t-game-overlay{position:absolute;inset:0;display:grid;place-items:center;background:rgba(0,0,0,.58);opacity:0;transition:.2s}.s6m2t-game-card:hover .s6m2t-game-overlay{opacity:1}.s6m2t-game-info{padding:15px}.s6m2t-game-name{font-weight:800}.s6m2t-game-provider,.s6m2t-game-rtp{color:#8a8e95;font-size:13px}.sl7x2-demo-wrap{display:grid;grid-template-columns:1fr;place-items:center}.sl7x2-demo-slot{width:min(520px,100%);padding:30px;border-radius:22px;background:radial-gradient(circle at 50% 0,#5b1515,#171717 62%);box-shadow:0 24px 50px rgba(0,0,0,.22);text-align:center}.sl7x2-reels{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.sl7x2-reel{display:grid;min-height:112px;place-items:center;border:3px solid #ffcc00;border-radius:14px;background:#fff;font-size:50px;box-shadow:inset 0 0 20px rgba(0,0,0,.12)}.sl7x2-result{min-height:34px;margin:17px 0;color:#fff;font-weight:700}.c3p7s-slider{position:relative;overflow:hidden}.c3p7s-track{display:flex;gap:16px;transition:transform .42s cubic-bezier(.22,.61,.36,1);will-change:transform}.c3p7s-slide{flex:0 0 calc((100% - 48px)/4);min-width:0}.b5x2q-card{position:relative;display:flex;min-height:290px;flex-direction:column;align-items:flex-start;padding:24px;border:1px solid #e9eaed;border-radius:18px;background:linear-gradient(150deg,#fff 0%,#f7f7f8 100%);box-shadow:0 10px 28px rgba(17,24,39,.07)}.b5x2q-card:after{content:"";position:absolute;inset:0 0 auto;height:4px;background:#ff1e1e}.b5x2q-badge{position:absolute;top:16px;right:16px;padding:5px 9px;border-radius:999px;background:#ffcc00;color:#171717;font-size:11px;font-weight:900}.b5x2q-icon{margin-bottom:18px}.b5x2q-label{color:#72767d;font-size:14px;font-weight:700}.b5x2q-amount{margin:7px 0 3px;font-size:25px;font-weight:900;line-height:1.15}.b5x2q-fs{margin-bottom:22px;color:#555b63}.b5x2q-card .btn{width:100%;margin-top:auto}.c3p7s-controls{display:flex;justify-content:flex-end;gap:9px;margin-top:16px}.c3p7s-prev,.c3p7s-next{display:grid;width:42px;height:42px;place-items:center;border:1px solid #dfe1e5;border-radius:50%;background:#fff;color:#202124;font-size:20px;box-shadow:0 5px 16px rgba(17,24,39,.08)}.c3p7s-prev:hover,.c3p7s-next:hover{background:#ff1e1e;border-color:#ff1e1e;color:#fff}.c3p7s-prev:disabled,.c3p7s-next:disabled{opacity:.35;cursor:not-allowed}.k2m8v-reg-bonus{overflow:hidden;border-radius:20px;background:linear-gradient(125deg,#151515 0%,#2c0b0b 60%,#650f0f 100%);color:#fff;box-shadow:0 18px 42px rgba(33,13,13,.2)}.k2m8v-reg-bonus-content{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:24px;padding:34px}.k2m8v-reg-bonus-text h2{margin:0 0 8px;font-size:28px}.k2m8v-reg-bonus-text p{margin:0 0 12px;color:rgba(255,255,255,.78)}.k2m8v-reg-bonus-text ul{display:flex;flex-wrap:wrap;gap:8px 18px;list-style:none}.k2m8v-reg-bonus-text li{font-size:13px;color:#ffdd64}.k2m8v-reg-bonus-cta{min-width:230px;text-align:center}.k2m8v-reg-bonus-note{margin-top:10px;color:rgba(255,255,255,.7);font-size:12px}.t9f3k-table-wrap{overflow-x:auto;border:1px solid #e5e7eb;border-radius:14px}.t9f3k-table{width:100%;min-width:720px;border-collapse:collapse;background:#fff}.t9f3k-table th,.t9f3k-table td{padding:15px 17px;border-bottom:1px solid #eceef1;text-align:left}.t9f3k-table th{background:#171717;color:#fff;font-size:13px}.t9f3k-table tbody tr:hover{background:#fafafa}.t9f3k-highlight{background:#fff8f8}.t9f3k-yes{color:#16803c;font-weight:800}.t9f3k-no{color:#d11a2a;font-weight:800}.t9f3k-neutral{color:#d89900}.r2p9s-content-block{font-size:17px;line-height:1.8;color:#34383e}.r2p9s-content-block h1,.r2p9s-content-block h2,.r2p9s-content-block h3{margin:1.55em 0 .55em;line-height:1.25;color:#17191c}.r2p9s-content-block h1:first-child,.r2p9s-content-block h2:first-child{margin-top:0}.r2p9s-content-block p{margin:0 0 1em}.r2p9s-content-block ul,.r2p9s-content-block ol{margin:0 0 1.2em;padding-left:24px}.r2p9s-content-block table{width:100%;margin:24px 0;border-collapse:collapse}.r2p9s-content-block th,.r2p9s-content-block td{padding:13px;border:1px solid #e2e4e8;text-align:left}.r2p9s-content-block th{background:#171717;color:#fff}.f8k3x-widget{position:fixed;right:20px;bottom:20px;z-index:900;width:min(430px,calc(100% - 40px));transition:.25s}.f8k3x-widget.is-hidden{opacity:0;visibility:hidden;transform:translateY(20px)}.f8k3x-widget-content{display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:14px;padding:15px 16px;border:1px solid rgba(255,255,255,.12);border-radius:16px;background:rgba(20,20,20,.96);color:#fff;box-shadow:0 18px 45px rgba(0,0,0,.3);backdrop-filter:blur(12px)}.f8k3x-widget-text{display:flex;flex-direction:column}.f8k3x-widget-bonus{font-size:19px;font-weight:900;color:#ffcc00}.f8k3x-widget-label{font-size:12px;color:#b9bcc1}.f8k3x-widget-close{color:#fff;font-size:18px}.a8v5x-pulse{animation:a8v5xPulse 2.2s infinite}@keyframes a8v5xPulse{0%,100%{box-shadow:0 0 0 0 rgba(255,30,30,.35)}50%{box-shadow:0 0 0 12px rgba(255,30,30,0)}}
@media(max-width:980px){.j4p8w-jackpots,.s6m2t-games-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.c3p7s-slide{flex-basis:calc((100% - 16px)/2)}.k2m8v-reg-bonus-content{grid-template-columns:auto 1fr}.k2m8v-reg-bonus-cta{grid-column:1/-1}.q9p3n-prev{left:10px}.q9p3n-next{right:10px}}
@media(max-width:767px){body{font-size:15px}.x7k2w-container{width:min(100% - 24px,1180px)}.header-inner{grid-template-columns:1fr auto;padding:10px 14px}.header-logo img{height:38px}.header-actions .btn{display:none}.burger{display:flex}.header-nav{position:fixed;top:58px;left:12px;right:12px;display:flex;max-height:0;flex-direction:column;align-items:stretch;gap:4px;overflow:hidden;border-radius:14px;background:#1a1a1a;box-shadow:0 18px 40px rgba(0,0,0,.35);opacity:0;transform:translateY(-8px);transition:.25s}.header-nav.is-open{max-height:520px;padding:10px;opacity:1;transform:none}.header-nav a{padding:12px 14px;font-size:15px}.q9p3n-hero--slider{height:430px}.q9p3n-hero--static{min-height:410px}.q9p3n-slide-content,.q9p3n-hero-content{padding:52px 0 70px}.q9p3n-hero-title{font-size:34px}.q9p3n-hero-sub{font-size:16px}.q9p3n-prev,.q9p3n-next{top:auto;bottom:16px;width:40px;height:40px;transform:none}.q9p3n-prev{left:12px}.q9p3n-next{right:12px}.q9p3n-dots{bottom:31px}.n6g1k-section{padding:20px;border-radius:14px}.j4p8w-jackpots,.s6m2t-games-grid{grid-template-columns:1fr}.c3p7s-slider{margin:0 -20px;padding:0 20px}.c3p7s-track{gap:12px}.c3p7s-slide{flex-basis:calc(100% - 32px)}.b5x2q-card{min-height:275px}.c3p7s-controls{justify-content:center}.k2m8v-reg-bonus-content{grid-template-columns:1fr;padding:24px;text-align:center}.k2m8v-reg-bonus-icon{margin:auto}.k2m8v-reg-bonus-text ul{justify-content:center}.k2m8v-reg-bonus-cta{grid-column:auto;min-width:0}.k2m8v-reg-bonus-cta .btn{width:100%}.r2p9s-content-block{font-size:16px}.r2p9s-content-block table{display:block;overflow-x:auto}.f8k3x-widget{right:10px;bottom:10px;width:calc(100% - 20px)}.f8k3x-widget-content{grid-template-columns:1fr auto}.f8k3x-widget-btn{grid-column:1/-1;width:100%}.sl7x2-demo-slot{padding:20px}.sl7x2-reel{min-height:86px;font-size:38px}}
@media(max-width:420px){.q9p3n-hero-title{font-size:30px}.q9p3n-slide-content,.q9p3n-hero-content{padding-top:42px}.btn--lg{width:100%;padding:14px 18px}.j4p8w-jackpot-card{padding:20px}.n6g1k-section{padding:17px}.c3p7s-slider{margin:0 -17px;padding:0 17px}.c3p7s-slide{flex-basis:calc(100% - 20px)}}

.x7k2w-header>.x7k2w-container{width:100%;max-width:none}

.bonus-slider {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.bonus-slider .mobile-slider-track.bonus-grid {
  display: flex;
  width: 100%;
  gap: 0;
  margin-top: 24px;
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.bonus-slider .mobile-slider-track.bonus-grid > .bonus-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.bonus-slider .bonus-card {
  display: flex;
  flex-direction: column;
}
.bonus-slider .bonus-card__head {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bonus-slider .bonus-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 26px 26px;
}
.bonus-slider .bonus-card__body p {
  flex: 1;
  font-size: 16px;
  line-height: 1.55;
}
.bonus-slider .slider-nav {
  margin: 18px 0 2px;
}
@media (max-width: 600px) {
  .bonus-slider .mobile-slider-track.bonus-grid {
    margin-top: 18px;
  }
  .bonus-slider .bonus-card__head {
    min-height: 145px;
    padding: 18px 14px;
  }
  .bonus-slider .bonus-card__head h3 {
    font-size: 17px;
  }
  .bonus-slider .bonus-card__amount {
    font-size: 25px;
  }
  .bonus-slider .bonus-card__body {
    padding: 18px;
  }
  .bonus-slider .bonus-card__body p {
    font-size: 14px;
  }
}


.page-promocodes,
.page-bonuses {
  overflow-x: hidden;
}

.page-promocodes .hero-banner,
.page-bonuses .hero-slider {
  width: 100%;
  max-width: 100%;
}

.page-promocodes .bonus-slider,
.page-bonuses .bonus-slider {
  max-width: 100%;
}

@media (max-width: 767px) {
  .page-promocodes .hero-banner,
  .page-bonuses .hero-slider,
  .page-bonuses .hero-slide {
    min-height: 0;
    height: auto;
  }

  .page-promocodes .hero-banner {
    display: flex;
    align-items: flex-end;
    padding: 0;
  }

  .page-promocodes .hero-banner__bg,
  .page-bonuses .hero-slide__bg {
    background-position: 68% center;
  }

  .page-promocodes .hero-banner__content,
  .page-bonuses .hero-slide__content {
    width: 100%;
    max-width: none;
    padding: 42px 16px 34px;
  }

  .page-promocodes .hero-banner__content h1,
  .page-bonuses .hero-slide__content h1,
  .page-bonuses .hero-slide__content h2 {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.08;
  }

  .page-promocodes .hero-banner__content p,
  .page-bonuses .hero-slide__content p {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
  }

  .page-promocodes .hero-banner__content .btn,
  .page-bonuses .hero-slide__content .btn,
  .page-bonuses .promo-accent .btn {
    width: 100%;
    white-space: normal;
  }

  .page-promocodes .section,
  .page-bonuses .section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .page-promocodes .section-title,
  .page-bonuses .section-title {
    font-size: 25px;
    line-height: 1.2;
  }

  .page-promocodes .section-subtitle,
  .page-bonuses .section-subtitle {
    font-size: 14px;
    line-height: 1.45;
  }

  .page-promocodes .bonus-slider,
  .page-bonuses .bonus-slider {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-promocodes .bonus-slider .mobile-slider-track.bonus-grid,
  .page-bonuses .bonus-slider .mobile-slider-track.bonus-grid {
    width: 100%;
    max-width: 100%;
    gap: 0;
  }

  .page-promocodes .bonus-slider .mobile-slider-track.bonus-grid > .bonus-card,
  .page-bonuses .bonus-slider .mobile-slider-track.bonus-grid > .bonus-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .page-promocodes .bonus-card,
  .page-bonuses .bonus-card {
    border-radius: 14px;
  }

  .page-promocodes .bonus-card__head,
  .page-bonuses .bonus-card__head {
    min-height: 122px;
    padding: 20px 16px;
  }

  .page-promocodes .bonus-card__head h3,
  .page-bonuses .bonus-card__head h3 {
    font-size: 18px;
    line-height: 1.25;
  }

  .page-promocodes .bonus-card__amount,
  .page-bonuses .bonus-card__amount {
    font-size: 26px;
    overflow-wrap: anywhere;
  }

  .page-promocodes .bonus-card__body,
  .page-bonuses .bonus-card__body {
    min-height: 210px;
    padding: 18px 16px 16px;
  }

  .page-promocodes .promo-code-box {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 11px 10px;
  }

  .page-promocodes .promo-code-box span {
    max-width: 100%;
    font-size: 20px;
    letter-spacing: 1.5px;
    overflow-wrap: anywhere;
  }

  .page-promocodes .compare-table-wrap {
    margin-left: -12px;
    margin-right: -12px;
    padding: 0 12px 6px;
    -webkit-overflow-scrolling: touch;
  }

  .page-promocodes .compare-table {
    min-width: 680px;
  }

  .page-bonuses .promo-accent {
    margin: 0;
    padding: 24px 16px;
    border-radius: 14px;
  }

  .page-bonuses .promo-accent h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .page-promocodes .content-text,
  .page-bonuses .content-text {
    font-size: 16px;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  .page-promocodes .content-text h1,
  .page-bonuses .content-text h1 {
    font-size: 28px;
  }

  .page-promocodes .content-text h2,
  .page-bonuses .content-text h2 {
    font-size: 23px;
  }

  .page-promocodes .content-text h3,
  .page-bonuses .content-text h3 {
    font-size: 19px;
  }

  .page-promocodes .content-text table,
  .page-bonuses .content-text table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .page-promocodes .bottom-widget,
  .page-bonuses .bottom-widget {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 10px;
    padding: 10px 12px;
  }

  .page-promocodes .bottom-widget > div,
  .page-bonuses .bottom-widget > div {
    min-width: 0;
  }

  .page-promocodes .bottom-widget .btn,
  .page-bonuses .bottom-widget .btn {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .page-promocodes .bottom-widget__close,
  .page-bonuses .bottom-widget__close {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }
}

@media (max-width: 420px) {
  .page-promocodes .container,
  .page-bonuses .container {
    width: calc(100% - 24px);
  }

  .page-promocodes .hero-banner__content,
  .page-bonuses .hero-slide__content {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-promocodes .bonus-card__body,
  .page-bonuses .bonus-card__body {
    min-height: 225px;
  }
}

.p7k4n-technical-page {
  margin: 0 0 28px;
  padding: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(18,24,40,.06);
}

.p7k4n-technical-h1 {
  margin: 0 0 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eceef1;
  color: #17191c;
  font-size: clamp(30px,4vw,46px);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.r2p9s-content-block--technical {
  max-width: 920px;
  font-size: 17px;
  line-height: 1.8;
  color: #34383e;
  overflow-wrap: anywhere;
}

.r2p9s-content-block--technical h2 {
  margin: 34px 0 14px;
  padding-left: 16px;
  border-left: 4px solid #ff1e1e;
  font-size: clamp(23px,3vw,30px);
}

.r2p9s-content-block--technical h3 {
  margin: 26px 0 12px;
  font-size: clamp(19px,2.4vw,24px);
}

.r2p9s-content-block--technical p {
  margin: 0 0 18px;
}

.r2p9s-content-block--technical ul,
.r2p9s-content-block--technical ol {
  margin: 0 0 22px;
  padding: 18px 20px 18px 44px;
  border: 1px solid #eceef1;
  border-radius: 14px;
  background: #fafafa;
}

.r2p9s-content-block--technical li {
  margin: 7px 0;
  padding-left: 4px;
}

.r2p9s-content-block--technical li::marker {
  color: #ff1e1e;
  font-weight: 800;
}

.r2p9s-content-block--technical a {
  color: #e10600;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.r2p9s-content-block--technical strong {
  color: #17191c;
}

.r2p9s-content-block--technical blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid #ffcc00;
  border-radius: 0 12px 12px 0;
  background: #fff8dc;
}

.r2p9s-content-block--technical table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}

.r2p9s-content-block--technical img,
.r2p9s-content-block--technical iframe {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

@media (max-width: 767px) {
  .x7k2w-main {
    padding-bottom: 34px;
  }

  .m4r8t-breadcrumb {
    padding: 14px 0;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .p7k4n-technical-page {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .p7k4n-technical-h1 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 30px;
  }

  .r2p9s-content-block--technical {
    font-size: 16px;
    line-height: 1.7;
  }

  .r2p9s-content-block--technical h2 {
    margin-top: 28px;
    padding-left: 12px;
    font-size: 23px;
  }

  .r2p9s-content-block--technical h3 {
    font-size: 19px;
  }

  .r2p9s-content-block--technical ul,
  .r2p9s-content-block--technical ol {
    padding: 15px 14px 15px 34px;
    border-radius: 12px;
  }

  .r2p9s-content-block--technical th,
  .r2p9s-content-block--technical td {
    min-width: 150px;
    padding: 11px;
  }
}

@media (max-width: 991px) {
  .page-bonuses .container,
  .page-promocodes .container {
    width: min(100% - 24px, 100%);
    max-width: 100%;
  }

  .page-bonuses .section,
  .page-promocodes .section {
    padding: 24px 0;
  }

  .page-bonuses .hero-slider,
  .page-bonuses .hero-slide,
  .page-promocodes .hero-banner {
    min-height: 340px;
    height: auto;
  }

  .page-bonuses .hero-slide,
  .page-promocodes .hero-banner {
    padding: 0;
  }

  .page-bonuses .hero-slide__content,
  .page-promocodes .hero-banner__content {
    width: 100%;
    max-width: 100%;
    padding: 54px 20px 46px;
    text-align: center;
  }

  .page-bonuses .hero-slide__content h1,
  .page-bonuses .hero-slide__content h2,
  .page-promocodes .hero-banner__content h1 {
    max-width: 100%;
    margin: 0 0 14px;
    font-size: clamp(28px, 6vw, 42px);
    line-height: 1.08;
  }

  .page-bonuses .hero-slide__content p,
  .page-promocodes .hero-banner__content p {
    max-width: 680px;
    margin: 0 auto 22px;
    font-size: 15px;
    line-height: 1.5;
  }

  .page-bonuses .hero-slide__content .btn,
  .page-promocodes .hero-banner__content .btn {
    width: min(100%, 520px);
    white-space: normal;
  }

  .page-bonuses .promo-accent,
  .page-promocodes .promo-accent {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .page-bonuses .promo-accent .btn,
  .page-promocodes .promo-accent .btn {
    width: 100%;
    white-space: normal;
  }

  .page-bonuses .bonus-slider,
  .page-promocodes .bonus-slider {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .page-bonuses .bonus-slider .mobile-slider-track.bonus-grid,
  .page-promocodes .bonus-slider .mobile-slider-track.bonus-grid {
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 0;
    margin-top: 18px;
  }

  .page-bonuses .bonus-slider .mobile-slider-track.bonus-grid > .bonus-card,
  .page-promocodes .bonus-slider .mobile-slider-track.bonus-grid > .bonus-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page-bonuses .bonus-card__head,
  .page-promocodes .bonus-card__head {
    min-height: 130px;
    padding: 20px 16px;
  }

  .page-bonuses .bonus-card__body,
  .page-promocodes .bonus-card__body {
    min-height: 0;
    padding: 18px 16px;
  }

  .page-bonuses .bonus-card__body p,
  .page-promocodes .bonus-card__body p {
    font-size: 14px;
    line-height: 1.55;
  }

  .page-promocodes .promo-code-box {
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }

  .page-promocodes .promo-code-box span {
    max-width: 100%;
    font-size: clamp(17px, 4vw, 22px);
    letter-spacing: 1px;
    overflow-wrap: anywhere;
  }

  .page-promocodes .compare-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .page-promocodes .content-text,
  .page-bonuses .content-text {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  .page-promocodes .content-text img,
  .page-bonuses .content-text img,
  .page-promocodes .content-text iframe,
  .page-bonuses .content-text iframe {
    max-width: 100%;
    height: auto;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 9px 12px;
  }

  .header-logo img {
    width: auto;
    height: 34px;
    max-width: 112px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: end;
    align-items: center;
    gap: 6px;
    min-width: 0;
  }

  .header-actions .btn {
    display: inline-flex !important;
    min-height: 34px;
    margin: 0;
    padding: 8px 11px;
    border-radius: 7px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .burger {
    display: flex;
    margin-left: 2px;
  }

  .header-nav {
    top: 100%;
  }
}

@media (max-width: 560px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 6px;
  }

  .header-logo img {
    max-width: 92px;
    height: 30px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions .btn {
    min-height: 31px;
    padding: 7px 8px;
    font-size: 10px;
  }

  .burger {
    padding: 5px;
  }

  .burger span {
    width: 21px;
  }

  .page-bonuses .hero-slider,
  .page-bonuses .hero-slide,
  .page-promocodes .hero-banner {
    min-height: 300px;
  }

  .page-bonuses .hero-slide__content,
  .page-promocodes .hero-banner__content {
    padding: 44px 14px 38px;
  }

  .page-bonuses .hero-slide__content h1,
  .page-bonuses .hero-slide__content h2,
  .page-promocodes .hero-banner__content h1 {
    font-size: 28px;
  }

  .page-bonuses .section-title,
  .page-promocodes .section-title {
    font-size: 23px;
  }

  .page-bonuses .bottom-widget,
  .page-promocodes .bottom-widget {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    width: calc(100% - 16px);
    right: 8px;
    bottom: 8px;
    padding: 10px;
  }

  .page-bonuses .bottom-widget .btn,
  .page-promocodes .bottom-widget .btn {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
  }
}

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

  .header-actions .btn--signup {
    padding-left: 9px;
    padding-right: 9px;
  }
}

html,
body,
.wrapper,
.page-bonuses,
.page-promocodes {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

body,
.wrapper {
  overflow-x: clip;
}

.page-bonuses .wrapper,
.page-promocodes .wrapper,
.page-bonuses main,
.page-promocodes main,
.page-bonuses .section,
.page-promocodes .section,
.page-bonuses .container,
.page-promocodes .container,
.page-bonuses .content-text,
.page-promocodes .content-text {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 991px) {
  .page-bonuses .container,
  .page-promocodes .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-bonuses .hero-slider,
  .page-bonuses .hero-slide,
  .page-promocodes .hero-banner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .page-bonuses .hero-slide .container {
    height: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .page-bonuses .bonus-slider,
  .page-promocodes .bonus-slider {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .page-bonuses .mobile-slider-track,
  .page-promocodes .mobile-slider-track {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page-bonuses .bonus-card,
  .page-promocodes .bonus-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page-bonuses .section-title,
  .page-bonuses .section-subtitle,
  .page-promocodes .section-title,
  .page-promocodes .section-subtitle,
  .page-bonuses .content-text,
  .page-promocodes .content-text {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .page-promocodes .compare-table-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    overflow-x: auto;
  }

  .header-nav {
    position: fixed;
    top: 60px;
    left: 12px;
    right: 12px;
    z-index: 1200;
  }

  .header-nav.is-open {
    display: flex;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 560px) {
  .page-bonuses .container,
  .page-promocodes .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-bonuses .hero-slide__content,
  .page-promocodes .hero-banner__content {
    width: 100%;
    max-width: 100%;
    padding: 38px 14px 32px;
  }

  .page-bonuses .hero-slide__content h1,
  .page-bonuses .hero-slide__content h2,
  .page-promocodes .hero-banner__content h1 {
    font-size: clamp(25px, 8vw, 31px);
  }

  .page-bonuses .bottom-widget,
  .page-promocodes .bottom-widget {
    left: 8px;
    right: 8px;
    width: auto;
    max-width: none;
  }
}

.page-technical,
.page-technical .x7k2w-wrapper,
.page-technical .x7k2w-main,
.page-technical .x7k2w-container,
.page-technical .p7k4n-technical-page,
.page-technical .r2p9s-content-block--technical {
  min-width: 0;
}

.page-technical .p7k4n-technical-page {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 767px) {
  .page-technical .x7k2w-container {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-technical .p7k4n-technical-page {
    padding: 20px 16px;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  html, body, .wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .header-inner {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header,
  .header-inner {
    min-height: 68px;
  }

  .header-logo {
    flex: 0 1 auto;
    min-width: 0;
  }

  .header-logo img {
    width: 112px;
    height: auto;
  }

  .header-actions {
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .header-actions .btn {
    min-width: 0;
    padding: 10px 11px;
    border-radius: 9px;
    font-size: 12px;
    white-space: nowrap;
  }

  .burger {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin-left: 0;
  }

  .hero-slider,
  .hero-banner {
    width: 100%;
    height: auto;
    min-height: 430px;
    overflow: hidden;
  }

  .hero-slide {
    min-height: 430px;
  }

  .hero-slide .container {
    min-height: 430px;
    display: flex;
    align-items: center;
  }

  .hero-slide__bg,
  .hero-banner__bg {
    background-position: 62% center;
  }

  .hero-slide__content,
  .hero-banner__content {
    width: 100%;
    max-width: 100%;
    padding: 38px 0 78px;
    text-align: center;
  }

  .hero-slide__content h1,
  .hero-slide__content h2,
  .hero-banner__content h1,
  .hero-banner__content h2 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .hero-slide__content p,
  .hero-banner__content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .hero-slide__content .btn,
  .hero-banner__content .btn {
    width: min(100%, 340px);
    min-width: 0;
    padding: 16px 18px;
    font-size: 18px;
    white-space: normal;
  }

  .hero-slider__dots {
    bottom: 20px;
  }

  .breadcrumbs {
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 14px;
  }

  .section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .section-title {
    font-size: 27px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .section-subtitle {
    font-size: 17px;
    line-height: 1.5;
  }

  .advantages-grid,
  .features-grid,
  .steps-grid,
  .platforms-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .adv-card,
  .feature-card,
  .step-card,
  .platform-card {
    width: 100%;
    min-width: 0;
    padding: 22px 18px;
  }

  .download-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .download-buttons .btn,
  .download-buttons a {
    width: 100%;
    min-width: 0;
    justify-content: center;
    white-space: normal;
  }

  .app-info-table,
  #main-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #main-content h1,
  #main-content h2,
  #main-content h3,
  #main-content p,
  #main-content li,
  #main-content td,
  #main-content th {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  #main-content img,
  #main-content video,
  #main-content iframe {
    max-width: 100%;
    height: auto;
  }

  .content,
  .content-block,
  .text-content,
  .article-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 430px) {
  .container,
  .header-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-logo img {
    width: 96px;
  }

  .header-actions .btn {
    padding: 9px 8px;
    font-size: 11px;
  }

  .header-actions .btn--signup {
    max-width: 84px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-slider,
  .hero-banner,
  .hero-slide,
  .hero-slide .container {
    min-height: 390px;
  }

  .hero-slide__content h1,
  .hero-slide__content h2,
  .hero-banner__content h1,
  .hero-banner__content h2 {
    font-size: 28px;
  }

  .hero-slide__content p,
  .hero-banner__content p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  * { box-sizing: border-box; }
  html, body { min-width: 0 !important; width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
  body, .wrapper, main, #main-content { min-width: 0 !important; width: 100% !important; max-width: 100% !important; }
  .container, .header-inner { min-width: 0 !important; width: 100% !important; max-width: 100% !important; margin-left: auto !important; margin-right: auto !important; }
  .site-header { width: 100% !important; max-width: 100% !important; }
  .header-inner { display: flex !important; flex-wrap: nowrap !important; gap: 8px !important; }
  .header-logo { min-width: 0 !important; margin-right: auto !important; }
  .header-actions { display: flex !important; min-width: 0 !important; gap: 6px !important; }
  .header-actions .btn { min-width: 0 !important; max-width: 110px !important; padding: 9px 10px !important; font-size: 12px !important; }
  .burger { display: inline-flex !important; flex: 0 0 38px !important; }
  .hero-slider, .hero-banner, .hero-slide, .hero-slide .container, .hero-banner .container { min-width: 0 !important; width: 100% !important; max-width: 100% !important; }
  .hero-slide__content, .hero-banner__content { min-width: 0 !important; width: 100% !important; max-width: 100% !important; padding-left: 0 !important; padding-right: 0 !important; }
  .hero-slide__content h1, .hero-slide__content h2, .hero-banner__content h1, .hero-banner__content h2,
  .hero-slide__content p, .hero-banner__content p { width: 100% !important; max-width: 100% !important; white-space: normal !important; overflow-wrap: anywhere !important; }
  .advantages-grid, .features-grid, .steps-grid, .platforms-grid { display: grid !important; grid-template-columns: minmax(0, 1fr) !important; width: 100% !important; }
  .adv-card, .feature-card, .step-card, .platform-card, .registration-card, .download-card { min-width: 0 !important; width: 100% !important; max-width: 100% !important; }
  .content-text, .content, .article-content, .text-content { min-width: 0 !important; width: 100% !important; max-width: 100% !important; }
  table { max-width: none; }
  .winners-table-wrap, .app-info-table { width: 100% !important; max-width: 100% !important; overflow-x: auto !important; }
  .bottom-widget { width: 100% !important; max-width: 100% !important; left: 0 !important; right: 0 !important; }
}

@media (max-width: 430px) {
  .header-actions .btn { padding: 8px 7px !important; font-size: 11px !important; max-width: 88px !important; }
  .header-logo img { width: 92px !important; }
}
