:root {
  --bg: #1a1b20;
  --bg-card: #1e2028;
  --bg-card2: #22242d;
  --bg-input: #2a2c38;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --text-secondary: #b0b3bf;
  --text-muted: #6d7080;
  --green: #20aa2e;
  --green-hover: #1c9628;
  --secondary: #262832;
  --secondary-hover: #2e3042;
  --gold: #f5a623;
  --red: #e85b4b;
  --blue: #4a90d9;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 5px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --tr: all 0.25s ease;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--green);
  text-decoration: none;
  transition: var(--tr);
}
a:hover {
  color: var(--green-hover);
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}
input,
textarea,
select {
  font-family: var(--font);
}

.rr-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.rr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.rr-section {
  padding: 60px 0;
}
.rr-section--sm {
  padding: 40px 0;
}

/* ==================== HEADER ==================== */
.rr-header {
  background: #1a1b20;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  transition: var(--tr);
}

.rr-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.rr-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  flex-wrap: nowrap;
}

.rr-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.rr-logo img {
  height: 62px;
  width: auto;
  border-radius: 6px;
}

.rr-logo__text {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

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

.rr-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rr-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--tr);
  white-space: nowrap;
}

.rr-nav a:hover,
.rr-nav a.active {
  color: var(--text);
  background: var(--secondary);
}

.rr-nav a svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.rr-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.rr-reviews-count {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.rr-reviews-count strong {
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--tr);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn--primary {
  background: var(--green);
  color: #fff;
}

.btn--primary:hover {
  background: var(--green-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(32, 170, 46, 0.4);
}

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

.btn--secondary:hover {
  background: var(--secondary-hover);
  color: var(--text);
  border-color: var(--border-hover);
}

.btn--sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}
.btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
}

.btn--outline:hover {
  background: var(--green);
  color: #fff;
}

.rr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

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

.rr-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.rr-burger.active span:nth-child(2) {
  opacity: 0;
}
.rr-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.rr-hero {
  position: relative;
  padding: 70px 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #14151a 0%, #1a1b20 50%, #1e2028 100%);
}

.rr-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/roban.jpeg") center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.rr-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.rr-hero__content {
  flex: 1;
}

.rr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(32, 170, 46, 0.15);
  border: 1px solid rgba(32, 170, 46, 0.3);
  color: var(--green);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.rr-hero__title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

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

.rr-hero__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 560px;
  line-height: 1.7;
}

.rr-hero__updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.rr-hero__updated svg {
  width: 13px;
  height: 13px;
}

.rr-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.rr-hero__rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rr-rating-score {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.rr-rating-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.rr-star {
  font-size: 1.1rem;
  color: #3a3c48;
  transition: var(--tr);
}

.rr-star.filled {
  color: var(--gold);
}

.rr-rating-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.rr-hero__tiles {
  flex: 0 0 340px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rr-info-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px;
  transition: var(--tr);
}

.rr-info-tile:hover {
  border-color: var(--border-hover);
  background: var(--bg-card2);
}

.rr-info-tile__icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
  line-height: 1;
}

.rr-info-tile__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.rr-info-tile__value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.rr-info-tile__value.green {
  color: var(--green);
}
.rr-info-tile__value.gold {
  color: var(--gold);
}

/* ==================== BONUSES ==================== */
.rr-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.rr-bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.rr-bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #4ae058);
}

