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

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

:root {
  --clr-bg: #181819;
  --clr-header: #232323;
  --clr-btn-login: #181819;
  --clr-btn-reg: #eb880c;
  --clr-accent: #eb880c;
  --clr-accent2: #f5a030;
  --clr-text: #e8e8e8;
  --clr-text-muted: #9a9a9a;
  --clr-border: #2e2e30;
  --clr-card: #1f1f21;
  --clr-card2: #252527;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-main: "Montserrat", "Inter", Arial, sans-serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

html {
  background: var(--clr-bg);
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--clr-accent2);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.3;
  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: 0.9em;
}
ul,
ol {
  padding-left: 1.4em;
  margin-bottom: 0.9em;
}
li {
  margin-bottom: 0.3em;
}

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

.b9x2a {
  display: none;
}
.q7m3z {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo img {
  height: 44px;
  width: auto;
}
.header-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  color: #ccc;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  background: rgba(235, 136, 12, 0.12);
  color: var(--clr-accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.online-count {
  font-size: 11px;
  color: var(--clr-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.online-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.2s;
  white-space: nowrap;
  text-decoration: none !important;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.btn:active {
  transform: translateY(0);
}
.btn--login {
  background: #2a2a2c;
  color: #e8e8e8;
  border: 1px solid #3a3a3c;
}
.btn--login:hover {
  background: #333335;
  color: #fff;
}
.btn--reg {
  background: var(--clr-btn-reg);
  color: #fff;
}
.btn--reg:hover {
  background: var(--clr-accent2);
  color: #fff;
}
.btn--large {
  padding: 13px 32px;
  font-size: 15px;
  border-radius: var(--radius-md);
}
.btn--xl {
  padding: 16px 40px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e8e8e8;
  border-radius: 2px;
  transition: all 0.3s;
}
.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);
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }
  .header-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--clr-header);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    z-index: 899;
    border-top: 1px solid var(--clr-border);
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav a {
    padding: 10px 14px;
    font-size: 15px;
  }
  .burger {
    display: flex;
  }
  .header-actions {
    order: 3;
  }
}
@media (max-width: 480px) {
  .btn--login span {
    display: none;
  }
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #0d0d0e;
}
.hero-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hero-slide {
  min-width: 100%;
  position: relative;
}
.hero-slide img {
  width: 100%;
  height: clamp(260px, 45vw, 520px);
  object-fit: cover;
  object-position: center;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  align-items: center;
}
.hero-slide-content {
  padding: 24px 48px;
  max-width: 560px;
}
.hero-slide-content h2 {
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.hero-slide-content p {
  color: #e0e0e0;
  margin-bottom: 18px;
  font-size: clamp(13px, 2vw, 16px);
}
.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
}
.hero-arrow {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-size: 18px;
}
.hero-arrow:hover {
  background: var(--clr-accent);
}
.hero-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s;
}
.hero-dot.active {
  background: var(--clr-accent);
}
@media (max-width: 600px) {
  .hero-slide-content {
    padding: 16px 20px;
  }
}

.hero-static {
  position: relative;
  overflow: hidden;
}
.hero-static img {
  width: 100%;
  height: clamp(220px, 38vw, 440px);
  object-fit: cover;
  object-position: center;
}
.hero-static-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 70%,
    transparent 100%
  );
  display: flex;
  align-items: center;
}
.hero-static-content {
  padding: 24px 48px;
  max-width: 560px;
}
.hero-static-content h1 {
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.hero-static-content p {
  color: #e0e0e0;
  margin-bottom: 18px;
  font-size: clamp(13px, 2vw, 16px);
}
@media (max-width: 600px) {
  .hero-static-content {
    padding: 16px 20px;
  }
}

.section {
  padding: 48px 0;
}
.section + .section {
  padding-top: 0;
}
.section-title {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--clr-accent);
  display: inline-block;
}

