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

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #0b1020;
  --c-header: #0f172a;
  --c-card: #111827;
  --c-border: #1e293b;
  --c-btn-login: #22d3ee;
  --c-btn-reg: #06b6d4;
  --c-text: #e2e8f0;
  --c-text-muted: #94a3b8;
  --c-accent: #22d3ee;
  --c-accent2: #06b6d4;
  --c-white: #ffffff;
  --c-gold: #f59e0b;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Inter", sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: var(--c-accent);
  text-decoration: none;
}
a:hover {
  color: var(--c-accent2);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--c-white);
}
p {
  margin-bottom: 1rem;
  color: var(--c-text);
}
ul,
ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
li {
  margin-bottom: 0.4rem;
  color: var(--c-text);
}

.xk9r2 {
  display: none;
}
.wp-post-image {
  display: none;
}
.entry-meta {
  display: none;
}

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

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

.site-header {
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.header-logo img {
  height: 44px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  color: var(--c-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--c-accent);
  background: rgba(34, 211, 238, 0.08);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.online-badge {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.online-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-login {
  background: transparent;
  border: 1.5px solid var(--c-btn-login);
  color: var(--c-btn-login);
}
.btn-login:hover {
  background: var(--c-btn-login);
  color: #0b1020;
}
.btn-reg {
  background: var(--c-btn-reg);
  color: #0b1020;
}
.btn-reg:hover {
  background: #0891b2;
  color: #0b1020;
}
.btn-bonus {
  background: linear-gradient(135deg, var(--c-btn-reg), #0891b2);
  color: #0b1020;
  font-weight: 700;
}
.btn-bonus:hover {
  background: linear-gradient(135deg, #0891b2, var(--c-btn-reg));
  color: #0b1020;
}
.btn-primary {
  background: var(--c-accent);
  color: #0b1020;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius);
}
.btn-primary:hover {
  background: var(--c-accent2);
  color: #0b1020;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 211, 238, 0.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--c-accent);
  color: var(--c-accent);
  padding: 12px 28px;
  border-radius: var(--radius);
}
.btn-outline:hover {
  background: var(--c-accent);
  color: #0b1020;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #0b1020 0%, #0f172a 50%, #0b1020 100%);
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--c-text-muted);
  margin-bottom: 2rem;
}
.hero-badge {
  display: inline-block;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.section {
  padding: 64px 0;
}
.section-sm {
  padding: 40px 0;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--c-text-muted);
  margin-bottom: 2.5rem;
}

.toc-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.toc-block h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.toc-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
  list-style: none;
  padding: 0;
}
.toc-list li a {
  color: var(--c-accent);
  font-size: 0.9rem;
  padding: 4px 0;
  display: block;
  transition: var(--transition);
}
.toc-list li a::before {
  content: "→ ";
  opacity: 0.6;
}
.toc-list li a:hover {
  color: var(--c-white);
  padding-left: 4px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.1);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.card-desc {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin: 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.advantage-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.advantage-item:hover {
  border-color: var(--c-accent);
  box-shadow: 0 4px 20px rgba(34, 211, 238, 0.08);
}
.advantage-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 4px;
}
.advantage-text p {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin: 0;
  line-height: 1.4;
}

.tournament-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.tournament-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent2));
}
.tournament-prize {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-accent);
  margin: 0.5rem 0;
}
.tournament-timer {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-top: 12px;
}
.timer-unit {
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  min-width: 48px;
}
.timer-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-white);
  display: block;
}
.timer-label {
  font-size: 0.65rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
}

.app-info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
}
.app-info-table th,
.app-info-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9rem;
}
.app-info-table th {
  background: #0f172a;
  color: var(--c-text-muted);
  font-weight: 500;
  width: 40%;
}
.app-info-table td {
  color: var(--c-text);
}
.app-info-table tr:last-child th,
.app-info-table tr:last-child td {
  border-bottom: none;
}
.app-info-table tr:hover td,
.app-info-table tr:hover th {
  background: rgba(34, 211, 238, 0.04);
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}

.download-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.dl-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 12px 20px;
  color: var(--c-text);
  transition: var(--transition);
  text-decoration: none;
}
.dl-btn:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.dl-btn svg {
  flex-shrink: 0;
}
.dl-btn-label {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dl-btn-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-white);
  display: block;
}