.rr-bonus-card:hover {
  border-color: rgba(32, 170, 46, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.rr-bonus-card--featured::before {
  background: linear-gradient(90deg, var(--gold), #f7c44e);
}
.rr-bonus-card--featured {
  border-color: rgba(245, 166, 35, 0.2);
}

.rr-bonus-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.rr-bonus-card__type {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--green);
  font-weight: 600;
}

.rr-bonus-card--featured .rr-bonus-card__type {
  color: var(--gold);
}

.rr-bonus-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.rr-bonus-card__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.rr-bonus-card__wager {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* ==================== SECTION TITLES ==================== */
.rr-section-header {
  margin-bottom: 36px;
}

.rr-section-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.rr-section-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.rr-section-label {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ==================== CTA BANNER ==================== */
.rr-cta-banner {
  background: linear-gradient(135deg, #1c2a1e 0%, #1e2028 100%);
  border: 1px solid rgba(32, 170, 46, 0.2);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 20px;
}

.rr-cta-banner__text {
  flex: 1;
}

.rr-cta-banner__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.rr-cta-banner__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.rr-cta-banner__desc a {
  color: var(--green);
}

/* ==================== REVIEW CARDS ==================== */
.rr-reviews-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.rr-rating-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.rr-rating-big {
  text-align: center;
  flex-shrink: 0;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}

.rr-rating-big__score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.rr-rating-big__total {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.rr-rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rr-rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rr-rating-bar__label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  width: 90px;
  flex-shrink: 0;
}

.rr-rating-bar__track {
  flex: 1;
  height: 6px;
  background: var(--secondary);
  border-radius: 3px;
  overflow: hidden;
}

.rr-rating-bar__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 1s ease;
}

.rr-rating-bar__val {
  font-size: 0.78rem;
  color: var(--text-secondary);
  width: 20px;
  text-align: right;
  flex-shrink: 0;
}

.rr-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rr-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--tr);
  animation: fadeInUp 0.4s ease both;
}

.rr-review-card:hover {
  border-color: var(--border-hover);
}

.rr-review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.rr-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rr-review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
  background: var(--secondary);
}

.rr-review-avatar-fallback {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.rr-review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rr-review-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.rr-review-country {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.rr-review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.rr-review-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.rr-review-rating-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.rr-review-score {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

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

.rr-review-star {
  font-size: 0.9rem;
  color: #3a3c48;
}
.rr-review-star.filled {
  color: var(--gold);
}

.rr-rating-toggle-btn {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 4px;
  transition: var(--tr);
  text-decoration: underline dotted;
}

.rr-rating-toggle-btn:hover {
  color: var(--text-secondary);
  background: var(--secondary);
}

.rr-rating-breakdown {
  display: none;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 14px;
  gap: 8px;
  flex-direction: column;
}

.rr-rating-breakdown.open {
  display: flex;
}

.rr-breakdown-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rr-breakdown-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  width: 110px;
  flex-shrink: 0;
}

.rr-breakdown-bar {
  flex: 1;
  height: 5px;
  background: var(--secondary);
  border-radius: 3px;
  overflow: hidden;
}

.rr-breakdown-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}

.rr-breakdown-val {
  font-size: 0.78rem;
  color: var(--text-muted);
  width: 16px;
  text-align: right;
}

.rr-review-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--secondary);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.rr-review-source a {
  color: var(--blue);
  font-weight: 600;
}

.rr-review-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.rr-review-body {
  position: relative;
  margin-bottom: 14px;
}

.rr-review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  overflow: hidden;
}

.rr-review-text.truncated {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rr-review-expand {
  background: none;
  border: none;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  padding: 0;
  transition: var(--tr);
}

.rr-review-expand:hover {
  color: var(--green-hover);
}

.rr-pros-cons {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.rr-pros,
.rr-cons {
  flex: 1;
  min-width: 160px;
  background: var(--bg-card2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.rr-pros {
  border-left: 3px solid var(--green);
}
.rr-cons {
  border-left: 3px solid var(--red);
}

.rr-pros-cons__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rr-pros .rr-pros-cons__title {
  color: var(--green);
}
.rr-cons .rr-pros-cons__title {
  color: var(--red);
}

.rr-pros li,
.rr-cons li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 4px;
  padding-left: 12px;
  position: relative;
}

.rr-pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.72rem;
}
.rr-cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.72rem;
}

.rr-review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 10px;
}

.rr-vote-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rr-vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--tr);
}

.rr-vote-btn:hover {
  background: var(--secondary-hover);
  border-color: var(--border-hover);
}
.rr-vote-btn.voted-up {
  border-color: var(--green);
  color: var(--green);
}
.rr-vote-btn.voted-down {
  border-color: var(--red);
  color: var(--red);
}

.rr-reply-btn {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  padding: 6px 10px;
  border-radius: 4px;
}

.rr-reply-btn:hover {
  color: var(--text);
  background: var(--secondary);
}

.rr-reply-form {
  display: none;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 14px;
}

.rr-reply-form.open {
  display: block;
}

.rr-reply-form textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.875rem;
  resize: vertical;
  min-height: 80px;
  transition: var(--tr);
}

.rr-reply-form textarea:focus {
  outline: none;
  border-color: var(--green);
}
.rr-reply-form textarea::placeholder {
  color: var(--text-muted);
}

.rr-reply-form-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.rr-review-media {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.rr-review-media img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--tr);
}

.rr-review-media img:hover {
  border-color: var(--green);
}

/* ==================== COMPARISON TABLE ==================== */
.rr-comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 32px;
  -webkit-overflow-scrolling: touch;
}

.rr-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.rr-comparison-table th {
  background: var(--bg-card2);
  padding: 16px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.rr-comparison-table th:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.rr-comparison-table td {
  padding: 14px 20px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.rr-comparison-table tr:last-child td {
  border-bottom: none;
}

.rr-comparison-table td:first-child {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.82rem;
}

.rr-comparison-table .featured-col {
  background: rgba(32, 170, 46, 0.04);
}

.rr-comparison-table .featured-col th {
  color: var(--green);
  border-top: 2px solid var(--green);
}

.rr-check {
  color: var(--green);
  font-weight: 700;
}
.rr-cross {
  color: var(--red);
}
.rr-neutral {
  color: var(--text-muted);
}

.rr-casino-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

/* ==================== GAME TILES ==================== */
.rr-games-slider {
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) transparent;
  margin-top: 32px;
}

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

.rr-games-row {
  display: flex;
  gap: 14px;
  width: max-content;
  padding-bottom: 4px;
}

.rr-game-tile {
  flex: 0 0 160px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--tr);
  cursor: pointer;
}