.info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.info-table th,
.info-table td {
  padding: 12px 18px;
  border: 1px solid var(--clr-border);
  text-align: left;
}
.info-table th {
  background: #232325;
  color: var(--clr-accent);
  font-weight: 600;
  font-size: 13px;
  width: 40%;
  white-space: nowrap;
}
.info-table td {
  color: var(--clr-text);
  font-size: 14px;
}
.info-table tr:hover td {
  background: rgba(235, 136, 12, 0.05);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pros-block,
.cons-block {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid var(--clr-border);
}
.pros-block {
  border-top: 3px solid #22c55e;
}
.cons-block {
  border-top: 3px solid #ef4444;
}
.pros-block h3 {
  color: #22c55e;
  margin-bottom: 14px;
}
.cons-block h3 {
  color: #ef4444;
  margin-bottom: 14px;
}
.pros-block ul,
.cons-block ul {
  list-style: none;
  padding: 0;
}
.pros-block li::before {
  content: "✓";
  color: #22c55e;
  margin-right: 8px;
  font-weight: 700;
}
.cons-block li::before {
  content: "✗";
  color: #ef4444;
  margin-right: 8px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

.screenshots-slider {
  position: relative;
  overflow: hidden;
}
.screenshots-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.screenshot-item {
  min-width: calc(33.333% - 11px);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--clr-border);
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.screenshot-item:hover {
  border-color: var(--clr-accent);
  transform: translateY(-3px);
}
.screenshot-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .screenshot-item {
    min-width: 80%;
  }
  .screenshots-track {
    cursor: grab;
  }
}

.video-block {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-block {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}
.demo-wrap {
  position: relative;
  padding-bottom: 62%;
}
.demo-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-block {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  border: 1px solid var(--clr-border);
}
.content-block h2 {
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-border);
}
.content-block h3 {
  color: var(--clr-accent);
  margin: 18px 0 8px;
}
.content-block h4 {
  color: #ccc;
  margin: 14px 0 6px;
}
.content-block p {
  color: var(--clr-text);
  line-height: 1.7;
}
.content-block ul,
.content-block ol {
  color: var(--clr-text);
}
.content-block a {
  color: var(--clr-accent);
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.content-block table th {
  background: #232325;
  color: var(--clr-accent);
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  text-align: left;
}
.content-block table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
}
.content-block strong {
  color: #fff;
}
@media (max-width: 600px) {
  .content-block {
    padding: 18px 16px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--clr-accent);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  gap: 12px;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(235, 136, 12, 0.15);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s;
  font-weight: 700;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--clr-accent);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s;
  padding: 0 20px;
  color: var(--clr-text);
  line-height: 1.7;
  font-size: 14px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 16px;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bonus-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-accent);
  box-shadow: 0 8px 32px rgba(235, 136, 12, 0.15);
}
.bonus-card-icon {
  font-size: 2rem;
}
.bonus-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.bonus-card-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-accent);
}
.bonus-card-desc {
  color: var(--clr-text-muted);
  font-size: 13px;
  flex: 1;
}
@media (max-width: 900px) {
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .bonuses-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .bonus-card {
    min-width: 75vw;
    scroll-snap-align: start;
  }
}

