:root {
  --bg: #0e1117;
  --hf: #161b25;
  --btn-sec: #ec0433;
  --btn-pri: #42506c;
  --txt: #e8eaed;
  --txt-muted: #9aa0ac;
  --gold: #d4af37;
  --gold2: #c9a227;
  --border: #2a3140;
  --card-bg: #1a2130;
  --card2: #151c28;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --font: "Sofia Sans", sans-serif;
  --trans: all 0.25s ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--btn-sec);
  text-decoration: none;
  transition: var(--trans);
}
a:hover {
  color: var(--gold);
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--font);
}
input,
textarea,
select {
  font-family: var(--font);
}
table {
  border-collapse: collapse;
}

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

.x4k9m {
  display: block;
}
.qr2z7 {
  position: relative;
}
.bv8n3 {
  overflow: hidden;
}

.box {
  border-radius: var(--radius);
}
.header.box {
  border-radius: 0;
}
.footer.box {
  border-radius: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border: none;
  transition: var(--trans);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn--red {
  background: var(--btn-sec);
  color: #fff;
}
.btn--red:hover {
  background: #c8022b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 4, 51, 0.35);
}
.btn--blue {
  background: var(--btn-pri);
  color: #fff;
}
.btn--blue:hover {
  background: #364560;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 80, 108, 0.4);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0e1117;
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold2), #b8921f);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: #0e1117;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 17px;
}
.btn--md {
  padding: 10px 20px;
  font-size: 14px;
}
.btn--sm {
  padding: 7px 16px;
  font-size: 13px;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: #0e1117;
}
.btn--full {
  width: 100%;
}

.header {
  background: var(--hf);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  min-height: 64px;
}
.logo img {
  height: 44px;
  width: auto;
}
.logo-footer img {
  height: 40px;
  width: auto;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--txt-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.header-nav a:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}
.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 33, 48, 0.8);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--txt-muted);
  white-space: nowrap;
}
.online-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: var(--trans);
}
.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);
}

.hero {
  background: linear-gradient(160deg, #0a0e16 0%, #161b25 40%, #1a2030 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/banma.jpeg") center/cover no-repeat;
  opacity: 0.18;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 span {
  color: var(--gold);
}
.hero-desc {
  font-size: 17px;
  color: var(--txt-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.promo-box {
  background: rgba(26, 33, 48, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  display: inline-block;
}
.promo-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--txt-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.promo-code {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--trans);
}
.promo-code:hover {
  border-color: var(--gold2);
  background: #13191f;
}
.promo-code span {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold);
}
.promo-copy {
  font-size: 12px;
  color: var(--txt-muted);
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 12px;
  color: var(--txt-muted);
}
.hero-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hero-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.section {
  padding: 64px 0;
}
.section-header {
  margin-bottom: 36px;
  text-align: center;
}
.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.section-title span {
  color: var(--gold);
}
.section-sub {
  font-size: 15px;
  color: var(--txt-muted);
}
.section-sep {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.info-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0 4px;
  overflow: hidden;
}
.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.info-table {
  width: 100%;
  min-width: 500px;
}
.info-table tr {
  border-bottom: 1px solid var(--border);
}
.info-table tr:last-child {
  border-bottom: none;
}
.info-table tr:hover {
  background: rgba(212, 175, 55, 0.04);
}
.info-table td {
  padding: 13px 20px;
  font-size: 15px;
  vertical-align: middle;
}
.info-table td:first-child {
  width: 46%;
  color: var(--txt-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-table td:last-child {
  color: var(--txt);
  font-weight: 500;
}
.info-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 6px;
  flex-shrink: 0;
  font-size: 13px;
}

.mirrors-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 4px;
}
.mirrors-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.mirror-clock {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 33, 48, 0.8);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}
.mirror-clock svg {
  width: 14px;
  height: 14px;
}
.mirrors-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.mirrors-table {
  width: 100%;
  min-width: 480px;
}
.mirrors-table thead th {
  background: rgba(212, 175, 55, 0.07);
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.mirrors-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mirrors-table tbody tr:last-child {
  border-bottom: none;
}
.mirrors-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.03);
}
.mirrors-table td {
  padding: 12px 16px;
  font-size: 14px;
  vertical-align: middle;
}
.mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #2ecc71;
}
.mirror-status::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #2ecc71;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
.mirrors-table td a {
  color: var(--txt);
  font-weight: 600;
}
.mirrors-table td a:hover {
  color: var(--gold);
}

.screenshots-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 4px;
}
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.screenshot-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--trans);
  cursor: pointer;
}
.screenshot-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.screenshot-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--trans);
}
.slider-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