.rr-game-tile:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.rr-game-tile__img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
}

.rr-game-tile__img img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.rr-game-tile__body {
  padding: 10px 12px;
}

.rr-game-tile__name {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rr-game-tile__provider {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.rr-game-tile__badge {
  display: inline-block;
  padding: 2px 7px;
  background: rgba(32, 170, 46, 0.15);
  color: var(--green);
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
}

.rr-video-wrap {
  position: relative;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-top: 32px;
  aspect-ratio: 16/9;
}

.rr-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.rr-review-content-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 44px;
  margin-top: 32px;
}

.rr-review-content-box h2,
.rr-review-content-box h3,
.rr-review-content-box h4 {
  color: var(--text);
  margin: 28px 0 12px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.rr-review-content-box h2 {
  font-size: 1.5rem;
  font-weight: 800;
}
.rr-review-content-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
.rr-review-content-box h4 {
  font-size: 1rem;
  font-weight: 700;
}

.rr-review-content-box p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.rr-review-content-box ul,
.rr-review-content-box ol {
  margin: 14px 0 14px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.rr-review-content-box ul {
  list-style: disc;
}
.rr-review-content-box ol {
  list-style: decimal;
}

.rr-review-content-box li {
  margin-bottom: 6px;
  line-height: 1.6;
  padding-left: 4px;
}

.rr-review-content-box a {
  color: var(--green);
  text-decoration: underline;
}
.rr-review-content-box a:hover {
  color: var(--green-hover);
}

.rr-review-content-box strong {
  color: var(--text);
  font-weight: 700;
}
.rr-review-content-box em {
  color: var(--text-secondary);
}

.rr-review-content-box table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  display: block;
  overflow-x: auto;
}

.rr-review-content-box th {
  background: var(--bg-card2);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.rr-review-content-box td {
  padding: 11px 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.rr-review-content-box tr:last-child td {
  border-bottom: none;
}

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

.rr-review-content-box img {
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

.rr-review-content-box hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.rr-author-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
}

.rr-author-box__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
  flex-shrink: 0;
  background: var(--secondary);
}

.rr-author-box__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.rr-author-box__title {
  font-size: 0.8rem;
  color: var(--green);
  margin-bottom: 8px;
}

.rr-author-box__bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.rr-author-box__links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.rr-author-box__links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.rr-author-box__links a:hover {
  color: var(--text);
}

/* ==================== FAQ ==================== */
.rr-faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.rr-faq-item.open {
  border-color: rgba(32, 170, 46, 0.3);
}

.rr-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 12px;
  transition: var(--tr);
}

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

.rr-faq-chevron {
  width: 18px;
  height: 18px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--tr);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.rr-faq-item.open .rr-faq-chevron {
  border-color: var(--green);
  color: var(--green);
  transform: rotate(180deg);
}

.rr-faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

/* ==================== FOOTER ==================== */
.rr-footer {
  background: #1a1b20;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.rr-footer__main {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 40px;
}

.rr-footer__brand {
}

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

.rr-footer__logo img {
  height: 36px;
  border-radius: 5px;
}
.rr-footer__logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}
.rr-footer__logo-text span {
  color: var(--green);
}

.rr-footer__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.rr-footer__email {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.rr-footer__email a {
  color: var(--text-secondary);
}
.rr-footer__email a:hover {
  color: var(--green);
}

.rr-footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text);
  margin-bottom: 16px;
}

.rr-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rr-footer-nav a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: var(--tr);
}

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

.rr-footer__bottom {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.rr-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rr-footer__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.rr-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.rr-trust-badge svg {
  width: 14px;
  height: 14px;
}

.rr-payment-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.rr-payment-logo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 6px 12px;
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 600;
  white-space: nowrap;
}

.rr-social-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.rr-social-link {
  width: 34px;
  height: 34px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--tr);
  font-size: 0.85rem;
}

.rr-social-link:hover {
  background: var(--secondary-hover);
  color: var(--text);
  border-color: var(--border-hover);
}

.rr-providers-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}

.rr-provider-badge {
  font-size: 0.68rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px 8px;
  font-weight: 500;
}

.rr-footer__legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.rr-footer__legal p {
  margin-bottom: 6px;
}

.rr-footer__flag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.rr-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 5px 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.rr-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rr-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rr-form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.rr-form-input,
.rr-form-textarea,
.rr-form-select {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.875rem;
  transition: var(--tr);
  width: 100%;
  -webkit-appearance: none;
}

