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

:root {
  --rr-bg: #1A1B20;
  --rr-bg-2: #21222a;
  --rr-bg-3: #2a2b35;
  --rr-surface: #262832;
  --rr-surface-2: #2e3040;
  --rr-green: #20AA2E;
  --rr-green-hover: #1a9226;
  --rr-green-glow: rgba(32,170,46,0.25);
  --rr-gold: #d4a843;
  --rr-gold-light: #f0c85a;
  --rr-text: #e8e9ef;
  --rr-text-muted: #9095a8;
  --rr-text-dim: #6b7080;
  --rr-border: rgba(255,255,255,0.08);
  --rr-border-2: rgba(255,255,255,0.12);
  --rr-radius: 12px;
  --rr-radius-sm: 8px;
  --rr-radius-lg: 18px;
  --rr-transition: 0.22s cubic-bezier(0.4,0,0.2,1);
  --rr-shadow: 0 4px 24px rgba(0,0,0,0.5);
  --rr-shadow-green: 0 4px 24px rgba(32,170,46,0.3);
  --font: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; background: var(--rr-bg); font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--rr-bg);
  color: var(--rr-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.f9k2x { display: none; visibility: hidden; }
.wp-content-placeholder { font-size: 0; height: 0; overflow: hidden; }

.x7m3r { display: none; }
.q2p9n { height: 0; overflow: hidden; position: absolute; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.box {
  border-radius: var(--rr-radius-lg);
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--rr-radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--rr-transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--rr-transition);
}

.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn--primary {
  background: var(--rr-green);
  color: #fff;
  box-shadow: 0 2px 14px rgba(32,170,46,0.35);
}

.btn--primary:hover {
  background: var(--rr-green-hover);
  box-shadow: var(--rr-shadow-green);
  transform: translateY(-1px);
  color: #fff;
}

.btn--secondary {
  background: var(--rr-surface);
  color: var(--rr-text);
  border: 1px solid var(--rr-border-2);
}

.btn--secondary:hover {
  background: var(--rr-surface-2);
  color: var(--rr-text);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--rr-text-muted);
  border: 1px solid var(--rr-border);
}

.btn--ghost:hover {
  background: var(--rr-surface);
  color: var(--rr-text);
  border-color: var(--rr-border-2);
}

.btn--lg { padding: 14px 32px; font-size: 14px; border-radius: var(--rr-radius); }
.btn--sm { padding: 7px 14px; font-size: 12px; }

.btn--pulse {
  animation: btnPulse 2.4s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 2px 14px rgba(32,170,46,0.35); }
  50% { box-shadow: 0 4px 28px rgba(32,170,46,0.6); }
}

.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--rr-text);
  margin-bottom: 8px;
  line-height: 1.25;
}

.section-subtitle {
  color: var(--rr-text-muted);
  font-size: 14px;
  margin-bottom: 28px;
  font-weight: 500;
}

.card {
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  padding: 24px;
  transition: border-color var(--rr-transition), transform var(--rr-transition);
}

.card:hover {
  border-color: var(--rr-border-2);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge--green { background: rgba(32,170,46,0.18); color: #3dd44d; }
.badge--gold { background: rgba(212,168,67,0.18); color: var(--rr-gold-light); }
.badge--red { background: rgba(220,60,60,0.18); color: #f07070; }

/* ===================== HEADER ===================== */

.site-header {
  background: var(--rr-bg);
  border-bottom: 1px solid var(--rr-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

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

.header-logo span {
  font-size: 20px;
  font-weight: 900;
  color: var(--rr-gold);
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
}

.header-nav li a {
  color: var(--rr-text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--rr-radius-sm);
  transition: all var(--rr-transition);
  text-decoration: none;
}

.header-nav li a:hover { color: var(--rr-text); background: var(--rr-surface); }

.header-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--rr-text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.header-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rr-green);
  animation: onlinePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes onlinePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.header-online-count {
  color: var(--rr-green);
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--rr-radius-sm);
  background: none;
  border: none;
  outline: none;
  margin-left: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rr-text);
  border-radius: 2px;
  transition: all var(--rr-transition);
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--rr-bg-2);
  border-top: 1px solid var(--rr-border);
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-menu.active { display: block; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu ul li a {
  display: block;
  color: var(--rr-text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--rr-radius-sm);
  transition: all var(--rr-transition);
}

.mobile-menu ul li a:hover { color: var(--rr-text); background: var(--rr-surface); }

/* ===================== HERO ===================== */

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/hero-banner.png');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,27,32,0.95) 35%, rgba(26,27,32,0.5) 70%, rgba(26,27,32,0.1) 100%);
  z-index: 1;
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--rr-bg), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}

.hero-badge {
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  max-width: 600px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 span { color: var(--rr-green); }

.hero-desc {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}

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

.hero-stat-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--rr-gold);
  line-height: 1.1;
}

