:root {
  --rr-bg: #1f2747;
  --rr-bg-deep: #0a1020;
  --rr-panel: rgba(9, 16, 34, 0.78);
  --rr-panel-strong: #0f1832;
  --rr-panel-soft: #141f3b;
  --rr-card: #101931;
  --rr-card-alt: #162342;
  --rr-text: #f4f7ff;
  --rr-muted: #99a6c9;
  --rr-accent: #c8f11a;
  --rr-accent-deep: #8fad00;
  --rr-border: rgba(167, 181, 224, 0.18);
  --rr-border-strong: rgba(200, 241, 26, 0.24);
  --rr-shadow: 0 24px 60px rgba(3, 8, 20, 0.4);
  --rr-radius: 24px;
  --rr-radius-sm: 16px;
  --rr-radius-xs: 12px;
  --rr-width: 1440px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.rr-page {
  margin: 0;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 100vh;
  overflow-x: hidden;
  zoom: 1 !important;
  color: var(--rr-text);
  font-family: "Trebuchet MS", "Segoe UI Variable", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(200, 241, 26, 0.1), transparent 22%),
    radial-gradient(circle at bottom left, rgba(37, 56, 104, 0.55), transparent 30%),
    linear-gradient(180deg, #202a4f 0%, #1b2445 36%, #19223f 100%);
}

body.rr-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.85), transparent);
  pointer-events: none;
}

body.rr-page * {
  box-sizing: border-box;
}

body.rr-page img {
  display: block;
  max-width: 100%;
}

body.rr-page a {
  color: inherit;
  text-decoration: none;
}

body.rr-page button {
  font: inherit;
}

.rr-shell {
  width: min(100%, var(--rr-width));
  margin: 0 auto;
  padding: 0 clamp(16px, 2.6vw, 32px) 36px;
}

.rr-shell > *,
.rr-header__main > *,
.rr-hero > *,
.rr-strip > *,
.rr-section__head > *,
.rr-board > *,
.rr-market-card__top > *,
.rr-market-card__bottom > *,
.rr-seo > *,
.rr-footer__top > * {
  min-width: 0;
}

.rr-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 10px;
}

.rr-topbar,
.rr-header__main,
.rr-panel,
.rr-rail__card,
.rr-footer {
  backdrop-filter: blur(16px);
}

.rr-topbar,
.rr-header__main {
  background: rgba(7, 13, 29, 0.78);
  border: 1px solid rgba(164, 177, 214, 0.14);
}

.rr-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 20px 20px 0 0;
}

.rr-topbar__copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--rr-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rr-topbar__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: #c4ceeb;
}

.rr-header__main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav actions";
  gap: 18px;
  align-items: center;
  padding: 16px 18px 18px;
  border-radius: 0 0 24px 24px;
  border-top: 0;
  box-shadow: var(--rr-shadow);
}

.rr-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  grid-area: brand;
  justify-self: start;
}

.rr-brand--logo {
  gap: 0;
}

.rr-brand__logo {
  display: block;
  width: auto;
  height: clamp(42px, 4.4vw, 58px);
  object-fit: contain;
}

.rr-brand__mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, #d7ff44 0%, #9bc300 100%);
  color: var(--rr-bg-deep);
  font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(200, 241, 26, 0.25);
}

.rr-brand__text {
  display: grid;
  gap: 2px;
}

.rr-brand__text strong {
  font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
}

.rr-brand__text small {
  color: var(--rr-muted);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.rr-mainnav {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  grid-area: nav;
}

.rr-mainnav::-webkit-scrollbar {
  display: none;
}

.rr-mainnav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #d9def5;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.rr-mainnav a:hover,
.rr-topbar__nav a:hover,
.rr-footer__links a:hover,
.rr-inline-link:hover {
  color: #fff;
}

.rr-mainnav a:hover {
  border-color: var(--rr-border);
  background: rgba(255, 255, 255, 0.08);
}

.rr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-area: actions;
  justify-self: end;
  flex-wrap: nowrap;
}

.rr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--rr-border);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.rr-button:hover {
  transform: translateY(-1px);
}

.rr-button--accent {
  color: var(--rr-bg-deep);
  background: linear-gradient(180deg, #d8ff42 0%, #afdc00 100%);
  border-color: transparent;
}

.rr-button--ghost {
  color: #eef2ff;
  background: rgba(255, 255, 255, 0.04);
}

.rr-button--small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 0.88rem;
}

