@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");

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

:root {
  --clr-dark: #020a17;
  --clr-dark2: #071428;
  --clr-red: #dd3031;
  --clr-light: #fefcf9;
  --clr-bg: #fefefe;
  --clr-muted: #6b7280;
  --clr-border: #e5e7eb;
  --clr-card: #f9fafb;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 16px rgba(2, 10, 23, 0.1);
  --shadow-lg: 0 6px 32px rgba(2, 10, 23, 0.18);
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
}
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--clr-dark);
  background: var(--clr-bg);
  overflow-x: hidden;
}

.press-start {
  font-family: "Press Start 2P", monospace;
}

a {
  color: var(--clr-red);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-dark);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn:active {
  transform: translateY(0);
}
.btn--light {
  background: var(--clr-light);
  color: var(--clr-dark);
}
.btn--red {
  background: var(--clr-red);
  color: #fff;
}
.btn--dark {
  background: var(--clr-dark);
  color: var(--clr-light);
}
.btn--bonus {
  background: linear-gradient(90deg, #e8a020, #dd3031);
  color: #fff;
}
.btn--lg {
  padding: 14px 34px;
  font-size: 15px;
}
.btn--md {
  padding: 10px 20px;
  font-size: 13px;
}
.btn--sm {
  padding: 7px 14px;
  font-size: 12px;
}

.site-header {
  background: var(--clr-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
}
.header-logo img {
  height: 64px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.header-nav a {
  color: var(--clr-light);
  font-size: 13px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}
.header-nav a:hover {
  background: var(--clr-red);
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.online-count {
  color: #4ade80;
  font-size: 11px;
  margin-right: 8px;
  white-space: nowrap;
}
.online-count::before {
  content: "●";
  margin-right: 4px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: transparent;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-light);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.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);
}

.mob-nav {
  display: none;
  background: var(--clr-dark2);
  flex-direction: column;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mob-nav.open {
  display: flex;
}
.mob-nav a {
  color: var(--clr-light);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
}
.mob-nav-btns {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--clr-dark);
  min-height: 340px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 5%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-content h2 {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(14px, 2.5vw, 26px);
  color: var(--clr-light);
  line-height: 1.4;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.hero-content p {
  color: rgba(254, 252, 249, 0.85);
  font-size: 15px;
  margin-bottom: 22px;
  line-height: 1.6;
}
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--clr-red);
}
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 16px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.hero-prev {
  left: 12px;
}
.hero-next {
  right: 12px;
}
.hero-prev:hover,
.hero-next:hover {
  background: var(--clr-red);
}

.section {
  padding: 48px 0;
}
.section--dark {
  background: var(--clr-dark);
}
.section--grey {
  background: #f4f6fa;
}
.section-title {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(13px, 2vw, 20px);
  color: var(--clr-dark);
  margin-bottom: 28px;
  line-height: 1.4;
}
.section--dark .section-title {
  color: var(--clr-light);
}
.section-subtitle {
  font-size: 15px;
  color: var(--clr-muted);
  margin-top: -20px;
  margin-bottom: 28px;
}

.card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.card--dark {
  background: var(--clr-dark2);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--clr-light);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}
.info-table table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
}
.info-table td,
.info-table th {
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  text-align: left;
  font-size: 14px;
}
.info-table tr:nth-child(even) td {
  background: #f3f5fa;
}
.info-table td:first-child {
  font-weight: 700;
  color: var(--clr-dark);
  background: #eef1f7;
  min-width: 160px;
}
.info-table td:last-child {
  color: #1a2540;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-col,
.cons-col {
  border-radius: var(--radius-md);
  padding: 22px;
}
.pros-col {
  background: #edfbf0;
  border: 1.5px solid #6ee7a0;
}
.cons-col {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
}
.pros-col h3 {
  color: #15803d;
  margin-bottom: 14px;
  font-size: 15px;
}
.cons-col h3 {
  color: #b91c1c;
  margin-bottom: 14px;
  font-size: 15px;
}
.pros-col ul,
.cons-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pros-col li::before {
  content: "✔ ";
  color: #15803d;
  font-weight: 700;
}
.cons-col li::before {
  content: "✖ ";
  color: #b91c1c;
  font-weight: 700;
}
.pros-col li,
.cons-col li {
  font-size: 14px;
  line-height: 1.55;
}

.jackpot-block {
  background: linear-gradient(135deg, #020a17 60%, #1a0505 100%);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--clr-red);
}
.jackpot-amount {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(22px, 4vw, 48px);
  color: #fbbf24;
  text-shadow: 0 0 20px #fbbf2488;
  margin: 12px 0;
}
.jackpot-label {
  color: var(--clr-light);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.game-card {
  background: var(--clr-dark2);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}
.game-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(221, 48, 49, 0.25);
}
.game-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.game-card-body {
  padding: 10px 8px;
  text-align: center;
}
.game-card-body span {
  display: block;
  color: var(--clr-light);
  font-size: 11px;
  margin-bottom: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-block {
  background: var(--clr-dark);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(221, 48, 49, 0.35);
}
.demo-block iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

.content-block {
  max-width: 860px;
}
.content-block h2 {
  font-size: 22px;
  margin: 24px 0 12px;
  color: var(--clr-dark);
  line-height: 1.35;
}
.content-block h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: #1a2540;
}
.content-block p {
  margin-bottom: 14px;
  line-height: 1.65;
  font-size: 15px;
}
.content-block ul,
.content-block ol {
  margin: 12px 0 16px 22px;
}
.content-block li {
  margin-bottom: 7px;
  line-height: 1.6;
  font-size: 15px;
}
.content-block a {
  color: var(--clr-red);
  text-decoration: underline;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
.content-block table td,
.content-block table th {
  padding: 10px 14px;
  border: 1.5px solid var(--clr-border);
  font-size: 14px;
  text-align: left;
}
.content-block table th {
  background: #eef1f7;
  font-weight: 700;
}
.content-block table tr:nth-child(even) td {
  background: #f7f8fb;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f9fc;
  transition: background var(--transition);
  user-select: none;
}
.faq-q:hover {
  background: #eef1f8;
}
.faq-q .faq-icon {
  font-size: 18px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 14px 20px 18px;
}

.site-footer {
  background: var(--clr-dark);
  color: rgba(254, 252, 249, 0.8);
  margin-top: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 32px;
  padding: 40px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer-nav a {
  color: rgba(254, 252, 249, 0.75);
  font-size: 13px;
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--clr-red);
}
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 10px;
}
.footer-legal-nav a {
  color: rgba(254, 252, 249, 0.5);
  font-size: 12px;
}
.footer-legal-nav a:hover {
  color: var(--clr-light);
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.payment-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-light);
  letter-spacing: 0.04em;
}
.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.provider-badge {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 4px 9px;
  font-size: 11px;
  color: rgba(254, 252, 249, 0.6);
}
.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(254, 252, 249, 0.45);
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #020a17 0%, #12050f 100%);
  border-top: 2px solid var(--clr-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 12px;
}
.widget-text {
  color: var(--clr-light);
  font-size: 13px;
  flex: 1;
}
.widget-text strong {
  color: #fbbf24;
}
.widget-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 18px;
  padding: 4px 8px;
  flex-shrink: 0;
  line-height: 1;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: var(--clr-dark2);
  border: 1.5px solid rgba(221, 48, 49, 0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(221, 48, 49, 0.2);
}
.bonus-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.bonus-card-title {
  font-family: "Press Start 2P", monospace;
  font-size: 11px;
  color: var(--clr-light);
  margin-bottom: 10px;
  line-height: 1.5;
}
.bonus-card-amount {
  font-size: 22px;
  font-weight: 900;
  color: #fbbf24;
  margin-bottom: 8px;
}
.bonus-card-desc {
  font-size: 13px;
  color: rgba(254, 252, 249, 0.65);
  line-height: 1.55;
}

.promo-accent {
  background: linear-gradient(135deg, #020a17, #200508);
  border: 2px solid var(--clr-red);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 2px dashed var(--clr-red);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  margin: 16px 0;
}
.promo-code-text {
  font-family: "Press Start 2P", monospace;
  font-size: 18px;
  color: #fbbf24;
  letter-spacing: 0.1em;
}
.copy-btn {
  background: var(--clr-red);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: background var(--transition);
}
.copy-btn:hover {
  background: #b91c1c;
}

.app-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.app-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #f4f6fa;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
}
.app-spec-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.app-spec-label {
  font-size: 12px;
  color: var(--clr-muted);
}
.app-spec-value {
  font-weight: 700;
  font-size: 14px;
  color: var(--clr-dark);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--clr-card);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-border);
}
.review-author {
  font-weight: 700;
  font-size: 14px;
}
.review-stars {
  color: #fbbf24;
  font-size: 14px;
}
.review-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.review-form {
  background: var(--clr-card);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px;
  max-width: 520px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-dark);
}
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-red);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  display: none;
  color: #15803d;
  background: #edfbf0;
  border: 1px solid #6ee7a0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 10px;
}