.rr-form-input:focus,
.rr-form-textarea:focus,
.rr-form-select:focus {
  outline: none;
  border-color: var(--green);
}

.rr-form-input::placeholder,
.rr-form-textarea::placeholder {
  color: var(--text-muted);
}
.rr-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.rr-star-picker {
  display: flex;
  gap: 4px;
}

.rr-star-pick {
  font-size: 1.6rem;
  color: #3a3c48;
  cursor: pointer;
  transition: var(--tr);
  line-height: 1;
}

.rr-star-pick:hover,
.rr-star-pick.selected {
  color: var(--gold);
}

.animate-fade-in {
  animation: fadeIn 0.4s ease both;
}
.animate-fade-up {
  animation: fadeInUp 0.5s ease both;
}

.rr-scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.rr-scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.rr-divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.rr-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rr-badge--green {
  background: rgba(32, 170, 46, 0.15);
  color: var(--green);
}
.rr-badge--gold {
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold);
}
.rr-badge--red {
  background: rgba(232, 91, 75, 0.15);
  color: var(--red);
}
.rr-badge--blue {
  background: rgba(74, 144, 217, 0.15);
  color: var(--blue);
}

.text-center {
  text-align: center;
}
.text-green {
  color: var(--green) !important;
}
.text-gold {
  color: var(--gold) !important;
}
.text-muted {
  color: var(--text-muted) !important;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.gap-2 {
  gap: 16px;
}
.flex-wrap {
  flex-wrap: wrap;
}

.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
}
.elementor-widget-container {
  position: relative;
}
.entry-content {
  display: block;
}
.site-content {
  display: block;
}
.wp-post-image {
  max-width: 100%;
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
}
.wp-caption {
  text-align: center;
}
.sticky {
  position: relative;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}
.size-full {
  width: 100%;
}
.is-layout-flex {
  display: flex;
}
.has-global-padding {
  padding-inline: var(--wp--style--root--padding-right, 0);
}
.a9x7b {
  display: none;
}
.k2m4p {
  visibility: hidden;
}
.f6n1q {
  overflow: hidden;
}
.b3r8t {
}
.m7w2c {
}
.x4y9z {
}

@media (max-width: 1024px) {
  .rr-hero__inner {
    flex-direction: column;
  }
  .rr-hero__tiles {
    flex: none;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }
  .rr-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .rr-nav {
    display: none;
  }
  .rr-burger {
    display: flex;
  }
  .rr-reviews-count {
    display: none;
  }
}

@media (max-width: 768px) {
  .rr-hero {
    padding: 50px 0 40px;
  }
  .rr-hero__title {
    font-size: 1.8rem;
  }
  .rr-hero__tiles {
    grid-template-columns: repeat(2, 1fr);
  }
  .rr-section {
    padding: 44px 0;
  }
  .rr-section-header h2 {
    font-size: 1.5rem;
  }
  .rr-bonuses-grid {
    grid-template-columns: 1fr;
  }
  .rr-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .rr-rating-summary {
    flex-direction: column;
  }
  .rr-rating-big {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    width: 100%;
  }
  .rr-footer__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .rr-review-content-box {
    padding: 24px 20px;
  }
  .rr-author-box {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .rr-container {
    padding: 0 14px;
  }
  .rr-hero__title {
    font-size: 1.5rem;
  }
  .rr-hero__tiles {
    grid-template-columns: 1fr 1fr;
  }
  .rr-review-header {
    flex-direction: column;
  }
  .rr-review-right {
    align-items: flex-start;
  }
  .rr-pros-cons {
    flex-direction: column;
  }
}

.rr-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  backdrop-filter: blur(4px);
}

.rr-mobile-nav.open {
  display: block;
}

.rr-mobile-nav__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #1a1b20;
  border-left: 1px solid var(--border);
  padding: 80px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}

.rr-mobile-nav__inner a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--tr);
}

.rr-mobile-nav__inner a:hover {
  background: var(--secondary);
  color: var(--text);
}

.rr-mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--secondary);
  border: none;
  border-radius: 50%;
  color: var(--text);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.rr-mobile-nav__divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

@media (max-width: 768px) {
  .rr-review-card {
    padding: 18px 16px;
  }

  .rr-review-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .rr-review-author {
    min-width: 0;
  }

  .rr-review-author-info {
    min-width: 0;
  }

  .rr-review-name,
  .rr-review-title,
  .rr-review-text {
    overflow-wrap: anywhere;
  }

  .rr-review-right {
    width: 100%;
    align-items: flex-start;
  }

  .rr-review-rating-wrap {
    align-items: flex-start;
  }

  .rr-review-actions {
    margin-top: 4px;
  }

  .rr-mobile-nav__inner {
    width: min(88vw, 340px);
  }
}
