:root {
  --bg: #1b1b1b;
  --surface: #181818;
  --surface-2: #212121;
  --surface-3: #262626;
  --accent: #ffbb4d;
  --accent-2: #ffcd7a;
  --accent-press: #f0a72e;
  --text: #f4f4f4;
  --text-soft: #d7d7d7;
  --muted: #a9a9a9;
  --border: #333333;
  --border-soft: #2a2a2a;
  --ok: #4dd08a;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

body.rf-locked {
  overflow: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

a:hover {
  color: var(--accent-2);
}

h1,
h2,
h3,
h4 {
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: clamp(1.7rem, 4.4vw, 2.5rem);
}

h2 {
  font-size: clamp(1.35rem, 3.2vw, 1.9rem);
}

h3 {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
}

p {
  margin: 0 0 1em;
  color: var(--text-soft);
  text-wrap: pretty;
}

.wrapper {
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
}

.box {
  margin: 18px 0;
}

.rf-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease);
  white-space: nowrap;
}

.rf-btn:hover {
  transform: translateY(-2px);
}

.rf-btn:active {
  transform: translateY(0);
}

.rf-btn--primary {
  background: var(--accent);
  color: #191308;
  box-shadow: 0 8px 22px rgba(255, 187, 77, 0.28);
}

.rf-btn--primary:hover {
  background: var(--accent-2);
  color: #191308;
}

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

.rf-btn--secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.rf-btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.rf-btn--lg {
  padding: 16px 30px;
  font-size: 1.05rem;
}

.rf-btn--sm {
  padding: 9px 15px;
  font-size: 0.82rem;
}

.rf-btn--block {
  display: flex;
  width: 100%;
}

.rf-ic {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rf-ic--sm {
  width: 16px;
  height: 16px;
}

.rf-header {
  background: var(--surface);
  border-radius: 0 0 var(--radius-l) var(--radius-l);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 60;
}

.rf-header .container {
  padding-top: 12px;
  padding-bottom: 12px;
}

.rf-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.rf-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.rf-logo img {
  height: 42px;
  width: auto;
}

.rf-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rf-nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 12px;
  border-radius: var(--radius-s);
}

.rf-nav-links a:hover {
  color: var(--accent);
  background: rgba(255, 187, 77, 0.08);
}

.rf-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rf-online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--surface-3);
  border: 1px solid var(--border-soft);
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.rf-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(77, 208, 138, 0.6);
  animation: rf-pulse 2s infinite;
}

@keyframes rf-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 208, 138, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(77, 208, 138, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(77, 208, 138, 0);
  }
}

.rf-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  background: var(--surface-3);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.rf-burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.rf-burger.rf-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.rf-burger.rf-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.rf-hero {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.rf-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.05);
  animation: rf-zoom 18s ease-in-out infinite alternate;
}

@keyframes rf-zoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.15);
  }
}

.rf-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(24, 24, 24, 0.94) 12%, rgba(24, 24, 24, 0.7) 48%, rgba(24, 24, 24, 0.25) 100%);
}

.rf-hero-inner {
  padding: 46px 34px;
  max-width: 620px;
  animation: rf-rise 0.8s var(--ease) both;
}

@keyframes rf-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rf-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 187, 77, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 187, 77, 0.35);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.rf-hero h1 {
  margin-bottom: 12px;
}

.rf-hero p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 24px;
}

.rf-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rf-hero-terms {
  margin: 16px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.rf-crumbs {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 12px 4px;
  overflow-x: auto;
  white-space: nowrap;
}

.rf-crumbs ol {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.rf-crumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rf-crumbs li + li::before {
  content: "/";
  color: var(--border);
}

.rf-crumbs a {
  color: var(--text-soft);
}

.rf-crumbs a:hover {
  color: var(--accent);
}

.rf-crumbs [aria-current] {
  color: var(--accent);
  font-weight: 600;
}

.rf-panel {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-l);
  padding: 26px;
  box-shadow: var(--shadow);
}

.rf-panel + .rf-panel {
  margin-top: 18px;
}

.rf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.rf-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.rf-toc-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: var(--radius-m);
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.rf-toc-list a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
}