.slot-machine {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.slot-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}
.reel {
  width: 80px;
  height: 80px;
  background: #0f172a;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
}
.reel.spinning {
  animation: spinReel 0.15s steps(1) infinite;
}
@keyframes spinReel {
  0% {
    filter: blur(0);
  }
  50% {
    filter: blur(2px);
  }
}
.slot-result {
  margin-top: 16px;
  padding: 16px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid var(--c-accent);
  border-radius: var(--radius);
  display: none;
}
.slot-result.show {
  display: block;
}
.slot-result p {
  color: var(--c-accent);
  font-weight: 600;
  margin: 0 0 12px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0b1020;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-author {
  font-weight: 600;
  color: var(--c-white);
  font-size: 0.95rem;
}
.review-date {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--c-gold);
}
.review-text {
  font-size: 0.875rem;
  color: var(--c-text);
  line-height: 1.6;
  margin: 0;
}

.review-form {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 540px;
}
.review-form h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: #0f172a;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--c-accent);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--c-accent);
  text-align: center;
  display: none;
}
.form-success.show {
  display: block;
}

.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 320px;
}
.footer-nav-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
}
.footer-nav-list li {
  margin-bottom: 8px;
}
.footer-nav-list a {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  transition: var(--transition);
}
.footer-nav-list a:hover {
  color: var(--c-accent);
}
.footer-payments {
  margin-bottom: 24px;
}
.footer-payments-title,
.footer-providers-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}
.payment-logos,
.provider-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.payment-badge,
.provider-badge {
  background: #1e293b;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-muted);
}
.footer-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}
.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  transition: var(--transition);
}
.footer-legal-links a:hover {
  color: var(--c-accent);
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(6, 182, 212, 0.3);
}
.sticky-widget-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0b1020;
}
.sticky-widget .btn-widget {
  background: #0b1020;
  color: var(--c-accent);
  border: 2px solid var(--c-accent);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}
.sticky-widget .btn-widget:hover {
  background: var(--c-accent);
  color: #0b1020;
}
.sticky-widget .widget-close {
  background: transparent;
  border: none;
  color: #0b1020;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  opacity: 0.7;
}
.sticky-widget .widget-close:hover {
  opacity: 1;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
  color: var(--c-white);
  margin: 1.5rem 0 0.75rem;
  line-height: 1.3;
}
.content-body h1 {
  font-size: 2rem;
}
.content-body h2 {
  font-size: 1.6rem;
}
.content-body h3 {
  font-size: 1.3rem;
}
.content-body p {
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.content-body a {
  color: var(--c-accent);
}
.content-body a:hover {
  color: var(--c-accent2);
  text-decoration: underline;
}
.content-body ul,
.content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.content-body li {
  color: var(--c-text);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  overflow-x: auto;
  display: block;
}
.content-body table th {
  background: #0f172a;
  color: var(--c-text-muted);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-weight: 600;
  font-size: 0.875rem;
}
.content-body table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  font-size: 0.875rem;
}
.content-body table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.content-body blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 12px 20px;
  background: rgba(34, 211, 238, 0.05);
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.content-body blockquote p {
  margin: 0;
  color: var(--c-text);
}
.content-body img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.content-body strong {
  color: var(--c-white);
  font-weight: 600;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  min-width: 100%;
  position: relative;
}
.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--c-accent);
  width: 24px;
  border-radius: 4px;
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 2;
}
.slider-prev {
  left: 16px;
}
.slider-next {
  right: 16px;
}
.slider-prev:hover,
.slider-next:hover {
  background: var(--c-accent);
  color: #0b1020;
  border-color: var(--c-accent);
}

.promo-section {
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.1),
    rgba(6, 182, 212, 0.05)
  );
  border: 1px solid var(--c-accent);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 32px 0;
}
.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-header);
  border: 2px dashed var(--c-accent);
  border-radius: var(--radius);
  padding: 12px 24px;
  margin: 16px 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: 0.1em;
}
.promo-copy-btn {
  background: var(--c-accent);
  border: none;
  border-radius: var(--radius-sm);
  color: #0b1020;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
}
.promo-copy-btn:hover {
  background: var(--c-accent2);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th {
  background: var(--c-header);
  color: var(--c-accent);
  text-align: center;
  padding: 14px;
  border: 1px solid var(--c-border);
  font-weight: 700;
  font-size: 0.9rem;
}
.comparison-table td {
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--c-text);
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--c-text-muted);
}
.comparison-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.comparison-table .highlight {
  color: var(--c-accent);
  font-weight: 700;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr {
  transition: var(--transition);
}
.info-table tr:hover td {
  background: rgba(34, 211, 238, 0.04);
}
.info-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9rem;
}
.info-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 500;
  width: 45%;
}
.info-table td:last-child {
  color: var(--c-text);
}
.info-table tr:last-child td {
  border-bottom: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--c-accent);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--c-white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}
