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

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

:root {
  --c-header: #1a1a2e;
  --c-btn-login: #e94560;
  --c-btn-reg: #f5a623;
  --c-bg: #16213e;
  --c-surface: #0f3460;
  --c-surface2: #1a2a4a;
  --c-accent: #e94560;
  --c-gold: #f5a623;
  --c-text: #e8eaf6;
  --c-text-muted: #9fa8da;
  --c-border: rgba(255, 255, 255, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-accent);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}
h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}
h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
}
ul,
ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
li {
  margin-bottom: 0.4rem;
  line-height: 1.75;
}

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

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

.box {
  padding: 24px 0;
}

.section {
  padding: 56px 0;
}
.section-inner {
  padding: 40px 32px;
  background: var(--c-surface2);
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.section-title {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 24px;
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  opacity: 0.92;
}
.btn:active {
  transform: translateY(0);
}
.btn--red,
.btn--signin {
  background: var(--c-btn-login);
  color: #fff;
}
.btn--green,
.btn--signup {
  background: var(--c-btn-reg);
  color: #1a1a2e;
}
.btn--bonus {
  background: linear-gradient(135deg, #f5a623, #e94560);
  color: #fff;
}
.btn--lg {
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 10px;
}
.btn--sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
}
.btn--outline:hover {
  background: var(--c-gold);
  color: #1a1a2e;
}

.x7f3a1,
.j2k8p9 {
  display: none;
}
.hidden-img-lazy {
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  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);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}
.header-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-online {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-online::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 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);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--c-surface) 0%,
    var(--c-header) 100%
  );
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 64px 0;
}
.hero-tag {
  display: inline-block;
  background: var(--c-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.slider-track {
  display: flex;
  transition: transform 0.45s ease;
}
.slider-track .slide {
  flex: 0 0 100%;
}
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--c-gold);
}
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 8px;
}
.slider-arrows button {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background var(--transition);
}
.slider-arrows button:hover {
  background: var(--c-accent);
}
.hero-slider .slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.breadcrumbs {
  padding: 12px 0;
  font-size: 0.85rem;
}
.breadcrumbs a {
  color: var(--c-text-muted);
}
.breadcrumbs span {
  color: var(--c-text-muted);
  margin: 0 6px;
}
.breadcrumbs .current {
  color: var(--c-gold);
}

.mirror-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.mirror-datetime {
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid var(--c-gold);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--c-gold);
  font-weight: 600;
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
table thead {
  background: var(--c-surface);
}
table th {
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--c-gold);
  font-weight: 700;
  border-bottom: 2px solid var(--c-border);
  white-space: nowrap;
}
table td {
  padding: 13px 16px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}
table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
table tr:last-child td {
  border-bottom: none;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.status-badge.active {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
}
.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.screenshot-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: transform var(--transition);
}
.screenshot-item:hover {
  transform: scale(1.02);
}
.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-badge {
  background: var(--c-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
  text-transform: uppercase;
}
.card-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-gold);
}
.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.card-desc {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.card-tag {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.wheel-section {
  text-align: center;
  padding: 40px 20px;
}
.wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.wheel-wrap {
  position: relative;
  width: 280px;
  height: 280px;
}
#luckyWheel {
  border-radius: 50%;
  box-shadow:
    0 0 0 6px var(--c-gold),
    0 0 0 10px rgba(245, 166, 35, 0.2);
}
.wheel-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 24px solid var(--c-gold);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}
.wheel-result {
  margin-top: 16px;
  padding: 20px 28px;
  background: var(--c-surface2);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.wheel-result.win {
  border-color: var(--c-gold);
  background: rgba(245, 166, 35, 0.08);
}
.wheel-result.lose {
  border-color: var(--c-accent);
}

.author-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-gold);
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.author-bio {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin: 6px 0;
}
.author-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.author-socials a {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--c-border);
  transition: all var(--transition);
}
.author-socials a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.content-area {
  line-height: 1.8;
}
.content-area h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #fff;
}
.content-area h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--c-gold);
}
.content-area p {
  margin-bottom: 1rem;
  color: var(--c-text);
}
.content-area ul,
.content-area ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.content-area li {
  margin-bottom: 0.5rem;
}
.content-area table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
}
.content-area th,
.content-area td {
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
}
.content-area th {
  background: var(--c-surface);
  color: var(--c-gold);
}
.content-area a {
  color: var(--c-gold);
  text-decoration: underline;
}
.content-area blockquote {
  border-left: 4px solid var(--c-gold);
  padding: 12px 20px;
  background: rgba(245, 166, 35, 0.07);
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.content-area img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}

.info-table-wrap {
  overflow-x: auto;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.info-table td:first-child {
  color: var(--c-text-muted);
  font-weight: 600;
  width: 45%;
}
.info-table td:last-child {
  color: #fff;
}

.promo-block {
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.15),
    rgba(233, 69, 96, 0.1)
  );
  border: 2px solid var(--c-gold);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.promo-label {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--c-header);
  border: 2px solid var(--c-gold);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 12px 0;
}
.promo-code-text {
  padding: 12px 24px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: 2px;
  font-family: monospace;
}
.promo-copy-btn {
  background: var(--c-gold);
  color: #1a1a2e;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background var(--transition);
}
.promo-copy-btn:hover {
  background: var(--c-accent);
  color: #fff;
}
.promo-note {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-top: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  gap: 12px;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.04);
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition:
    transform var(--transition),
    background var(--transition);
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 16px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--c-gold);
  color: #1a1a2e;
}