.hero-stat-lbl {
  font-size: 11px;
  color: var(--rr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ===================== BREADCRUMBS ===================== */

.breadcrumbs {
  padding: 12px 0;
}

.breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--rr-text-muted);
  flex-wrap: wrap;
}

.breadcrumbs-inner a {
  color: var(--rr-text-muted);
  font-weight: 500;
}

.breadcrumbs-inner a:hover { color: var(--rr-text); }

.breadcrumbs-sep {
  color: var(--rr-text-dim);
  font-size: 11px;
}

.breadcrumbs-current {
  color: var(--rr-green);
  font-weight: 600;
}

/* ===================== SECTIONS ===================== */

.section {
  padding: 48px 0;
}

.section + .section { padding-top: 0; }

.section-head { margin-bottom: 28px; }

/* ===================== PROS/CONS ===================== */

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros-cons-card {
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  padding: 24px;
}

.pros-cons-card.pros { border-top: 3px solid var(--rr-green); }
.pros-cons-card.cons { border-top: 3px solid #dc3c3c; }

.pros-cons-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
}

.pros-cons-title.pros { color: var(--rr-green); }
.pros-cons-title.cons { color: #f07070; }

.pros-cons-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.pros-cons-icon.pros { background: rgba(32,170,46,0.18); color: var(--rr-green); }
.pros-cons-icon.cons { background: rgba(220,60,60,0.18); color: #f07070; }

.pros-cons-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--rr-text);
  line-height: 1.5;
}

.pros-cons-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  font-weight: 900;
}

.pros .pros-cons-list li::before {
  content: '✓';
  background: rgba(32,170,46,0.18);
  color: var(--rr-green);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cons .pros-cons-list li::before {
  content: '✕';
  background: rgba(220,60,60,0.18);
  color: #f07070;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===================== MIRRORS TABLE ===================== */

.mirrors-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.mirrors-timestamp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--rr-text-muted);
  font-weight: 600;
  background: var(--rr-surface);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--rr-border);
}

.mirrors-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rr-green);
  animation: onlinePulse 2s ease-in-out infinite;
}

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--rr-radius); }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 480px;
}

table th {
  background: var(--rr-surface-2);
  color: var(--rr-text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rr-border);
}

table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--rr-border);
  color: var(--rr-text);
  vertical-align: middle;
}

table tbody tr { transition: background var(--rr-transition); }
table tbody tr:hover { background: var(--rr-surface); }
table tbody tr:last-child td { border-bottom: none; }

.mirror-status { display: flex; align-items: center; gap: 6px; }
.mirror-status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rr-green); }
.mirror-status-text { font-size: 12px; font-weight: 700; color: var(--rr-green); }

/* ===================== GAMES GRID ===================== */

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

.game-card {
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  overflow: hidden;
  transition: all var(--rr-transition);
  cursor: pointer;
}

.game-card:hover {
  border-color: var(--rr-green);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(32,170,46,0.2);
}

.game-card-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-thumb img { transform: scale(1.06); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,27,32,0.9) 0%, transparent 60%);
}

.game-card-body {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.game-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--rr-text);
}

.game-card-provider {
  font-size: 11px;
  color: var(--rr-text-muted);
  margin-top: 2px;
}

.games-slider-wrap { position: relative; }

/* ===================== SLOT MINIGAME ===================== */

.slot-machine {
  background: linear-gradient(145deg, #21222a, #1e1f26);
  border: 1px solid var(--rr-border-2);
  border-radius: var(--rr-radius-lg);
  padding: 36px 24px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--rr-shadow);
}

.slot-machine-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--rr-gold);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.slot-machine-sub {
  font-size: 13px;
  color: var(--rr-text-muted);
  margin-bottom: 28px;
}

.slot-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.slot-reel {
  width: 88px;
  height: 88px;
  background: var(--rr-bg);
  border: 2px solid var(--rr-border-2);
  border-radius: var(--rr-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.4);
}

.slot-reel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.06s linear;
}

.slot-reel.spinning .slot-reel-inner {
  animation: reelSpin 0.1s linear infinite;
}

@keyframes reelSpin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-88px); }
}

.slot-result {
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.slot-win-text {
  font-size: 18px;
  font-weight: 900;
  color: var(--rr-green);
  margin-bottom: 12px;
  animation: winAppear 0.4s ease-out;
}

@keyframes winAppear {
  from { opacity: 0; transform: scale(0.8) translateY(6px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.slot-lose-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--rr-text-muted);
  animation: winAppear 0.4s ease-out;
}

/* ===================== REVIEW CONTENT ===================== */

.review-author {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.review-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rr-bg);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--rr-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--rr-gold);
}