.rr-main {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.rr-panel,
.rr-rail__card,
.rr-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 17, 36, 0.94) 0%, rgba(16, 25, 49, 0.92) 100%);
  border: 1px solid var(--rr-border);
  border-radius: var(--rr-radius);
  box-shadow: var(--rr-shadow);
}

.rr-panel::before,
.rr-rail__card::before,
.rr-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(200, 241, 26, 0.08), transparent 18%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.02), transparent 35%);
  pointer-events: none;
}

.rr-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 24px;
  padding: clamp(20px, 3vw, 30px);
}

.rr-hero__copy,
.rr-hero__stage {
  position: relative;
  z-index: 1;
}

.rr-kicker,
.rr-strip__eyebrow,
.rr-streaming__eyebrow {
  margin: 0 0 10px;
  color: var(--rr-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rr-hero__copy h1,
.rr-hero__copy .rr-heading-main,
.rr-section__head h2,
.rr-section__head .rr-section-title,
.rr-streaming__hero h2,
.rr-streaming__hero .rr-streaming__title,
.rr-seo__aside h2 {
  margin: 0;
  font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
  line-height: 1.04;
  font-weight: 700;
}

.rr-hero__copy h1,
.rr-hero__copy .rr-heading-main {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  letter-spacing: -0.03em;
}

.rr-lead {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1.02rem;
  color: #d8def6;
}

.rr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.rr-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.rr-stats article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rr-stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.65rem;
  font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
}

.rr-stats span {
  color: var(--rr-muted);
  font-size: 0.92rem;
}

.rr-hero__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 134px;
  gap: 14px;
  min-height: 100%;
}

.rr-banner-main {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(12, 20, 40, 0.95), rgba(8, 13, 27, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.rr-banner-main__media {
  overflow: hidden;
  border-radius: 18px;
  min-height: 310px;
  background: #090d18;
}

.rr-banner-main__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: rr-float 7s ease-in-out infinite;
}

.rr-banner-main__content {
  display: grid;
  gap: 6px;
}

.rr-banner-main__index {
  margin: 0;
  color: var(--rr-accent);
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.rr-banner-main__content h2,
.rr-banner-main__title {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
}

.rr-banner-main__content p {
  margin: 0;
  color: var(--rr-muted);
}

.rr-banner-thumbs {
  display: grid;
  gap: 10px;
}

.rr-banner-thumb {
  position: relative;
  display: grid;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.rr-banner-thumb:hover,
.rr-banner-thumb.is-active {
  transform: translateY(-1px);
  border-color: var(--rr-border-strong);
  opacity: 1;
}

.rr-banner-thumb:not(.is-active) {
  opacity: 0.66;
}

.rr-banner-thumb img {
  width: 100%;
  height: 88px;
  object-fit: cover;
}

.rr-banner-thumb span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  right: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(6, 10, 20, 0.72);
  font-size: 0.76rem;
  text-align: left;
}

.rr-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding: 22px;
}

.rr-chiplist,
.rr-sportlist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rr-chiplist span,
.rr-sportlist span,
.rr-count {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #e8edff;
}

.rr-chiplist span {
  border-color: var(--rr-border-strong);
}

.rr-section {
  display: grid;
  gap: 16px;
}

.rr-section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.rr-section__head--compact {
  align-items: center;
}

.rr-section__head h2,
.rr-section__head .rr-section-title {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.rr-inline-link {
  color: var(--rr-accent);
  font-weight: 700;
}

.rr-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rr-featured-card,
.rr-market-card,
.rr-game-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 25, 49, 0.98), rgba(10, 16, 32, 0.96));
  border: 1px solid var(--rr-border);
  border-radius: 22px;
  box-shadow: var(--rr-shadow);
  animation: rr-rise 0.65s ease both;
}

.rr-featured-card::after,
.rr-market-card::after,
.rr-game-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 88px;
  height: 88px;
  background: linear-gradient(180deg, rgba(200, 241, 26, 0.24), transparent);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  pointer-events: none;
}

.rr-featured-card {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.rr-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--rr-muted);
  font-size: 0.9rem;
}

.rr-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.08);
}