.faq-question .faq-arrow {
  color: var(--c-accent);
  transition: var(--transition);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 16px;
}
.faq-answer p {
  color: var(--c-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.author-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 40px;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-accent);
}
.author-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 4px;
}
.author-role {
  font-size: 0.8rem;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.author-bio {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.author-socials {
  display: flex;
  gap: 8px;
}
.author-social-link {
  background: #1e293b;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  transition: var(--transition);
}
.author-social-link:hover {
  color: var(--c-accent);
  border-color: var(--c-accent);
}

.bonus-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.bonus-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.1);
}
.bonus-card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--c-accent);
  color: #0b1020;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.bonus-card-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-accent);
  margin: 0.5rem 0;
}
.bonus-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.bonus-card-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.bonus-card-terms {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
  padding-top: 10px;
  margin-top: 8px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.slot-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.slot-card:hover {
  border-color: var(--c-accent);
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.15);
}
.slot-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.slot-card-info {
  padding: 12px;
}
.slot-card-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 4px;
}
.slot-card-provider {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}
.slot-card-rtp {
  font-size: 0.75rem;
  color: var(--c-accent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.feature-badge {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  transition: var(--transition);
}
.feature-badge:hover {
  border-color: var(--c-accent);
  background: rgba(34, 211, 238, 0.05);
}
.feature-badge .icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.feature-badge .name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-white);
}

.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}
.breadcrumb a {
  color: var(--c-text-muted);
}
.breadcrumb a:hover {
  color: var(--c-accent);
}
.breadcrumb span {
  margin: 0 6px;
  opacity: 0.5;
}

.reg-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.reg-benefit {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}
.reg-benefit:hover {
  border-color: var(--c-accent);
}
.reg-benefit .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.reg-benefit h4 {
  font-size: 0.95rem;
  color: var(--c-white);
  margin-bottom: 6px;
}
.reg-benefit p {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin: 0;
}