.review-author-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--rr-text);
  margin-bottom: 4px;
}

.review-author-bio {
  font-size: 12.5px;
  color: var(--rr-text-muted);
  line-height: 1.5;
}

.review-author-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--rr-gold);
  margin-top: 6px;
}

.review-content-wrap {
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  padding: 28px 32px;
}

.review-content-wrap h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--rr-text);
  margin: 24px 0 12px;
  line-height: 1.25;
}

.review-content-wrap h2:first-child { margin-top: 0; }

.review-content-wrap h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--rr-text);
  margin: 20px 0 10px;
}

.review-content-wrap h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--rr-gold);
  margin: 16px 0 8px;
}

.review-content-wrap p {
  font-size: 14.5px;
  color: var(--rr-text);
  line-height: 1.72;
  margin-bottom: 14px;
}

.review-content-wrap ul,
.review-content-wrap ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.review-content-wrap li {
  font-size: 14px;
  color: var(--rr-text);
  line-height: 1.65;
  margin-bottom: 6px;
}

.review-content-wrap strong { color: var(--rr-text); font-weight: 700; }
.review-content-wrap em { color: var(--rr-text-muted); font-style: italic; }

.review-content-wrap a { color: var(--rr-gold); }
.review-content-wrap a:hover { color: var(--rr-gold-light); }

.review-content-wrap blockquote {
  border-left: 3px solid var(--rr-green);
  padding: 12px 20px;
  margin: 16px 0;
  background: rgba(32,170,46,0.06);
  border-radius: 0 var(--rr-radius-sm) var(--rr-radius-sm) 0;
  font-style: italic;
  color: var(--rr-text-muted);
}

.review-content-wrap table {
  margin: 16px 0;
  width: 100%;
  border-radius: var(--rr-radius-sm);
  overflow: hidden;
  border: 1px solid var(--rr-border);
}

/* ===================== TESTIMONIALS ===================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  padding: 22px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--rr-border-2);
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--rr-text);
}

.testimonial-location {
  font-size: 11px;
  color: var(--rr-text-muted);
  margin-top: 1px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--rr-gold);
}

.testimonial-text {
  font-size: 13.5px;
  color: var(--rr-text-muted);
  line-height: 1.62;
}

.testimonial-date {
  font-size: 11px;
  color: var(--rr-text-dim);
  font-weight: 600;
}

/* ===================== REVIEW FORM ===================== */

.review-form-wrap {
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  padding: 28px 32px;
  max-width: 560px;
}

.review-form-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--rr-text);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--rr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--rr-bg);
  border: 1px solid var(--rr-border-2);
  border-radius: var(--rr-radius-sm);
  padding: 11px 14px;
  color: var(--rr-text);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color var(--rr-transition), box-shadow var(--rr-transition);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--rr-green);
  box-shadow: 0 0 0 3px rgba(32,170,46,0.15);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--rr-text-dim); }

.form-textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  background: rgba(32,170,46,0.12);
  border: 1px solid rgba(32,170,46,0.3);
  border-radius: var(--rr-radius-sm);
  padding: 14px 18px;
  color: var(--rr-green);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.form-success.visible { display: block; animation: winAppear 0.4s ease-out; }

/* ===================== FOOTER ===================== */

.site-footer {
  background: var(--rr-bg);
  border-top: 1px solid var(--rr-border);
  padding: 48px 0 24px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-brand-logo img { height: 36px; }
.footer-brand-logo span { font-size: 18px; font-weight: 900; color: var(--rr-gold); }

.footer-desc {
  font-size: 13px;
  color: var(--rr-text-muted);
  line-height: 1.62;
  margin-bottom: 20px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rr-text-muted);
  margin-bottom: 14px;
}

.footer-col-nav { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col-nav li a {
  font-size: 13px;
  color: var(--rr-text-muted);
  font-weight: 500;
  transition: color var(--rr-transition);
}

.footer-col-nav li a:hover { color: var(--rr-text); }

.footer-divider {
  border: none;
  border-top: 1px solid var(--rr-border);
  margin: 0 0 28px;
}

.footer-payment-section { margin-bottom: 20px; }
.footer-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--rr-text-dim);
  margin-bottom: 10px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge {
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius-sm);
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--rr-text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--rr-border);
}

.footer-copyright {
  font-size: 12px;
  color: var(--rr-text-dim);
  line-height: 1.6;
}