.rr-badge--live {
  color: var(--rr-bg-deep);
  background: var(--rr-accent);
}

.rr-featured-card h3,
.rr-market-card h3,
.rr-copy-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.15;
}

.rr-team-row {
  display: grid;
  gap: 12px;
}

.rr-team {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.rr-team img,
.rr-avatar {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.rr-avatar {
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--rr-text);
  font-size: 0.85rem;
  font-weight: 700;
}

.rr-team strong {
  font-size: 1rem;
}

.rr-score {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
}

.rr-odd-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.rr-odd {
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.rr-odd span,
.rr-option span {
  display: block;
  color: var(--rr-muted);
  font-size: 0.82rem;
}

.rr-odd strong,
.rr-option strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.rr-featured-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--rr-muted);
  font-size: 0.9rem;
}

.rr-featured-card__footer strong {
  color: var(--rr-accent);
}

.rr-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.rr-board__column,
.rr-rail {
  display: grid;
  gap: 16px;
}

.rr-market-list {
  display: grid;
  gap: 14px;
}

.rr-market-card {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.rr-market-card__top,
.rr-market-card__bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.rr-market-card__bottom {
  align-items: center;
}

.rr-market-card__body {
  display: grid;
  gap: 12px;
}

.rr-teamstack {
  display: grid;
  gap: 10px;
}

.rr-market-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
}

.rr-market-column {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.rr-market-column h4,
.rr-market-column__title {
  margin: 0 0 10px;
  color: #ebf0ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.rr-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
}

.rr-option {
  list-style: none;
  padding: 10px 8px;
  border-radius: 12px;
  background: rgba(10, 16, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.rr-market-link {
  color: var(--rr-accent);
  font-weight: 700;
}

.rr-rail__card {
  padding: 18px;
}

.rr-streaming__hero {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(20, 31, 59, 0.64), rgba(8, 13, 28, 0.92)),
    url("./example_files/Combi_FInde_12032026.png") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rr-streaming__hero h2,
.rr-streaming__hero .rr-streaming__title {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.rr-streaming__hero p:last-of-type {
  margin: 0;
  color: #e3eaff;
}

.rr-streaming__list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  max-height: 540px;
  overflow: auto;
}

.rr-streaming__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #dbe3ff;
}

.rr-streaming__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8ff42 0%, #8eb200 100%);
  box-shadow: 0 0 0 6px rgba(200, 241, 26, 0.1);
  flex: none;
}

.rr-games-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rr-game-card {
  display: grid;
  align-content: end;
  min-height: 200px;
}

.rr-game-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-game-card__overlay {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 11, 24, 0.9) 60%, rgba(7, 11, 24, 0.96) 100%);
}

.rr-game-card h3,
.rr-game-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.rr-game-card span {
  color: var(--rr-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rr-seo {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
}

.rr-seo__aside {
  position: sticky;
  top: 118px;
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(200, 241, 26, 0.14), rgba(18, 25, 47, 0.95) 30%);
  border: 1px solid var(--rr-border-strong);
}

.rr-seo__aside p {
  margin: 0;
  color: #e4eafe;
}

.rr-step-list,
.rr-copy-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #d6def9;
}

.rr-seo__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rr-copy-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rr-copy-card--wide {
  grid-column: 1 / -1;
}

.rr-copy-card h2,
.rr-copy-card h3 {
  margin: 0 0 12px;
}

.rr-copy-card p,
.rr-copy-card li {
  margin: 0;
  color: #d4def9;
}

.rr-copy-card p + p,
.rr-copy-card p + ul,
.rr-copy-card ul + p {
  margin-top: 12px;
}

.rr-review-card,
.rr-faq-card {
  display: grid;
  gap: 18px;
}