.promo-section {
  background: linear-gradient(135deg, #1a1006 0%, #2a1a08 50%, #1a1006 100%);
  border: 2px solid var(--clr-accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(235, 136, 12, 0.08) 0%,
    transparent 70%
  );
}
.promo-section h3 {
  color: var(--clr-accent);
  font-size: 1.4rem;
  margin-bottom: 8px;
  position: relative;
}
.promo-section p {
  color: #ddd;
  margin-bottom: 16px;
  position: relative;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #0d0d0e;
  border: 2px solid var(--clr-accent);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.promo-code-text {
  padding: 12px 20px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-accent);
  letter-spacing: 4px;
}
.promo-copy-btn {
  background: var(--clr-accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s;
}
.promo-copy-btn:hover {
  background: var(--clr-accent2);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  margin: 0 -4px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-width: 500px;
}
.compare-table th {
  background: #232325;
  color: var(--clr-accent);
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--clr-border);
  font-size: 13px;
}
.compare-table td {
  padding: 11px 16px;
  border: 1px solid var(--clr-border);
  font-size: 14px;
  color: var(--clr-text);
}
.compare-table tr:hover td {
  background: rgba(235, 136, 12, 0.04);
}
.compare-table .check {
  color: #22c55e;
  font-weight: 700;
}
.compare-table .cross {
  color: #ef4444;
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eb880c, #f5a030);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-name {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}
.review-stars {
  color: #f59e0b;
  font-size: 13px;
}
.review-text {
  color: var(--clr-text-muted);
  font-size: 13px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-form {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.review-form h3 {
  color: #fff;
  margin-bottom: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  color: var(--clr-text-muted);
  font-size: 13px;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  background: #0d0d0e;
  border: 1px solid var(--clr-border);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid #22c55e;
  color: #22c55e;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  margin-top: 12px;
}

.app-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 32px 0;
}
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  transition:
    border-color 0.2s,
    transform 0.2s;
  min-width: 180px;
}
.app-btn:hover {
  border-color: var(--clr-accent);
  transform: translateY(-2px);
}
.app-btn-icon {
  font-size: 2rem;
}
.app-btn-text span {
  display: block;
}
.app-btn-text .label {
  font-size: 11px;
  color: var(--clr-text-muted);
}
.app-btn-text .store {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.specs-table th {
  background: #232325;
  color: var(--clr-accent);
  padding: 11px 16px;
  text-align: left;
  border: 1px solid var(--clr-border);
  font-size: 13px;
}
.specs-table td {
  padding: 11px 16px;
  border: 1px solid var(--clr-border);
  font-size: 14px;
  color: var(--clr-text);
}
.specs-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}

.slots-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.slot-cat-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--clr-border);
  background: var(--clr-card);
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font-main);
  transition: all 0.2s;
}
.slot-cat-btn:hover,
.slot-cat-btn.active {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.slot-card {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition:
    transform 0.2s,
    border-color 0.2s;
  cursor: pointer;
}
.slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-accent);
}
.slot-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.slot-card-body {
  padding: 10px 12px;
}
.slot-card-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.slot-card-rtp {
  font-size: 11px;
  color: var(--clr-accent);
  font-weight: 600;
}
.slot-card-provider {
  font-size: 11px;
  color: var(--clr-text-muted);
}
@media (max-width: 900px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.popup-overlay.open {
  display: flex;
}
.popup-box {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 900px;
  overflow: hidden;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.2s;
}
.popup-close:hover {
  background: var(--clr-accent);
}
.popup-iframe-wrap {
  padding-bottom: 56.25%;
  position: relative;
}
.popup-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mirror-block {
  background: linear-gradient(135deg, #1a1006 0%, #221508 100%);
  border: 2px solid var(--clr-accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.mirror-block h3 {
  color: var(--clr-accent);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.mirror-block p {
  color: #ccc;
  margin-bottom: 20px;
}
.mirror-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.mirror-btn {
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.mirror-btn--primary {
  background: var(--clr-accent);
  color: #fff;
}
.mirror-btn--secondary {
  background: var(--clr-card2);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.mirror-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.author-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-accent);
  flex-shrink: 0;
}
.author-info h4 {
  color: #fff;
  margin-bottom: 6px;
}
.author-info p {
  color: var(--clr-text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.author-links {
  display: flex;
  gap: 10px;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--clr-accent);
  border: 1px solid var(--clr-accent);
  padding: 5px 10px;
  border-radius: 20px;
  transition: background 0.2s;
}
.author-link:hover {
  background: var(--clr-accent);
  color: #fff;
}
@media (max-width: 600px) {
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-links {
    justify-content: center;
  }
}

.site-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 40px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}
.footer-logo p {
  color: var(--clr-text-muted);
  font-size: 12px;
  line-height: 1.6;
}
.footer-nav h4,
.footer-legal h4 {
  color: #fff;
  font-size: 13px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-nav ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a,
.footer-legal a {
  color: var(--clr-text-muted);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--clr-accent);
}
.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.payment-badge,
.provider-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  color: #bbb;
  font-weight: 600;
}
.footer-copy {
  color: var(--clr-text-muted);
  font-size: 12px;
  text-align: center;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-logo {
    grid-column: 1/-1;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: linear-gradient(135deg, #1a0e00, #231200);
  border-top: 2px solid var(--clr-accent);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(235, 136, 12, 0.2);
}
.widget-text {
  color: #e8e8e8;
  font-size: 13px;
  font-weight: 500;
}
.widget-text strong {
  color: var(--clr-accent);
}
.widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 20px;
  padding: 0 4px;
  flex-shrink: 0;
  line-height: 1;
}
.sticky-widget.hidden {
  display: none;
}
@media (max-width: 600px) {
  .widget-text {
    font-size: 12px;
  }
}

.breadcrumb {
  padding: 12px 0;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
}
.breadcrumb a {
  color: var(--clr-text-muted);
}
.breadcrumb a:hover {
  color: var(--clr-accent);
}
.breadcrumb span {
  color: var(--clr-text-muted);
}
.breadcrumb .current {
  color: #fff;
}

.tech-content {
  background: var(--clr-card);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--clr-border);
}
.tech-content h2 {
  color: var(--clr-accent);
  margin: 20px 0 10px;
}
.tech-content h3 {
  color: #ddd;
  margin: 16px 0 8px;
}
.tech-content p {
  color: var(--clr-text);
  line-height: 1.7;
}
.tech-content ul,
.tech-content ol {
  color: var(--clr-text);
}
.tech-content a {
  color: var(--clr-accent);
}

.text-accent {
  color: var(--clr-accent);
}
.text-muted {
  color: var(--clr-text-muted);
}
.mt1 {
  margin-top: 8px;
}
.mt2 {
  margin-top: 16px;
}
.mt3 {
  margin-top: 24px;
}
.mt4 {
  margin-top: 32px;
}
.mb1 {
  margin-bottom: 8px;
}
.mb2 {
  margin-bottom: 16px;
}
.mb3 {
  margin-bottom: 24px;
}
.text-center {
  text-align: center;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap-2 {
  gap: 16px;
}

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

.x9k2p {
  position: relative;
}
.z4w8m {
  display: flex;
}
.r3q7j {
  align-items: stretch;
}
.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
  gap: 1rem;
}
.entry-content {
  display: block;
}
.post-content {
  display: block;
}

.btn--sm {
  padding: 7px 14px;
  font-size: 12px;
}
.btn--outline {
  background: transparent;
  color: var(--clr-accent);
  border: 1.5px solid var(--clr-accent);
}
.btn--outline:hover {
  background: var(--clr-accent);
  color: #fff;
}
.btn--copy {
  background: var(--clr-accent);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn--copy:hover {
  background: var(--clr-accent2);
  transform: translateY(-1px);
}

.d-none {
  display: none !important;
}

.mirror-problem-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.mirror-problem-intro {
  color: var(--clr-text-muted);
  margin-bottom: 20px;
  font-size: 14px;
}
.mirror-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mirror-action-card {
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mirror-action-icon {
  font-size: 2rem;
}
.mirror-action-label {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.mirror-action-desc {
  color: var(--clr-text-muted);
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
}
.mirror-guide {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 1px solid var(--clr-border);
  margin-top: 6px;
}
.mirror-guide ol {
  color: var(--clr-text);
  padding-left: 1.2em;
  font-size: 13px;
}
.mirror-guide li {
  margin-bottom: 4px;
}
@media (max-width: 600px) {
  .mirror-actions {
    grid-template-columns: 1fr;
  }
}

.bonus-reg-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bonus-reg-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.bonus-reg-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-2px);
}
.bonus-reg-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}
.bonus-reg-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.bonus-reg-desc {
  color: var(--clr-text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.bonus-reg-body {
  flex: 1;
}
.promo-accent {
  border-top: 3px solid var(--clr-accent);
}

.promo-code-section {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.promo-code-info {
  flex: 1;
  min-width: 200px;
}
.promo-code-info p {
  color: var(--clr-text-muted);
  font-size: 13px;
  margin-bottom: 6px;
}
.promo-code-display {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.promo-code-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-accent);
  letter-spacing: 4px;
  font-family: var(--font-main);
  background: rgba(235, 136, 12, 0.1);
  border: 2px dashed var(--clr-accent);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-accent);
  flex-shrink: 0;
}
.author-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.author-bio {
  color: var(--clr-text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--clr-accent);
  border: 1px solid var(--clr-accent);
  padding: 5px 12px;
  border-radius: 20px;
  transition: background 0.2s;
}
.author-social-link:hover {
  background: var(--clr-accent);
  color: #fff;
}

.rtp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
}
.rtp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-card);
  min-width: 480px;
}
.rtp-table th {
  background: #232325;
  color: var(--clr-accent);
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--clr-border);
  font-size: 13px;
}
.rtp-table td {
  padding: 11px 16px;
  border: 1px solid var(--clr-border);
  font-size: 14px;
  color: var(--clr-text);
}
.rtp-table tr:hover td {
  background: rgba(235, 136, 12, 0.04);
}
.rtp-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .page-bonuses .bonuses-grid,
  .page-promocodes .bonuses-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
    scroll-snap-type: none !important;
  }

  .page-bonuses .bonus-card,
  .page-promocodes .bonus-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    scroll-snap-align: unset !important;
  }

  .page-bonuses .bonus-card-amount,
  .page-promocodes .bonus-card-amount {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 480px) {
  .page-bonuses .container,
  .page-promocodes .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .page-bonuses .bonus-card,
  .page-promocodes .bonus-card {
    padding: 18px !important;
  }

  .page-bonuses .btn,
  .page-promocodes .btn {
    width: 100%;
    justify-content: center;
  }
}