.rf-toc-list .rf-ic {
  color: var(--accent);
}

.rf-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
}

.rf-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.rf-table caption {
  caption-side: top;
  text-align: left;
  color: var(--muted);
  font-size: 0.8rem;
  padding: 0 0 10px;
}

.rf-table th,
.rf-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.rf-table thead th {
  background: var(--surface-3);
  color: var(--text);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rf-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.rf-table tbody tr:hover {
  background: rgba(255, 187, 77, 0.06);
}

.rf-table .rf-param {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.rf-table .rf-param .rf-ic {
  color: var(--accent);
}

.rf-table td:last-child {
  color: var(--text-soft);
}

.rf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rf-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--border-soft);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
}

.rf-chip--pay {
  background: linear-gradient(180deg, #2a2a2a, #202020);
  color: var(--text);
  letter-spacing: 0.02em;
}

.rf-app {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  align-items: start;
}

.rf-app-dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rf-store {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-m);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.rf-store:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}

.rf-store .rf-ic {
  color: var(--accent);
  width: 26px;
  height: 26px;
}

.rf-store small {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
}

.rf-store b {
  font-size: 1rem;
}

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

.rf-game {
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
}

.rf-game:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
}

.rf-game-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

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

.rf-game:hover .rf-game-thumb img {
  transform: scale(1.08);
}

.rf-game-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(24, 24, 24, 0.82);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rf-game-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rf-game-body h3 {
  margin: 0;
  font-size: 1rem;
}

.rf-game-body span {
  font-size: 0.78rem;
  color: var(--muted);
}

.rf-slider {
  position: relative;
}

.rf-review {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-l);
  padding: 30px;
  box-shadow: var(--shadow);
}

.rf-review .text,
.rf-content-body {
  color: var(--text-soft);
}

.rf-content-body h1,
.rf-content-body h2,
.rf-content-body h3,
.rf-content-body h4 {
  color: var(--text);
  margin-top: 1.4em;
}

.rf-content-body h2 {
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.rf-content-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rf-content-body ul,
.rf-content-body ol {
  padding-left: 22px;
  margin: 0 0 1.2em;
}

.rf-content-body li {
  margin-bottom: 8px;
}

.rf-content-body ul li::marker {
  color: var(--accent);
}

.rf-content-body blockquote {
  margin: 1.4em 0;
  padding: 14px 20px;
  border-left: 4px solid var(--accent);
  background: var(--surface-2);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  color: var(--text);
}

.rf-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
}

.rf-content-body th,
.rf-content-body td {
  padding: 12px 14px;
  border: 1px solid var(--border);
  text-align: left;
}

.rf-content-body th {
  background: var(--surface-3);
  color: var(--text);
}

.rf-content-body img {
  border-radius: var(--radius-m);
  margin: 1.2em 0;
}

.rf-content-body code {
  background: var(--surface-3);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 0.9em;
  color: var(--accent-2);
}

.rf-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rf-acc {
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--surface-2);
}

.rf-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 20px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rf-acc summary::-webkit-details-marker {
  display: none;
}

.rf-acc summary .rf-sign {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  position: relative;
  transition: transform 0.25s var(--ease);
  color: var(--accent);
}

.rf-acc[open] summary .rf-sign {
  transform: rotate(180deg);
}

.rf-acc-body {
  padding: 0 20px 18px;
  color: var(--text-soft);
}

.rf-author {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.rf-author-photo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid var(--accent);
  background: var(--surface-3);
}

.rf-author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rf-author-main {
  flex: 1 1 260px;
}

.rf-author-main h3 {
  margin-bottom: 2px;
}

.rf-author-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.86rem;
  margin-bottom: 10px;
}

.rf-author-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.rf-social {
  display: inline-flex;
  gap: 10px;
  margin-top: 12px;
}