.rr-review-card__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.rr-review-score {
  min-width: 180px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  text-align: right;
  background: linear-gradient(180deg, rgba(200, 241, 26, 0.18), rgba(14, 21, 40, 0.92));
  border: 1px solid var(--rr-border-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rr-review-score strong {
  display: block;
  font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  color: var(--rr-accent);
}

.rr-review-score span {
  color: #e6ebff;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rr-review-meta {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--rr-muted);
}

.rr-review-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.rr-review-pill,
.rr-review-columns > div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.rr-review-pill strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
  font-size: 1.35rem;
  color: #f6fbff;
}

.rr-review-pill span {
  display: block;
  color: var(--rr-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rr-review-pill p {
  margin-top: 10px;
  color: #dbe3fb;
  font-size: 0.93rem;
}

.rr-review-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rr-review-columns h3 {
  margin: 0 0 12px;
}

.rr-faq-list {
  display: grid;
  gap: 12px;
}

.rr-faq-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.rr-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #f3f7ff;
}

.rr-faq-item summary::-webkit-details-marker {
  display: none;
}

.rr-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--rr-muted);
  font-size: 1.3rem;
  line-height: 1;
}

.rr-faq-item[open] summary::after {
  content: "−";
  color: var(--rr-accent);
}

.rr-faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #d6def9;
}

.rr-footer {
  display: grid;
  gap: 22px;
  margin-top: 6px;
  padding: 24px;
}

.rr-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.rr-brand--footer .rr-brand__mark {
  width: 38px;
  height: 38px;
}