.bonuses-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 4px;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}
.bonus-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.bonus-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.bonus-type {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.bonus-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.bonus-desc {
  font-size: 14px;
  color: var(--txt-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.video-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 4px;
}
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.slot-block {
  background: linear-gradient(160deg, #1a0a0f 0%, var(--card-bg) 60%);
  border: 1px solid rgba(236, 4, 51, 0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  margin: 0 4px;
  text-align: center;
}
.slot-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.slot-subtitle {
  font-size: 15px;
  color: var(--txt-muted);
  margin-bottom: 32px;
}
.slot-machine {
  display: inline-flex;
  gap: 8px;
  background: var(--card2);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 28px;
  position: relative;
}
.slot-reel {
  width: 80px;
  height: 80px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
  position: relative;
  transition: var(--trans);
}
.slot-reel.spinning {
  animation: reelSpin 0.1s linear infinite;
}
@keyframes reelSpin {
  0% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(-4px);
  }
}
.slot-btn-wrap {
  margin-bottom: 24px;
}
.slot-result {
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.slot-win {
  color: #2ecc71;
  font-size: 20px;
  font-weight: 800;
  animation: fadeIn 0.4s ease;
}
.slot-lose {
  color: var(--txt-muted);
  font-size: 16px;
  font-weight: 600;
}
.slot-bonus-text {
  color: var(--gold);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.review-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 0 4px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.author-title {
  font-size: 13px;
  color: var(--txt-muted);
}
.author-links {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.author-links a {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}
.review-content {
  color: var(--txt);
  line-height: 1.8;
}
.review-content h2,
.review-content h3,
.review-content h4 {
  color: #fff;
  font-weight: 700;
  margin: 24px 0 10px;
}
.review-content h2 {
  font-size: 22px;
}
.review-content h3 {
  font-size: 18px;
}
.review-content p {
  margin-bottom: 14px;
  font-size: 15px;
}
.review-content ul,
.review-content ol {
  margin: 12px 0 14px 20px;
}
.review-content ul {
  list-style: disc;
}
.review-content ol {
  list-style: decimal;
}
.review-content li {
  margin-bottom: 6px;
  font-size: 15px;
}
.review-content table {
  width: 100%;
  margin: 16px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.review-content table th {
  background: rgba(212, 175, 55, 0.08);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}
.review-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.review-content a {
  color: var(--btn-sec);
}
.review-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
}
.review-content strong {
  color: #fff;
  font-weight: 700;
}

.responsible-block {
  background: linear-gradient(135deg, #0d1520 0%, #161b25 100%);
  border: 1px solid rgba(46, 204, 113, 0.15);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 4px;
}
.responsible-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.responsible-icon {
  width: 52px;
  height: 52px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.responsible-head h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.responsible-head p {
  font-size: 14px;
  color: var(--txt-muted);
}
.responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.responsible-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26, 33, 48, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: var(--trans);
}
.responsible-link:hover {
  border-color: rgba(46, 204, 113, 0.3);
  background: rgba(46, 204, 113, 0.04);
  color: var(--txt);
}
.responsible-link svg {
  width: 20px;
  height: 20px;
  color: #2ecc71;
  flex-shrink: 0;
}
.responsible-link div {
  display: flex;
  flex-direction: column;
}
.responsible-link strong {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.responsible-link span {
  font-size: 12px;
  color: var(--txt-muted);
}
.responsible-disclaimer {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(46, 204, 113, 0.05);
  border: 1px solid rgba(46, 204, 113, 0.1);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--txt-muted);
  line-height: 1.6;
}
.responsible-disclaimer strong {
  color: #2ecc71;
}

.comments-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 4px;
}
.comment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.comment-item {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.comment-author {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}
.comment-date {
  font-size: 12px;
  color: var(--txt-muted);
}
.comment-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.star-filled {
  color: var(--gold);
}
.star-empty {
  color: var(--border);
}
.comment-text {
  font-size: 14px;
  color: var(--txt-muted);
  line-height: 1.6;
}

.comment-form {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.form-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--txt-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--txt);
  font-size: 15px;
  transition: var(--trans);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rating-stars {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.rating-star {
  font-size: 24px;
  cursor: pointer;
  color: var(--border);
  transition: var(--trans);
}
.rating-star.active,
.rating-star:hover {
  color: var(--gold);
}
.form-notice {
  font-size: 12px;
  color: var(--txt-muted);
  margin-top: 10px;
}

.footer {
  background: var(--hf);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}
.footer-inner {
  padding: 48px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--txt-muted);
  margin-top: 12px;
  line-height: 1.6;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--txt-muted);
  transition: var(--trans);
}
.footer-nav a:hover {
  color: var(--gold);
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-muted);
  transition: var(--trans);
}
.social-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--gold);
}
.social-btn svg {
  width: 16px;
  height: 16px;
}
.footer-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}
.footer-logos {
  margin-bottom: 28px;
}
.logos-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--txt-muted);
  margin-bottom: 12px;
}
.logo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.logo-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--txt-muted);
  letter-spacing: 0.3px;
}
.logo-pill:hover {
  border-color: rgba(212, 175, 55, 0.2);
  color: var(--txt);
}
.flag-it {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--txt-muted);
}
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.copyright {
  font-size: 12px;
  color: var(--txt-muted);
  line-height: 1.7;
}
.copyright a {
  color: var(--txt-muted);
}
.copyright a:hover {
  color: var(--gold);
}
.legal-text {
  font-size: 11px;
  color: rgba(154, 160, 172, 0.5);
  margin-top: 8px;
  line-height: 1.6;
  max-width: 600px;
}

.widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(90deg, var(--hf) 0%, #1e2535 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 10px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.widget-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.widget-text strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: block;
}
.widget-text span {
  color: var(--txt-muted);
  font-size: 13px;
}
.widget-btns {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.widget a {
  text-decoration: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.section-content-blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--txt-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--txt-muted);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb-sep {
  color: var(--border);
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
}

.wp-block-group {
  display: block;
}
.entry-content {
  display: block;
}
.site-main {
  display: block;
}
.elementor-section {
  display: block;
}
.elementor-widget-text-editor {
  display: block;
}
.wp-caption {
  display: block;
}
.alignnone {
  display: block;
}
.yoast-seo-placeholder {
  display: none;
}
.elementor-hidden {
  display: none !important;
}

.info-page-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 24px;
}
.info-page-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 10px;
}
.info-page-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 18px 0 8px;
}
.info-page-content p {
  font-size: 15px;
  color: var(--txt-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}
.info-page-content ul {
  margin: 10px 0 14px 20px;
  list-style: disc;
}
.info-page-content ul li {
  font-size: 15px;
  color: var(--txt-muted);
  margin-bottom: 6px;
}
.info-page-content a {
  color: var(--btn-sec);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-img-wrap {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .info-table td:first-child {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 17, 23, 0.97);
    z-index: 1000;
    padding: 80px 24px 24px;
    gap: 4px;
    overflow-y: auto;
  }
  .header-nav.active {
    display: flex;
  }
  .header-nav a {
    font-size: 17px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }
  .burger {
    display: flex;
  }
  .nav-wrap {
    gap: 12px;
  }
  .hero {
    padding: 40px 0 56px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .screenshots-grid {
    display: none;
  }
  .screenshots-slider {
    display: block;
  }
  .slider-track .screenshot-item {
    min-width: calc(100vw - 64px);
  }
  .bonuses-grid {
    display: none;
  }
  .bonuses-slider {
    display: block;
  }
  .slider-track .bonus-card {
    min-width: calc(100vw - 64px);
  }
  .mirrors-block,
  .bonuses-block,
  .screenshots-block,
  .video-block,
  .slot-block,
  .responsible-block,
  .comments-block,
  .review-block,
  .info-block {
    margin: 0;
  }
  .section {
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }
  .promo-box {
    display: block;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .widget-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .online-badge {
    display: none;
  }
}

.screenshots-slider,
.bonuses-slider {
  display: none !important;
}

@media (min-width: 769px) {
  .screenshots-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    align-items: stretch !important;
  }

  .screenshots-grid .screenshot-item {
    min-width: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
  }

  .screenshots-grid .screenshot-item:first-child {
    grid-row: 1 / span 2 !important;
  }

  .screenshots-grid .screenshot-item img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
  }

  .screenshots-grid .screenshot-item:first-child img {
    min-height: 420px !important;
  }

  .screenshots-grid .screenshot-item:not(:first-child) img {
    min-height: 202px !important;
  }
}

@media (max-width: 768px) {
  .screenshots-block,
  .bonuses-block {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 18px 14px !important;
    overflow: hidden !important;
  }

  .screenshots-block .section-header,
  .bonuses-block .section-header {
    margin-bottom: 16px !important;
  }

  .screenshots-block .section-title,
  .bonuses-block .section-title {
    font-size: clamp(24px, 7vw, 32px) !important;
    line-height: 1.15 !important;
    overflow-wrap: anywhere !important;
  }

  .screenshots-grid,
  .bonuses-grid {
    display: none !important;
  }

  .screenshots-slider,
  .bonuses-slider {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .screenshots-slider .slider-wrap,
  .bonuses-slider .slider-wrap {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .screenshots-slider .slider-track,
  .bonuses-slider .slider-track {
    width: 100% !important;
    min-width: 0 !important;
    align-items: stretch !important;
  }

  .screenshots-slider .screenshot-item,
  .bonuses-slider .bonus-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .screenshots-slider .screenshot-item img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 360px !important;
    aspect-ratio: 16 / 10 !important;
    object-fit: cover !important;
  }

  .bonuses-slider .bonus-card {
    padding: 20px 16px !important;
    min-height: 0 !important;
  }

  .screenshots-dots,
  .bonuses-dots {
    margin-top: 14px !important;
  }
}