.footer-legal {
  font-size: 11.5px;
  color: var(--rr-text-dim);
  line-height: 1.6;
  max-width: 600px;
  text-align: right;
}

.footer-license {
  font-size: 11px;
  color: var(--rr-text-dim);
  margin-top: 6px;
}

.footer-age-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--rr-text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--rr-text-dim);
  flex-shrink: 0;
}

/* ===================== STICKY WIDGET ===================== */

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #1a1b20f5, #1c2024f5);
  border-top: 1px solid var(--rr-border-2);
  backdrop-filter: blur(16px);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.sticky-widget.visible { transform: translateY(0); }

.sticky-widget-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-widget-text {
  display: flex;
  flex-direction: column;
}

.sticky-widget-bonus {
  font-size: 16px;
  font-weight: 900;
  color: var(--rr-gold);
}

.sticky-widget-sub {
  font-size: 12px;
  color: var(--rr-text-muted);
  font-weight: 500;
}

.sticky-widget-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sticky-widget-close {
  background: none;
  border: none;
  color: var(--rr-text-dim);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1;
  transition: color var(--rr-transition);
  font-family: var(--font);
}

.sticky-widget-close:hover { color: var(--rr-text); }

/* ===================== CONTENT PAGE ===================== */

.info-content {
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  padding: 36px 40px;
  margin: 32px 0;
}

.info-content h1 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--rr-text);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rr-border);
}

.info-content h2 {
  font-size: 19px;
  font-weight: 800;
  color: var(--rr-text);
  margin: 28px 0 12px;
}

.info-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--rr-gold);
  margin: 22px 0 10px;
}

.info-content p {
  font-size: 14.5px;
  color: var(--rr-text-muted);
  line-height: 1.72;
  margin-bottom: 14px;
}

.info-content ul, .info-content ol { padding-left: 22px; margin-bottom: 14px; }

.info-content li {
  font-size: 14px;
  color: var(--rr-text-muted);
  line-height: 1.65;
  margin-bottom: 6px;
}

.info-content a { color: var(--rr-gold); }

.info-content strong { color: var(--rr-text); }

/* ===================== FADE-IN ANIMATION ===================== */

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

/* ===================== FAQ ===================== */

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--rr-surface);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  overflow: hidden;
  transition: border-color var(--rr-transition);
}

.faq-item.open { border-color: var(--rr-border-2); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.faq-question-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--rr-text);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--rr-text-muted);
  flex-shrink: 0;
  transition: transform var(--rr-transition);
  border: 1px solid var(--rr-border);
}

.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--rr-green); }

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 13.5px;
  color: var(--rr-text-muted);
  line-height: 1.65;
}

.faq-item.open .faq-answer { display: block; }

/* ===================== UNUSED ELEMENTS (LAYOUT UNIQUENESS) ===================== */

.wp-block-group { display: contents; }
.entry-content { display: contents; }
.elementor-widget-container { display: contents; }
.has-small-font-size { font-size: 0.875em; }

.k9x2m { display: none; position: absolute; width: 0; height: 0; overflow: hidden; }
.p4n7q { pointer-events: none; visibility: hidden; }
.t3r8v { opacity: 0; position: absolute; }
.m2w6s { font-size: 0; line-height: 0; }

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-online { display: none; }
  .burger { display: flex; }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hero { min-height: 440px; }
  .hero-stats { gap: 16px; }

  .pros-cons-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-legal { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .review-content-wrap { padding: 20px 18px; }
  .review-form-wrap { padding: 20px 18px; }
  .info-content { padding: 24px 20px; }

  .sticky-widget-inner { flex-direction: column; align-items: flex-start; gap: 10px; }

  table th, table td { padding: 10px 12px; }
}

@media (max-width: 540px) {
  .hero h1 { font-size: 26px; }
  .games-grid { grid-template-columns: 1fr; }
  .slot-reels { gap: 8px; }
  .slot-reel { width: 76px; height: 76px; font-size: 38px; }
  .header-actions .btn--secondary { display: none; }
}

@media (max-width: 380px) {
  .slot-reel { width: 64px; height: 64px; font-size: 32px; }
}

/* ===================== GAMES SLIDER MOBILE ===================== */

@media (max-width: 768px) {
  .games-slider-enabled .games-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .games-slider-enabled .games-grid::-webkit-scrollbar { height: 4px; }
  .games-slider-enabled .games-grid::-webkit-scrollbar-track { background: var(--rr-surface); border-radius: 2px; }
  .games-slider-enabled .games-grid::-webkit-scrollbar-thumb { background: var(--rr-border-2); border-radius: 2px; }

  .games-slider-enabled .game-card {
    min-width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}
