*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #1c0138;
  --c-bg2: #2a0255;
  --c-bg3: #3a0370;
  --c-card: #25024a;
  --c-accent: #f5c300;
  --c-accent2: #e040fb;
  --c-text: #f0e6ff;
  --c-text-muted: #b89dd6;
  --c-border: #4a1a7a;
  --c-btn-primary: #f5c300;
  --c-btn-primary-text: #1c0138;
  --c-btn-reg: #e040fb;
  --c-btn-reg-text: #fff;
  --c-green: #22c55e;
  --c-red: #ef4444;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
html {
  background: var(--c-bg);
  scroll-behavior: smooth;
}
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.box {
  border-radius: var(--radius);
  overflow: hidden;
}

.site-header {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.header-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  color: var(--c-text-muted);
  font-size: 0.88rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  background: var(--c-bg3);
  color: var(--c-text);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-online {
  font-size: 0.75rem;
  color: var(--c-green);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-online::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--c-green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.header-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    opacity 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  opacity: 1;
}
.btn:active {
  transform: translateY(0);
}
.btn--login {
  background: var(--c-bg3);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn--signup {
  background: var(--c-btn-primary);
  color: var(--c-btn-primary-text);
}
.btn--bonus {
  background: var(--c-btn-reg);
  color: var(--c-btn-reg-text);
}
.btn--lg {
  padding: 13px 32px;
  font-size: 1rem;
  border-radius: 10px;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--c-accent);
  color: var(--c-accent);
}

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

.breadcrumbs {
  padding: 12px 0;
  font-size: 0.83rem;
  color: var(--c-text-muted);
}
.breadcrumbs a {
  color: var(--c-text-muted);
}
.breadcrumbs span {
  color: var(--c-text);
}
.breadcrumbs .sep {
  margin: 0 6px;
  opacity: 0.5;
}

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg2);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(28, 1, 56, 0.92) 40%,
    rgba(28, 1, 56, 0.55)
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  max-width: 600px;
}
.hero-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 14px;
}
.hero-content p {
  font-size: 1.05rem;
  color: var(--c-text);
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero-badge {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-btn-primary-text);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.section {
  padding: 48px 0;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--c-text);
}
.section-title span {
  color: var(--c-accent);
}

.card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.pros-cons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.pros-cons-col {
  flex: 1;
  min-width: 260px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
}
.pros-cons-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-col h3 {
  color: var(--c-green);
}
.cons-col h3 {
  color: var(--c-red);
}
.pros-cons-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pros-cons-col li {
  padding-left: 22px;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.5;
}
.pros-col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-green);
  font-weight: 700;
}
.cons-col li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--c-red);
  font-weight: 700;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.slider-btn {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-btn:hover {
  background: var(--c-accent);
  color: var(--c-btn-primary-text);
}

.tournament-card {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 260px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tournament-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-accent);
}
.tournament-card p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.tournament-prize {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-text);
}
.tournament-timer {
  display: flex;
  gap: 8px;
}
.timer-unit {
  background: var(--c-bg3);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  min-width: 52px;
}
.timer-unit span {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-accent);
}
.timer-unit small {
  font-size: 0.7rem;
  color: var(--c-text-muted);
}

.bonus-card {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 260px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bonus-card-tag {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-btn-primary-text);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.bonus-card h3 {
  font-size: 1rem;
  font-weight: 700;
}
.bonus-card p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
}
.bonus-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-accent);
}

.app-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 16px;
  background: var(--c-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.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: var(--c-bg3);
  color: var(--c-text-muted);
  font-weight: 600;
  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;
}
.download-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.download-btn:hover {
  background: var(--c-accent);
  color: var(--c-btn-primary-text);
  border-color: var(--c-accent);
}

.demo-game-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}
.demo-game-wrap iframe {
  width: 100%;
  min-height: 480px;
  border: none;
  display: block;
}

.content-review {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
}
.content-review h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--c-accent);
}
.content-review h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 8px;
}
.content-review p {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.content-review ul,
.content-review ol {
  margin: 10px 0 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.content-review li {
  line-height: 1.6;
  font-size: 0.93rem;
}
.content-review a {
  color: var(--c-accent);
}
.content-review table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  overflow-x: auto;
  display: block;
}
.content-review table th,
.content-review table td {
  border: 1px solid var(--c-border);
  padding: 10px 14px;
  text-align: left;
  font-size: 0.9rem;
}
.content-review table th {
  background: var(--c-bg3);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  gap: 12px;
  user-select: none;
}
.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--c-accent);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.site-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}
.footer-inner {
  padding: 40px 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-logo-col {
  flex: 0 0 160px;
}
.footer-logo-col img {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}
.footer-nav-col {
  flex: 1;
  min-width: 160px;
}
.footer-nav-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.footer-nav-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer-nav-col a:hover {
  color: var(--c-text);
}
.footer-payments {
  margin-bottom: 20px;
}
.footer-payments h4 {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}
.footer-payments img,
.footer-providers img {
  max-height: 36px;
  filter: grayscale(30%) brightness(1.1);
}
.footer-providers {
  margin-bottom: 20px;
}
.footer-providers h4 {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}
.footer-legal {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  margin-top: 20px;
}
.footer-copyright {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.widget-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--c-bg2), var(--c-bg3));
  border-top: 2px solid var(--c-accent);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.widget-sticky-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
}
.widget-sticky-text strong {
  color: var(--c-accent);
}
.widget-sticky .btn--signup {
  font-size: 0.95rem;
  padding: 10px 24px;
}
.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  background: var(--c-card);
}
.data-table th,
.data-table td {
  border: 1px solid var(--c-border);
  padding: 11px 14px;
  font-size: 0.88rem;
  text-align: left;
}
.data-table th {
  background: var(--c-bg3);
  color: var(--c-text-muted);
  font-weight: 600;
}
.data-table td {
  color: var(--c-text);
}
.data-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
.data-table tbody tr:hover {
  background: rgba(245, 195, 0, 0.05);
}