.tech-content {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 40px;
}
.tech-content h1,
.tech-content h2,
.tech-content h3 {
  color: var(--c-white);
  margin: 1.5rem 0 0.75rem;
}
.tech-content p {
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.tech-content ul,
.tech-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.tech-content li {
  color: var(--c-text);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}
.mt-5 {
  margin-top: 40px;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}
.mb-5 {
  margin-bottom: 40px;
}
.text-center {
  text-align: center;
}
.text-muted {
  color: var(--c-text-muted);
}
.text-accent {
  color: var(--c-accent);
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}
.gap-4 {
  gap: 16px;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.hidden {
  display: none;
}

.f3k2p {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.wp-block-group {
  display: block;
}
.elementor-hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .header-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .header-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
  }
  .burger {
    display: flex;
  }
  .hero {
    padding: 50px 0;
  }
  .section {
    padding: 40px 0;
  }
  .cards-grid,
  .advantages-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-socials {
    justify-content: center;
  }
  .download-buttons {
    flex-direction: column;
  }
  .dl-btn {
    justify-content: center;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reg-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-actions .online-badge {
    display: none;
  }
  .sticky-widget {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reg-benefits-grid {
    grid-template-columns: 1fr;
  }
  .promo-code-display {
    font-size: 1.1rem;
  }
}


/* content and technical pages repair */
.page-technical,
.page-technical body {
  min-height: 100%;
}
.page-technical {
  background:
    radial-gradient(circle at 15% 0%, rgba(34,211,238,.08), transparent 34rem),
    var(--c-bg);
  color: var(--c-text);
}
.technical-main {
  display: block;
  padding: 36px 0 96px;
  min-height: 60vh;
}
.technical-container,
.technical-content,
.technical-body,
.content-body {
  min-width: 0;
  max-width: 100%;
}
.technical-breadcrumb {
  margin: 0 0 20px;
}
.technical-content {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  background: linear-gradient(145deg, rgba(30,41,59,.96), rgba(15,23,42,.96));
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: clamp(22px, 4vw, 48px);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  overflow: hidden;
}
.technical-header {
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.technical-title {
  margin: 0;
  color: var(--c-white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}
.technical-meta {
  margin: 12px 0 0;
  color: var(--c-text-muted);
  font-size: .9rem;
}
.technical-body,
.content-body {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  width: 100%;
  overflow: hidden;
}
.technical-body > :first-child,
.content-body > :first-child { margin-top: 0; }
.technical-body > :last-child,
.content-body > :last-child { margin-bottom: 0; }
.technical-body h2,
.technical-body h3,
.technical-body h4,
.technical-body h5,
.technical-body h6 {
  color: var(--c-white);
  line-height: 1.25;
  margin: 1.65em 0 .65em;
  overflow-wrap: anywhere;
}
.technical-body h2 { font-size: clamp(1.45rem, 3vw, 2rem); }
.technical-body h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }
.technical-body p,
.technical-body li {
  color: var(--c-text);
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: normal;
}
.technical-body p { margin: 0 0 1rem; }
.technical-body ul,
.technical-body ol { padding-left: 1.4rem; margin: 0 0 1.2rem; }
.technical-body li + li { margin-top: .45rem; }
.technical-body a { color: var(--c-accent); overflow-wrap: anywhere; }
.technical-body strong { color: var(--c-white); }
.technical-body blockquote {
  margin: 1.5rem 0;
  padding: 16px 20px;
  border-left: 4px solid var(--c-accent);
  border-radius: 0 12px 12px 0;
  background: rgba(34,211,238,.06);
}
.content-table-scroll,
.technical-body .table-wrap,
.content-body .table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 1.5rem 0;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}
.content-table-scroll table,
.technical-body .table-wrap table,
.content-body .table-wrap table {
  width: max-content;
  min-width: 100%;
  margin: 0 !important;
  display: table !important;
  border-collapse: collapse;
  table-layout: auto;
}
.technical-body table,
.content-body table {
  max-width: none;
}
.technical-body th,
.technical-body td,
.content-body th,
.content-body td {
  min-width: 140px;
  max-width: 320px;
  padding: 12px 14px;
  white-space: normal;
  overflow-wrap: anywhere;
  vertical-align: top;
}
.technical-body img,
.technical-body video,
.technical-body iframe,
.content-body img,
.content-body video,
.content-body iframe {
  max-width: 100% !important;
  height: auto;
}
[data-aos] .content-body,
[data-aos].section .content-body,
[data-aos].section {
  visibility: visible;
}
html:not(.aos-ready) [data-aos] {
  opacity: 1;
  transform: none;
}
@media (max-width: 768px) {
  .technical-main { padding: 20px 0 76px; }
  .technical-content { padding: 20px 16px; border-radius: 14px; }
  .technical-title { font-size: clamp(1.65rem, 8vw, 2.25rem); }
  .content-body,
  .technical-body { overflow: hidden !important; }
  .content-body h1 { font-size: 1.65rem; }
  .content-body h2 { font-size: 1.4rem; }
  .content-body h3 { font-size: 1.2rem; }
  .content-table-scroll { margin-left: 0; margin-right: 0; }
  .technical-body th,
  .technical-body td,
  .content-body th,
  .content-body td {
    min-width: 130px;
    font-size: .84rem;
    padding: 10px 12px;
  }
}


.content-block {
  position: relative;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: clamp(22px, 4vw, 42px);
  color: #dbe4f0;
  background:
    radial-gradient(circle at 100% 0, rgba(34, 211, 238, .11), transparent 32rem),
    linear-gradient(145deg, rgba(30, 41, 59, .98), rgba(10, 17, 31, .98));
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .3);
  overflow: hidden;
  isolation: isolate;
}
.content-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.025), transparent 38%);
}
.section > .content-block {
  margin-top: 8px;
}
.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
  color: #fff;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.content-block h1 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
.content-block h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.content-block h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
.content-block p,
.content-block li,
.content-block td {
  color: #dbe4f0;
  line-height: 1.75;
  overflow-wrap: anywhere;
}
.content-block a {
  color: var(--c-accent, #22d3ee);
  overflow-wrap: anywhere;
}
.content-block strong { color: #fff; }
.content-block blockquote {
  margin: 1.5rem 0;
  padding: 16px 20px;
  border-left: 4px solid var(--c-accent, #22d3ee);
  border-radius: 0 12px 12px 0;
  background: rgba(34, 211, 238, .07);
}
.content-block img,
.content-block video,
.content-block iframe {
  display: block;
  max-width: 100% !important;
  height: auto;
  margin: 1.5rem auto;
  border-radius: 14px;
}
.content-block .content-table-scroll,
.content-block .table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 1.5rem 0;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}
.content-block .content-table-scroll table,
.content-block .table-wrap table {
  display: table !important;
  width: max-content;
  min-width: 100%;
  margin: 0 !important;
  border-collapse: collapse;
}
.content-block th,
.content-block td {
  min-width: 130px;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, .18);
  white-space: normal;
  vertical-align: top;
}
.content-block th {
  color: #fff;
  background: rgba(15, 23, 42, .95);
}
.page-technical .technical-content {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}
.page-technical .technical-header {
  margin-bottom: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(30,41,59,.98), rgba(15,23,42,.98));
  box-shadow: 0 16px 42px rgba(0,0,0,.24);
}
.page-technical .technical-body.content-block {
  overflow: hidden;
}
html:not(.aos-ready) [data-aos],
html.aos-ready [data-aos]:not(.aos-animate) {
  visibility: visible;
}
@media (max-width: 768px) {
  .content-block {
    padding: 20px 16px;
    border-radius: 15px;
  }
  .section > .content-block {
    margin-left: 0;
    margin-right: 0;
  }
  .content-block h1 { font-size: 1.65rem; }
  .content-block h2 { font-size: 1.38rem; }
  .content-block h3 { font-size: 1.16rem; }
  .content-block p,
  .content-block li { font-size: .96rem; }
  .content-block th,
  .content-block td {
    min-width: 125px;
    padding: 10px 11px;
    font-size: .84rem;
  }
  .page-technical .technical-header {
    padding: 20px 16px;
    border-radius: 15px;
  }
}

