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

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

:root {
  --clr-dark: #1a1a1a;
  --clr-dark2: #111111;
  --clr-red: #e10600;
  --clr-red2: #ff1e1e;
  --clr-white: #ffffff;
  --clr-bg: #f5f5f5;
  --clr-bg2: #fafafa;
  --clr-border: #e0e0e0;
  --clr-text: #222222;
  --clr-text-muted: #666666;
  --clr-gold: #f5a623;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.15);
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--clr-white);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--clr-red);
  transition: color var(--transition);
}

a:hover {
  color: var(--clr-red2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--clr-dark);
}

p {
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

ul,
ol {
  padding-left: 1.5rem;
}

li {
  line-height: 1.7;
  margin-bottom: 0.35rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
}

table th,
table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--clr-border);
}

table th {
  background: var(--clr-dark);
  color: var(--clr-white);
  font-weight: 600;
}

table tr:nth-child(even) td {
  background: var(--clr-bg);
}

.wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-full {
  width: 100%;
  padding: 0;
}

.section {
  padding: 3rem 0;
}

.section-sm {
  padding: 1.75rem 0;
}

.box {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 1.75rem;
}

.box-dark {
  background: var(--clr-dark);
  color: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 1.75rem;
}

.box-dark h2,
.box-dark h3,
.box-dark h4 {
  color: var(--clr-white);
}

.box-accent {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--clr-white);
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-red);
  box-shadow: 0 0 24px rgba(225, 6, 0, 0.18);
  padding: 2rem;
  margin-bottom: 1.75rem;
}

.box-accent h2,
.box-accent h3,
.box-accent p {
  color: var(--clr-white);
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.text-center {
  text-align: center;
}

.mt1 {
  margin-top: 1rem;
}
.mt2 {
  margin-top: 2rem;
}
.mb1 {
  margin-bottom: 1rem;
}
.mb2 {
  margin-bottom: 2rem;
}
.p05 {
  padding: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.btn--red {
  background: var(--clr-red);
  color: var(--clr-white);
}

.btn--red:hover {
  background: #c00400;
  color: var(--clr-white);
}

.btn--signup,
.btn--red2 {
  background: var(--clr-red2);
  color: var(--clr-white);
}

.btn--signup:hover,
.btn--red2:hover {
  background: #e01010;
  color: var(--clr-white);
}

.btn--dark {
  background: var(--clr-dark);
  color: var(--clr-white);
}

.btn--dark:hover {
  background: #333;
  color: var(--clr-white);
}

.btn--outline {
  background: transparent;
  color: var(--clr-red);
  border: 2px solid var(--clr-red);
}

.btn--outline:hover {
  background: var(--clr-red);
  color: var(--clr-white);
}

.btn--lg {
  padding: 0.85rem 2.2rem;
  font-size: 1.05rem;
}

.btn--md {
  padding: 0.6rem 1.4rem;
  font-size: 0.93rem;
}

.btn--bonus {
  background: var(--clr-gold);
  color: var(--clr-dark);
  font-weight: 700;
}

.btn--bonus:hover {
  background: #d4900d;
  color: var(--clr-dark);
}

.btn--green {
  background: #1db954;
  color: var(--clr-white);
}

.btn--green:hover {
  background: #17a347;
  color: var(--clr-white);
}

.site-header {
  background: var(--clr-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  align-items: center;
}

.header-nav a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
  background: rgba(225, 6, 0, 0.15);
  color: var(--clr-white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: nowrap;
}

.header-online {
  font-size: 0.78rem;
  color: #aaa;
  white-space: nowrap;
}

.header-online span {
  color: #4caf50;
  font-weight: 700;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--clr-dark);
  min-height: 420px;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 420px;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  display: flex;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  max-width: 600px;
}

.hero-content h1,
.hero-content h2 {
  color: var(--clr-white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--clr-red);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: var(--clr-red);
}

.hero-arrow--prev {
  left: 1.25rem;
}
.hero-arrow--next {
  right: 1.25rem;
}

.hero-banner {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-banner .hero-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--clr-dark);
  position: relative;
  padding-bottom: 0.6rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--clr-red);
  border-radius: 2px;
  margin-top: 0.5rem;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pros-col,
.cons-col {
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.pros-col {
  background: #f0faf3;
  border: 1.5px solid #b2dfdb;
}

.cons-col {
  background: #fff5f5;
  border: 1.5px solid #ffcdd2;
}

.pros-col h3 {
  color: #2e7d32;
  margin-bottom: 1rem;
}

.cons-col h3 {
  color: #c62828;
  margin-bottom: 1rem;
}

.pros-col ul,
.cons-col ul {
  list-style: none;
  padding: 0;
}

.pros-col li::before {
  content: "✓ ";
  color: #2e7d32;
  font-weight: 700;
}

.cons-col li::before {
  content: "✗ ";
  color: #c62828;
  font-weight: 700;
}

.mirror-block .mirror-date {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.mirror-date span {
  color: #2e7d32;
  font-weight: 700;
}

.overflow-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.video-block {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-md);
}

.video-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-md);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.game-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-dark);
  box-shadow: var(--shadow);
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.game-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.game-card-body {
  padding: 1rem;
}