.rr-footer__brand {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.rr-footer__brand p,
.rr-footer__legal p {
  margin: 0;
  color: var(--rr-muted);
}

.rr-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rr-socials a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rr-socials img {
  width: 20px;
  height: 20px;
}

.rr-safe-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rr-safe-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 74px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.rr-safe-logos img {
  max-height: 42px;
  object-fit: contain;
}

.rr-footer__links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.rr-footer__links section {
  display: grid;
  align-content: start;
  gap: 10px;
}

.rr-footer__links h3,
.rr-footer__heading {
  margin: 0;
  font-size: 0.95rem;
  color: #f1f5ff;
  font-weight: 700;
}

.rr-footer__links a {
  color: var(--rr-muted);
  font-size: 0.92rem;
}

.rr-footer__legal {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rr-featured-grid > *:nth-child(2),
.rr-market-list > *:nth-child(2),
.rr-games-grid > *:nth-child(2) {
  animation-delay: 0.06s;
}

.rr-featured-grid > *:nth-child(3),
.rr-market-list > *:nth-child(3),
.rr-games-grid > *:nth-child(3) {
  animation-delay: 0.12s;
}

.rr-featured-grid > *:nth-child(4),
.rr-market-list > *:nth-child(4),
.rr-games-grid > *:nth-child(4) {
  animation-delay: 0.18s;
}

.rr-featured-grid > *:nth-child(5),
.rr-market-list > *:nth-child(5),
.rr-games-grid > *:nth-child(5) {
  animation-delay: 0.24s;
}

.rr-featured-grid > *:nth-child(6),
.rr-games-grid > *:nth-child(6) {
  animation-delay: 0.3s;
}

@keyframes rr-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rr-float {
  0%,
  100% {
    transform: scale(1.02) translateY(0);
  }

  50% {
    transform: scale(1.04) translateY(-6px);
  }
}

@media (max-width: 1260px) {
  .rr-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rr-rail {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .rr-footer__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .rr-header__main,
  .rr-hero,
  .rr-strip,
  .rr-seo {
    grid-template-columns: 1fr;
  }

  .rr-header__main {
    grid-template-areas:
      "brand"
      "actions"
      "nav";
    gap: 14px;
  }

  .rr-mainnav {
    order: 3;
  }

  .rr-actions {
    justify-content: flex-end;
  }

  .rr-featured-grid,
  .rr-seo__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rr-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rr-hero__stage {
    grid-template-columns: 1fr;
  }

  .rr-banner-thumbs {
    grid-template-columns: repeat(7, minmax(96px, 1fr));
    overflow-x: auto;
  }

  .rr-banner-thumb img {
    height: 72px;
  }
}

@media (max-width: 760px) {
  .rr-shell {
    padding-inline: 14px;
  }

  .rr-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .rr-header__main,
  .rr-panel,
  .rr-rail__card,
  .rr-footer {
    border-radius: 20px;
  }

  .rr-topbar {
    border-radius: 18px;
  }

  .rr-header__main {
    border-radius: 18px;
  }

  .rr-section__head,
  .rr-market-card__top,
  .rr-market-card__bottom,
  .rr-footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .rr-featured-grid,
  .rr-board,
  .rr-rail,
  .rr-seo__content,
  .rr-footer__links {
    grid-template-columns: 1fr;
  }

  .rr-stats {
    grid-template-columns: 1fr;
  }

  .rr-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rr-seo__aside {
    position: static;
  }

  .rr-review-card__head {
    display: grid;
  }

  .rr-review-score {
    min-width: 0;
    text-align: left;
  }

  .rr-review-grid,
  .rr-review-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rr-header {
    position: static;
    padding-top: 8px;
  }

  .rr-topbar {
    padding: 10px 12px;
  }

  .rr-topbar__copy {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .rr-topbar__nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 10px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .rr-topbar__nav::-webkit-scrollbar {
    display: none;
  }

  .rr-topbar__nav a {
    white-space: nowrap;
    font-size: 0.78rem;
  }

  .rr-header__main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "actions"
      "nav";
    gap: 12px;
    padding: 14px;
  }

  .rr-brand {
    width: 100%;
  }

  .rr-brand__logo {
    max-width: 100%;
    height: 46px;
  }

  .rr-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
  }

  .rr-button {
    min-height: 40px;
    min-width: 0;
    width: 100%;
    padding-inline: 14px;
    font-size: 0.86rem;
  }

  .rr-mainnav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-width: 0;
    overflow: visible;
  }

  .rr-mainnav a {
    display: grid;
    place-items: center;
    min-height: 42px;
    padding: 8px 6px;
    text-align: center;
    white-space: normal;
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .rr-main {
    gap: 22px;
    margin-top: 20px;
  }

  .rr-hero,
  .rr-strip,
  .rr-seo {
    padding: 18px;
  }

  .rr-hero {
    gap: 18px;
  }

  .rr-hero__copy {
    order: 2;
  }

  .rr-hero__stage {
    order: 1;
  }

  .rr-hero__copy h1,
  .rr-hero__copy .rr-heading-main {
    max-width: none;
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .rr-lead {
    font-size: 0.94rem;
  }

  .rr-hero__actions {
    gap: 10px;
  }

  .rr-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

  .rr-stats article:last-child {
    grid-column: 1 / -1;
  }

  .rr-stats article {
    padding: 12px;
  }

  .rr-stats strong {
    font-size: 1.25rem;
  }

  .rr-stats span {
    font-size: 0.8rem;
  }

  .rr-banner-main {
    padding: 10px;
  }

  .rr-banner-main__media {
    min-height: 220px;
  }

  .rr-banner-main__content h2,
  .rr-banner-main__title {
    font-size: 1.35rem;
  }

  .rr-banner-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .rr-banner-thumb img {
    height: 60px;
  }

  .rr-chiplist span,
  .rr-sportlist span,
  .rr-count {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 0.8rem;
  }

  .rr-section__head h2,
  .rr-section__head .rr-section-title {
    font-size: 1.35rem;
  }

  .rr-featured-card,
  .rr-market-card,
  .rr-copy-card,
  .rr-rail__card {
    border-radius: 18px;
  }

  .rr-featured-card,
  .rr-market-card,
  .rr-copy-card,
  .rr-seo__aside,
  .rr-rail__card,
  .rr-footer {
    padding: 16px;
  }

  .rr-odd-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rr-market-columns {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 84%);
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .rr-market-columns::-webkit-scrollbar {
    display: none;
  }

  .rr-market-column {
    scroll-snap-align: start;
  }

  .rr-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rr-streaming__hero {
    padding: 16px;
  }

  .rr-streaming__list {
    max-height: none;
  }

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

  .rr-game-card {
    min-height: 160px;
  }

  .rr-seo__content {
    grid-template-columns: 1fr;
  }

  .rr-review-grid,
  .rr-review-columns {
    grid-template-columns: 1fr;
  }

  .rr-faq-item summary {
    padding: 16px;
  }

  .rr-faq-item p {
    padding: 0 16px 16px;
  }

  .rr-footer {
    gap: 18px;
  }

  .rr-safe-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rr-safe-logos a {
    min-width: 0;
    width: 100%;
  }

  .rr-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .rr-topbar__copy {
    display: none;
  }

  .rr-header__main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "actions"
      "nav";
  }

  .rr-actions {
    width: 100%;
  }

  .rr-button {
    width: 100%;
  }

  .rr-mainnav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rr-market-columns {
    grid-auto-columns: minmax(240px, 92%);
  }

  .rr-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