.promo-block {
  background: linear-gradient(135deg, var(--c-bg3), var(--c-bg2));
  border: 2px solid var(--c-accent);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.promo-block h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 2px dashed var(--c-accent);
  border-radius: 10px;
  overflow: hidden;
  margin: 16px 0;
}
.promo-code-val {
  padding: 12px 20px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--c-accent);
  background: var(--c-bg);
}
.promo-copy-btn {
  padding: 12px 18px;
  background: var(--c-accent);
  color: var(--c-btn-primary-text);
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.promo-copy-btn:hover {
  opacity: 0.85;
}

.mirror-table {
  background: var(--c-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.mirror-table-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--c-border);
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.mirror-table-row:last-child {
  border-bottom: none;
}
.mirror-table-row .m-num {
  color: var(--c-text-muted);
  width: 24px;
  flex-shrink: 0;
}
.mirror-table-row .m-url {
  flex: 1;
  color: var(--c-accent);
  word-break: break-all;
}
.mirror-table-row .m-date {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.mirror-table-row .m-status {
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: #22c55e22;
  color: var(--c-green);
  font-weight: 600;
  white-space: nowrap;
}

.security-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.security-item {
  flex: 1;
  min-width: 200px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.security-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.security-item h4 {
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.security-item p {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.slot-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.slot-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--c-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.slot-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.slot-card-img-wrap::after {
  content: "▶ Играть";
  position: absolute;
  inset: 0;
  background: rgba(28, 1, 56, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.slot-card:hover .slot-card-img-wrap::after {
  opacity: 1;
}
.slot-card-body {
  padding: 12px;
}
.slot-card-name {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.slot-card-provider {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.feature-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.feature-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-text);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-bg3);
  object-fit: cover;
  flex-shrink: 0;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
}
.review-meta h4 {
  font-size: 0.93rem;
  font-weight: 700;
}
.review-stars {
  color: var(--c-accent);
  font-size: 1rem;
  letter-spacing: 1px;
}
.review-text {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.review-form {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}
.review-form h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}
.form-group input,
.form-group textarea {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--c-text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-accent);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  background: #22c55e22;
  border: 1px solid var(--c-green);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--c-green);
  font-size: 0.92rem;
  display: none;
  margin-top: 10px;
}

.author-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  flex-wrap: wrap;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-accent);
}
.author-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.author-info p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.author-info a {
  font-size: 0.85rem;
  color: var(--c-accent);
}
.author-label {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.advantage-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.advantage-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.advantage-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.advantage-item p {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--c-text);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
}
.modal-iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
.hero-slide {
  flex: 0 0 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 1, 56, 0.78);
}
.hero-slide-content {
  position: relative;
  z-index: 1;
  padding: 48px 32px;
  max-width: 580px;
}
.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-dot.active {
  background: var(--c-accent);
  width: 24px;
  border-radius: 4px;
}
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(28, 1, 56, 0.65);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s;
}
.hero-slider-arrow:hover {
  background: var(--c-accent);
  color: var(--c-btn-primary-text);
}
.hero-slider-arrow--prev {
  left: 12px;
}
.hero-slider-arrow--next {
  right: 12px;
}

.reg-bonus-block {
  background: linear-gradient(135deg, var(--c-bg3), #4a015f);
  border: 2px solid var(--c-accent);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.reg-bonus-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
}
.reg-bonus-info h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.reg-bonus-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.reg-bonus-info p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
}

.yt-embed-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.yt-embed-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.gap-section {
  height: 32px;
}
.mt-3 {
  margin-top: 24px;
}
.mb-3 {
  margin-bottom: 24px;
}
.text-center {
  text-align: center;
}
.text-muted {
  color: var(--c-text-muted);
}

.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.wp-has-text-align-center {
  text-align: center;
}
.entry-content {
  display: block;
}
.elementor-section {
  display: block;
}
.elementor-widget-wrap {
  display: block;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border);
    padding: 12px 16px;
    gap: 2px;
    z-index: 99;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    padding: 10px 12px;
    border-radius: 8px;
  }
  .burger {
    display: flex;
  }
  .tournament-card,
  .bonus-card {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 600px) {
  .pros-cons {
    flex-direction: column;
  }
  .tournament-card,
  .bonus-card {
    flex: 0 0 calc(100% - 0px);
  }
  .hero-content {
    padding: 36px 16px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .header-inner {
    gap: 8px;
  }
  .reg-bonus-block {
    flex-direction: column;
    text-align: center;
  }
}

.xz9f2a {
  display: none;
}
.wp-post-image {
  max-width: 100%;
  height: auto;
}
.entry-meta {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}
.widget_recent_entries {
  display: none;
}
.sidebar-widget {
  display: none;
}
.woocommerce-page {
  display: block;
}

@media (min-width: 901px) {
  .slider-wrap {
    overflow: visible;
  }

  .slider-wrap .slider-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    transform: none !important;
  }

  .slider-wrap .tournament-card,
  .slider-wrap .bonus-card {
    width: auto;
    min-width: 0;
    max-width: none;
    flex: none;
  }

  .slider-wrap .slider-controls {
    display: none !important;
  }
}