.author-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #f4f6fa;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1.5px solid var(--clr-border);
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--clr-red);
}
.author-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}
.author-role {
  font-size: 13px;
  color: var(--clr-muted);
  margin-bottom: 10px;
}
.author-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}
.author-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.author-links a {
  font-size: 13px;
  color: var(--clr-red);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  padding: 12px 0;
  color: var(--clr-muted);
}
.breadcrumb a {
  color: var(--clr-red);
}
.breadcrumb span::before {
  content: "/";
  margin-right: 6px;
}

.screenshots-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.screenshots-track {
  display: flex;
  transition: transform 0.4s ease;
}
.screenshot-item {
  min-width: 33.333%;
  padding: 0 8px;
}
.screenshot-item img {
  width: 100%;
  border-radius: var(--radius-sm);
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1.5px solid var(--clr-border);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.slot-card {
  background: var(--clr-dark2);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.slot-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(221, 48, 49, 0.25);
}
.slot-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.slot-card-body {
  padding: 12px;
}
.slot-card-title {
  color: var(--clr-light);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.slot-card-meta {
  color: rgba(254, 252, 249, 0.55);
  font-size: 11px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--clr-border);
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.feature-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 13px;
  color: var(--clr-muted);
  line-height: 1.55;
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.popup-overlay.open {
  display: flex;
}
.popup-box {
  background: var(--clr-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 90%;
  max-width: 860px;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}
.popup-box iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.official-link-block {
  text-align: center;
  padding: 32px;
  background: var(--clr-dark);
  border-radius: var(--radius-lg);
  border: 2px solid var(--clr-red);
}
.official-link-block p {
  color: rgba(254, 252, 249, 0.8);
  margin-bottom: 16px;
  font-size: 15px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}
.comparison-table table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  font-size: 14px;
  text-align: left;
}
.comparison-table th {
  background: var(--clr-dark);
  color: var(--clr-light);
}
.comparison-table tr:nth-child(even) td {
  background: #f3f5fa;
}
.comparison-table .check {
  color: #16a34a;
  font-weight: 700;
}
.comparison-table .cross {
  color: #dc2626;
  font-weight: 700;
}

.get-bonus-block {
  background: linear-gradient(135deg, #020a17, #1a0505);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 2px solid var(--clr-red);
}
.get-bonus-block h2 {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(13px, 2vw, 18px);
  color: var(--clr-light);
  margin-bottom: 14px;
  line-height: 1.5;
}
.get-bonus-block p {
  color: rgba(254, 252, 249, 0.75);
  font-size: 15px;
  margin-bottom: 22px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.advantage-item {
  text-align: center;
  padding: 20px 12px;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--clr-border);
}
.advantage-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.advantage-title {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 5px;
}
.advantage-desc {
  font-size: 12px;
  color: var(--clr-muted);
  line-height: 1.5;
}

.technical-content {
  background: var(--clr-bg);
  padding: 48px 0;
}
.technical-content h1 {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(13px, 2vw, 18px);
  margin-bottom: 24px;
  color: var(--clr-dark);
  line-height: 1.45;
}
.technical-content-body h2 {
  font-size: 20px;
  margin: 28px 0 12px;
  color: var(--clr-dark);
  border-left: 4px solid var(--clr-red);
  padding-left: 12px;
}
.technical-content-body h3 {
  font-size: 17px;
  margin: 20px 0 9px;
  color: #1a2540;
}
.technical-content-body p {
  margin-bottom: 14px;
  line-height: 1.65;
  font-size: 15px;
  color: #374151;
}
.technical-content-body ul,
.technical-content-body ol {
  margin: 12px 0 18px 22px;
}
.technical-content-body li {
  margin-bottom: 7px;
  font-size: 15px;
  line-height: 1.6;
}
.technical-content-body a {
  color: var(--clr-red);
  text-decoration: underline;
}
.technical-content-body strong {
  color: var(--clr-dark);
}

.qd7k2 {
  display: none;
}
.wp-block-cover {
  display: none;
}
.entry-meta {
  display: none;
}

@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .hero-content h2 {
    font-size: 13px;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .games-grid,
  .bonus-grid,
  .review-cards,
  .pros-cons,
  .slots-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-specs {
    grid-template-columns: 1fr;
  }
  .screenshot-item {
    min-width: 85%;
  }
  .sticky-widget {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .header-actions .btn--light {
    display: none;
  }
  .sticky-widget .widget-text {
    font-size: 12px;
  }
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.p53xn {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.x9a1 {
  font-size: 0;
}


/* Hero banner height fix */
.hero-slider {
  width: 100%;
  height: clamp(400px, 31vw, 520px) !important;
  min-height: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}
.hero-slider .hero-slide,
.hero-slider .hero-slide.active {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: 48px 5% 64px !important;
}
.hero-slider .hero-slide-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.hero-slider .hero-dots {
  bottom: 20px !important;
}
.page-hero {
  min-height: 400px !important;
  padding: 56px 0 !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  overflow: hidden !important;
}
.page-hero > div:first-child {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
@media (max-width: 768px) {
  .hero-slider {
    height: 410px !important;
  }
  .hero-slider .hero-slide,
  .hero-slider .hero-slide.active {
    padding: 42px 54px 66px !important;
    align-items: center !important;
  }
  .page-hero {
    min-height: 360px !important;
    padding: 48px 0 !important;
  }
}
@media (max-width: 480px) {
  .hero-slider {
    height: 390px !important;
  }
  .hero-slider .hero-slide,
  .hero-slider .hero-slide.active {
    padding: 36px 46px 62px !important;
  }
  .hero-prev,
  .hero-next {
    width: 34px !important;
    height: 34px !important;
  }
}