.game-card-body h4 {
  color: var(--clr-white);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.demo-block {
  border-radius: var(--radius-md);
}

.demo-block iframe {
  width: 100%;
  height: 500px;
  border: 0;
  border-radius: var(--radius-md);
}

.content-block {
  padding: 2rem;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-bottom: 1.75rem;
}

.content-block h2 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  color: var(--clr-dark);
}

.content-block h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--clr-dark);
}

.content-block p {
  line-height: 1.75;
  color: var(--clr-text);
  margin-bottom: 0.85rem;
}

.content-block ul,
.content-block ol {
  margin-bottom: 1rem;
}

.content-block li {
  line-height: 1.7;
}

.content-block table {
  margin-bottom: 1.25rem;
}

.content-block a {
  color: var(--clr-red);
  text-decoration: underline;
}

.faq-block {
  margin-bottom: 1.75rem;
}

.faq-item {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Roboto", sans-serif;
  color: var(--clr-dark);
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--clr-bg);
}

.faq-question.active {
  background: var(--clr-dark);
  color: var(--clr-white);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--clr-text);
}

.faq-answer.open {
  display: block;
  animation: fadeIn 0.22s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  background: var(--clr-dark);
  color: #aaa;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer-logo p {
  font-size: 0.85rem;
  color: #999;
  max-width: 260px;
  line-height: 1.5;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--clr-white);
}

.footer-payments {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-payments h4,
.footer-providers h4 {
  color: var(--clr-white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.payment-icons,
.provider-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.payment-icon,
.provider-icon {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  color: #ddd;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-legal-links a {
  color: #777;
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #aaa;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1a1a1a 0%, #2a0000 100%);
  border-top: 2px solid var(--clr-red);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 24px rgba(225, 6, 0, 0.22);
}

.sticky-widget-text {
  color: var(--clr-white);
  font-size: 0.98rem;
  font-weight: 600;
}

.sticky-widget-text span {
  color: var(--clr-gold);
}

.sticky-widget-close {
  background: none;
  border: none;
  color: #999;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0.3rem;
  transition: color var(--transition);
}

.sticky-widget-close:hover {
  color: var(--clr-white);
}

.breadcrumbs {
  padding: 0.75rem 0;
  margin-bottom: 1.25rem;
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.breadcrumbs li {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumbs li::after {
  content: "›";
  color: var(--clr-border);
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs a {
  color: var(--clr-text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--clr-red);
}

.promo-code-block {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a00 100%);
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 1.75rem;
  box-shadow: 0 0 32px rgba(245, 166, 35, 0.2);
}

.promo-code-block h2 {
  color: var(--clr-white);
  margin-bottom: 0.75rem;
}

.promo-code-block p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed var(--clr-gold);
  border-radius: var(--radius-md);
  padding: 0.85rem 2rem;
  margin-bottom: 1.5rem;
}

.promo-code-display code {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--clr-gold);
  letter-spacing: 0.12em;
  font-family: "Roboto", monospace;
}

.copy-btn {
  background: var(--clr-gold);
  color: var(--clr-dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}

.copy-btn:hover {
  background: #d4900d;
  transform: scale(1.05);
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.bonus-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bonus-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.85rem;
}

.bonus-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.bonus-card .bonus-amount {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--clr-red);
  margin-bottom: 0.5rem;
}

.bonus-card p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.advantage-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.advantage-item:hover {
  transform: translateY(-3px);
}

.advantage-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.advantage-item h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.advantage-item p {
  font-size: 0.86rem;
  color: var(--clr-text-muted);
}

.author-block {
  background: var(--clr-bg2);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.75rem;
}

.author-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--clr-red);
  text-decoration: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.review-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-weight: 600;
  font-size: 0.97rem;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.6rem;
}

.review-stars svg {
  fill: var(--clr-gold);
}

.review-text {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.review-form {
  background: var(--clr-bg2);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  max-width: 580px;
}

.review-form h3 {
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--clr-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-white);
  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;
  background: #e8f5e9;
  border: 1.5px solid #a5d6a7;
  border-radius: var(--radius-sm);
  padding: 1rem;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 0.75rem;
}

.info-table-wrap table th {
  width: 38%;
}

.jackpot-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.jackpot-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d0000 100%);
  border: 1.5px solid var(--clr-red);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
}

.jackpot-card h3 {
  color: #aaa;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.jackpot-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-gold);
}