.download-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 14px 24px;
  transition: all var(--transition);
  text-decoration: none;
  color: #fff;
}
.dl-btn:hover {
  border-color: var(--c-gold);
  background: rgba(245, 166, 35, 0.08);
  color: #fff;
}
.dl-btn-icon {
  font-size: 1.8rem;
}
.dl-btn-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--c-text-muted);
}
.dl-btn-text strong {
  font-size: 1rem;
  font-weight: 700;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.spec-item {
  background: var(--c-surface2);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--c-border);
}
.spec-label {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 4px;
}
.spec-value {
  font-weight: 700;
  color: #fff;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: transform var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.feature-title {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cat-card {
  background: var(--c-surface2);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: all var(--transition);
}
.cat-card:hover {
  border-color: var(--c-gold);
  background: rgba(245, 166, 35, 0.07);
}
.cat-card .icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.cat-card .label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-muted);
}

.demo-wrap {
  border-radius: var(--radius);
  border: 2px solid var(--c-border);
  background: #000;
}
.demo-placeholder {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #0f3460, #1a1a2e);
}

.compare-table th {
  background: var(--c-surface);
  color: var(--c-gold);
  font-weight: 700;
}
.compare-table td {
  text-align: center;
}
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
}
.check {
  color: #4caf50;
  font-size: 1.1rem;
}
.cross {
  color: var(--c-accent);
  font-size: 1.1rem;
}

.reg-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reg-method {
  background: var(--c-surface2);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--c-border);
  transition: border-color var(--transition);
}
.reg-method:hover {
  border-color: var(--c-gold);
}
.reg-method-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.reg-method-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.reg-method-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.site-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}
.footer-top {
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.footer-col-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--c-gold);
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.payment-logo,
.provider-logo {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.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);
}
.footer-legal-links a:hover {
  color: var(--c-gold);
}
.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--c-accent);
  color: var(--c-accent);
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #1a1a2e, #0f3460);
  border-top: 2px solid var(--c-gold);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.widget-text {
  font-size: 0.85rem;
  color: var(--c-text);
}
.widget-text strong {
  color: var(--c-gold);
}
.widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.widget-close:hover {
  color: #fff;
}
.widget-btns {
  display: flex;
  gap: 8px;
}

.technical-content {
  padding: 56px 0 80px;
}
.technical-content h1 {
  margin-bottom: 2rem;
}
.technical-content h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
  color: var(--c-gold);
}
.technical-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.6rem;
}
.technical-content p {
  margin-bottom: 1rem;
  color: var(--c-text-muted);
}
.technical-content ul,
.technical-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.technical-content li {
  margin-bottom: 0.4rem;
  color: var(--c-text-muted);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }
  .header-nav {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--c-header);
    flex-direction: column;
    padding: 16px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--c-border);
    z-index: 999;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    padding: 10px 14px;
    font-size: 1rem;
  }
  .burger {
    display: flex;
  }
  .header-online {
    display: none;
  }
  .header-actions .btn span {
    display: none;
  }
  .header-actions .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .hero {
    min-height: 400px;
  }
  .hero-content {
    padding: 40px 0;
  }
  .hero-slider .slide img {
    height: 240px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .reg-methods {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .author-block {
    grid-template-columns: 1fr;
  }
  .author-photo {
    width: 64px;
    height: 64px;
  }
  .sticky-widget {
    flex-wrap: wrap;
    padding: 8px 14px;
  }
  .widget-text {
    font-size: 0.78rem;
  }
  .download-btns {
    flex-direction: column;
  }
  .section-inner {
    padding: 24px 18px;
  }
  .promo-code-text {
    font-size: 1.1rem;
    padding: 10px 16px;
  }
}
@media (max-width: 479px) {
  .hero h1 {
    font-size: 1.4rem;
  }
  .cards-grid,
  .screenshots-grid {
    overflow-x: auto;
    flex-direction: row;
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .cards-grid .card,
  .screenshots-grid .screenshot-item {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.btn--bonus {
  background: #f59e0b;
  color: #1a1a2e;
}
.btn--bonus:hover {
  background: #d97706;
  color: #1a1a2e;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 26, 0.97);
  z-index: 999;
  overflow-y: auto;
}
.mobile-nav.active {
  display: flex;
  align-items: flex-start;
}
.mobile-nav-inner {
  padding: 80px 24px 32px;
  width: 100%;
}
.mobile-nav-links {
  display: grid;
  gap: 4px;
}
.mobile-nav-links a {
  display: block;
  padding: 14px 16px;
  color: #e2e8f0;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.x4b7r2 {
  display: none;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
.q9w1m5 {
  opacity: 0;
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.r3k8p0 {
  font-size: 0;
  color: transparent;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.a2f6n9 {
  display: none !important;
}
.v7c1l4 {
  visibility: hidden;
  overflow: hidden;
  max-height: 0;
}
.wp-block-placeholder,
.elementor-invisible,
.wp-post-image {
  display: none !important;
}
.site-main > .entry-content {
  display: block;
}
.wp-caption {
  max-width: 100%;
  margin: 1em 0;
}
.alignnone {
  margin: 0.5em 1em 0.5em 0;
}
.wp-image-base,
.attachment-full {
  max-width: 100%;
  height: auto;
}

.section-inner {
  overflow: visible;
  max-width: 100%;
}

.content-area {
  max-width: 100%;
  overflow: visible;
}

.content-area table {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 767px) {
  .section-inner {
    overflow-x: clip;
  }

  .content-area table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    max-width: calc(100vw - 76px);
  }

  .content-area th,
  .content-area td {
    white-space: nowrap;
    min-width: 120px;
  }
}

.header-logo img,
.footer-logo img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(90%) saturate(1500%)
    hue-rotate(316deg) brightness(95%) contrast(95%);
}

.section-inner.fade-in-up,
.section-inner {
  opacity: 1 !important;
}

@media (max-width: 767px) {
  .burger span {
    background: var(--c-gold);
  }

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