.rf-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-soft);
}

.rf-social a:hover {
  background: var(--accent);
  color: #191308;
  border-color: var(--accent);
}

.rf-footer {
  background: var(--surface);
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  margin-top: 24px;
  padding: 34px 0 90px;
}

.rf-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
}

.rf-footer h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 14px;
}

.rf-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.rf-footer-menu a {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.rf-footer-menu a:hover {
  color: var(--accent);
}

.rf-footer-logo img {
  height: 40px;
  margin-bottom: 12px;
}

.rf-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 10px;
}

.rf-flag img {
  width: 26px;
  height: auto;
  border-radius: 3px;
}

.rf-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 10px 0 4px;
}

.rf-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--radius-s);
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-soft);
}

.rf-trust .rf-ic {
  color: var(--accent);
}

.rf-legal {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
}

.rf-legal p {
  color: var(--muted);
  font-size: 0.78rem;
}

.rf-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  color: var(--text);
  font-weight: 700;
  font-size: 0.8rem;
  margin-right: 10px;
  vertical-align: middle;
}

.rf-widget {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--surface);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.35s var(--ease);
}

.rf-widget.rf-hide {
  transform: translateY(110%);
}

.rf-widget-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.rf-widget-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.rf-widget-txt b {
  color: var(--accent);
  font-size: 1rem;
}

.rf-widget-txt span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.rf-widget-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rf-widget-link {
  text-decoration: none !important;
}

.rf-widget-close {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px 8px;
}

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

.rf-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.rf-reveal.rf-in {
  opacity: 1;
  transform: translateY(0);
}

.rf-info-page {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-l);
  padding: 30px;
  box-shadow: var(--shadow);
}

.rf-info-page a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rf-mobile-menu {
  display: none;
}

.rf-unused-flare {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  pointer-events: none;
}

.rf-skeleton {
  background: linear-gradient(90deg, #202020 25%, #2a2a2a 37%, #202020 63%);
  background-size: 400% 100%;
  animation: rf-shimmer 1.4s ease infinite;
  border-radius: var(--radius-s);
}

@keyframes rf-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.rf-ribbon-unused {
  transform: rotate(-45deg);
  display: none;
}

@media (max-width: 960px) {
  .rf-app {
    grid-template-columns: 1fr;
  }
  .rf-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .rf-nav-links,
  .rf-online,
  .rf-actions > .rf-btn {
    display: none;
  }
  .rf-burger {
    display: flex;
  }
  .rf-games {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .rf-game {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }
  .rf-toc-list {
    grid-template-columns: 1fr;
  }
  .rf-mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease);
  }
  .rf-mobile-menu.rf-active {
    opacity: 1;
    visibility: visible;
  }
  .rf-mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 84%);
    height: 100%;
    background: var(--surface);
    padding: 74px 22px 30px;
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    overflow-y: auto;
    border-left: 1px solid var(--border);
  }
  .rf-mobile-menu.rf-active .rf-mobile-panel {
    transform: translateX(0);
  }
  .rf-mobile-panel a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    border-radius: var(--radius-s);
    color: var(--text-soft);
    font-weight: 600;
    border-bottom: 1px solid var(--border-soft);
  }
  .rf-mobile-panel a .rf-ic {
    color: var(--accent);
  }
  .rf-mobile-online {
    margin-top: 18px;
    justify-content: center;
    display: inline-flex;
  }
  .rf-mobile-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .rf-mobile-actions .rf-btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .rf-panel,
  .rf-review,
  .rf-info-page {
    padding: 18px;
  }
  .rf-hero-inner {
    padding: 30px 20px;
  }
  .rf-hero {
    min-height: 360px;
  }
  .rf-footer-grid {
    grid-template-columns: 1fr;
  }
  .rf-widget-txt b {
    font-size: 0.9rem;
  }
  .rf-widget-txt span {
    font-size: 0.72rem;
  }
  .rf-actions .rf-btn {
    padding: 10px 14px;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