.slots-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.slot-category {
  background: var(--clr-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  text-decoration: none;
}

.slot-category:hover {
  background: var(--clr-red);
  transform: translateY(-3px);
  color: var(--clr-white);
}

.slot-category-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.slot-category span {
  color: var(--clr-white);
  font-size: 0.88rem;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.feature-item {
  background: var(--clr-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-item span:first-child {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-item-text h4 {
  color: var(--clr-white);
  font-size: 0.97rem;
  margin-bottom: 0.25rem;
}

.feature-item-text p {
  color: #aaa;
  font-size: 0.82rem;
  margin: 0;
}

.bypass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.bypass-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.bypass-card h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--clr-dark);
}

.bypass-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}

.bypass-card .bypass-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.badge-recommended {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-ok {
  background: #fff9c4;
  color: #f57f17;
}

.tech-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.tech-spec-card {
  background: var(--clr-dark);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.tech-spec-card h3 {
  color: var(--clr-white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1.5px solid #333;
}

.tech-spec-table {
  width: 100%;
}

.tech-spec-table td {
  padding: 0.45rem 0;
  font-size: 0.9rem;
  border: none;
  vertical-align: top;
}

.tech-spec-table td:first-child {
  color: #888;
  width: 50%;
}

.tech-spec-table td:last-child {
  color: var(--clr-white);
  font-weight: 500;
}

.alternatives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.alternative-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.alternative-card:hover {
  transform: translateY(-3px);
}

.alternative-card h4 {
  font-size: 0.97rem;
  margin-bottom: 0.4rem;
}

.alternative-card p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.75rem;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.6rem;
}

.star-icon {
  fill: var(--clr-gold);
}

.bonus-dep-block {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d0000 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 1.75rem;
  border: 1.5px solid var(--clr-red);
}

.bonus-dep-block h2 {
  color: var(--clr-white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.bonus-dep-block .bonus-amount-big {
  font-size: 3rem;
  font-weight: 900;
  color: var(--clr-gold);
  display: block;
  margin: 0.75rem 0;
  text-shadow: 0 2px 12px rgba(245, 166, 35, 0.4);
}

.bonus-dep-block p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.wp-thumbnail {
  display: none;
}
.widget_recent_entries {
  display: none;
}
.elementor-hidden {
  display: none !important;
}
.woocommerce-placeholder {
  display: none;
}
.yoast-breadcrumb {
  display: none;
}

.hx7f3a {
  display: none;
}
.k9m2vp {
  overflow: hidden;
  height: 0;
}
.xb4r7c {
  position: absolute;
  left: -9999px;
}
.z2n8qs {
  visibility: hidden;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .alternatives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .slots-categories {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto auto;
    flex-wrap: wrap;
  }

  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-dark2);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    z-index: 1100;
    gap: 0.25rem;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    font-size: 1.2rem;
    padding: 0.65rem 0.75rem;
    width: 100%;
  }

  .burger {
    display: flex;
    z-index: 1200;
    position: relative;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .header-actions .btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 1.5rem;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-cards {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jackpot-block {
    grid-template-columns: 1fr;
  }

  .slots-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .bypass-grid {
    grid-template-columns: 1fr;
  }

  .tech-specs {
    grid-template-columns: 1fr;
  }

  .alternatives-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sticky-widget {
    flex-direction: column;
    text-align: center;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }

  .demo-block iframe {
    height: 320px;
  }

  .section {
    padding: 2rem 0;
  }

  .box {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1,
  .hero-content h2 {
    font-size: 1.25rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

.tech-spec-card {
  background: #181818;
  border: 1px solid #2f2f2f;
  border-radius: 16px;
  padding: 28px;
}

.tech-spec-card h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #383838;
}

.tech-spec-table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.tech-spec-table tr,
.tech-spec-table tr:nth-child(even),
.tech-spec-table tr:nth-child(odd) {
  background: transparent;
}

.tech-spec-table tr:nth-child(even) td,
.tech-spec-table tr:nth-child(odd) td {
  background: transparent;
}

.tech-spec-table td {
  border: none;
  border-bottom: 1px solid #303030;
  padding: 14px 10px;
  vertical-align: middle;
  line-height: 1.4;
}

.tech-spec-table tr:last-child td {
  border-bottom: none;
}

.tech-spec-table td:first-child {
  width: 48%;
  color: #a8a8a8;
  font-weight: 400;
}

.tech-spec-table td:last-child {
  color: #ffffff;
  font-weight: 600;
  text-align: left;
}

.tech-spec-table tr:hover td {
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 600px) {
  .tech-spec-card {
    padding: 20px 16px;
  }

  .tech-spec-card h3 {
    font-size: 20px;
  }

  .tech-spec-table td {
    padding: 12px 6px;
    font-size: 14px;
  }

  .tech-spec-table td:first-child {
    width: 52%;
  }
}