/* complete responsive repair */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*, *::before, *::after {
  min-width: 0;
}

img, svg, video, canvas, iframe {
  max-width: 100%;
}

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

@media (max-width: 1024px) {
  .site-header {
    z-index: 1000;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 68px;
    padding: 10px 0;
  }

  .header-logo {
    flex: 0 1 auto;
    max-width: 145px;
  }

  .header-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 40px;
    object-fit: contain;
  }

  .header-actions {
    margin-left: auto;
    gap: 8px;
  }

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

  .header-actions .btn-reg {
    padding: 9px 13px;
    font-size: .8rem;
  }

  .burger {
    position: relative;
    z-index: 1002;
    display: flex !important;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px;
    border: 1px solid var(--c-border);
    border-radius: 10px;
    background: rgba(15, 23, 42, .96);
  }

  .burger span {
    width: 22px;
  }

  .header-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    height: 100dvh;
    padding: 92px 18px 28px;
    background: rgba(7, 12, 24, .985);
    backdrop-filter: blur(18px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }

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

  .header-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid rgba(148, 163, 184, .14);
    border-radius: 12px;
    background: rgba(30, 41, 59, .72);
    color: #fff;
    font-size: 1rem;
  }

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

  .hero,
  .hero-slider .hero {
    min-height: 0 !important;
    padding: 56px 0;
  }

  .hero-content {
    width: 100%;
    max-width: 680px;
    padding: 0;
  }

  .hero-content h1,
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    overflow-wrap: anywhere;
  }

  .section,
  .section-sm {
    width: 100%;
  }

  .app-section-grid,
  .reviews-form-grid,
  .specs-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .cards-grid,
  .advantages-grid,
  .reviews-grid,
  .features-grid,
  .reg-benefits-grid,
  .slots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-block,
  .technical-content,
  .technical-body,
  .content-body,
  .promo-section,
  .toc-block {
    width: 100%;
    max-width: 100%;
  }

  .table-wrap,
  .content-table-scroll,
  .content-block .table-wrap,
  .content-block .content-table-scroll {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  table {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .container,
  .technical-container {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .header-logo {
    max-width: 128px;
  }

  .hero,
  .hero-slider .hero {
    padding: 44px 0;
  }

  .hero-content h1,
  .hero-title {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    line-height: 1.12;
  }

  .hero-subtitle {
    font-size: .98rem;
  }

  .section {
    padding: 32px 0;
  }

  .section-title {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .cards-grid,
  .advantages-grid,
  .reviews-grid,
  .features-grid,
  .reg-benefits-grid,
  .slots-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .content-block {
    padding: 20px 15px;
    border-radius: 14px;
    overflow: visible;
  }

  .technical-main {
    padding: 18px 0 72px;
  }

  .technical-header,
  .page-technical .technical-header {
    padding: 18px 15px;
  }

  .technical-title {
    font-size: clamp(1.6rem, 8vw, 2.1rem);
  }

  .technical-body,
  .content-body {
    overflow: visible !important;
  }

  .technical-body table,
  .content-body table,
  .content-block table {
    width: max-content;
    min-width: 620px;
  }

  .tournament-timer {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    overflow-x: auto;
  }

  .timer-unit {
    flex: 0 0 auto;
  }

  .download-buttons,
  .hero-content > div[style*="display:flex"] {
    width: 100%;
  }

  .download-buttons .btn,
  .hero-content > div[style*="display:flex"] .btn {
    width: 100%;
  }

  .sticky-widget {
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 420px) {
  .header-logo {
    max-width: 112px;
  }

  .hero-badge {
    font-size: .72rem;
  }

  .content-block,
  .technical-header,
  .page-technical .technical-header {
    padding-left: 13px;
    padding-right: 13px;
  }
}
