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

:root {
  --clr-bg: #1B1B1B;
  --clr-header: #181818;
  --clr-primary: #FFBB4D;
  --clr-primary-hover: #ffc96e;
  --clr-secondary: #222222;
  --clr-card: #212121;
  --clr-border: #2e2e2e;
  --clr-text: #e8e8e8;
  --clr-text-muted: #a0a0a0;
  --clr-text-dark: #181818;
  --clr-white: #ffffff;
  --clr-accent: #ffbb4d22;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.28);
  --transition: 0.22s ease;
  --font: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; background: var(--clr-bg); }

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-primary-hover); }
ul, ol { list-style: none; }

.rs-wrapper { min-height: 100vh; display: flex; flex-direction: column; }

.rs-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.rs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none !important;
}
.rs-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.rs-btn:active { transform: translateY(0); }

.rs-btn--primary {
  background: var(--clr-primary);
  color: var(--clr-text-dark);
}
.rs-btn--primary:hover { background: var(--clr-primary-hover); color: var(--clr-text-dark); }

.rs-btn--secondary {
  background: var(--clr-header);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.rs-btn--secondary:hover { background: #242424; color: var(--clr-white); }

.rs-btn--lg { padding: 14px 32px; font-size: 15px; }
.rs-btn--sm { padding: 8px 16px; font-size: 12px; }

.rs-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.rs-section-subtitle {
  color: var(--clr-text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.rs-divider {
  width: 48px;
  height: 3px;
  background: var(--clr-primary);
  border-radius: 2px;
  margin-bottom: 24px;
}

.rs-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.rs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.rs-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.rs-header__logo img {
  height: 38px;
  width: auto;
}

.rs-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.rs-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.rs-nav__link:hover, .rs-nav__link.active {
  color: var(--clr-primary);
  background: var(--clr-accent);
}
.rs-nav__link svg { flex-shrink: 0; }

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

.rs-header__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.rs-online-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: rsPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes rsPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}
.rs-online-count { color: var(--clr-primary); font-weight: 700; }

.rs-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.rs-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.rs-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rs-burger.open span:nth-child(2) { opacity: 0; }
.rs-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.rs-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-header);
  z-index: 999;
  overflow-y: auto;
  padding: 20px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--clr-border);
  animation: rsSlideDown 0.22s ease;
}
.rs-mobile-menu.open { display: flex; }
@keyframes rsSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.rs-mobile-menu .rs-nav__link {
  font-size: 15px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--clr-border);
}
.rs-mobile-menu .rs-mobile-btns {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.rs-mobile-menu .rs-mobile-btns .rs-btn { flex: 1; }

.rs-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg);
}
.rs-hero__bg {
  position: absolute;
  inset: 0;
  background: url('/hero-banner.png') center/cover no-repeat;
  z-index: 0;
}
.rs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24,24,24,0.92) 35%, rgba(24,24,24,0.55) 70%, rgba(24,24,24,0.25) 100%);
  z-index: 1;
}
.rs-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 580px;
}
.rs-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-accent);
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rs-hero__title {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 16px;
  text-wrap: balance;
  font-family: var(--font);
}
.rs-hero__title span { color: var(--clr-primary); }
.rs-hero__desc {
  color: var(--clr-text-muted);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.rs-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.rs-hero__bonus {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--clr-text-muted);
}
.rs-hero__bonus svg { color: var(--clr-primary); flex-shrink: 0; }

.rs-breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-secondary);
}
.rs-breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  flex-wrap: wrap;
}
.rs-breadcrumbs__item { color: var(--clr-text-muted); }
.rs-breadcrumbs__sep { color: var(--clr-border); }
.rs-breadcrumbs__item--active { color: var(--clr-primary); font-weight: 600; }
.rs-breadcrumbs__item a { color: var(--clr-text-muted); }
.rs-breadcrumbs__item a:hover { color: var(--clr-primary); }

.rs-main {
  flex: 1;
  padding: 40px 0;
}

.rs-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
}

.rs-toc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.rs-toc__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  color: var(--clr-text);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none !important;
}
.rs-toc__item:hover {
  background: var(--clr-accent);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}
.rs-toc__item svg { flex-shrink: 0; color: var(--clr-primary); }

.rs-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.rs-adv-tile {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.rs-adv-tile:hover {
  transform: translateY(-3px);
  border-color: var(--clr-primary);
  box-shadow: 0 8px 28px rgba(255,187,77,0.12);
}
.rs-adv-tile__icon {
  width: 46px;
  height: 46px;
  background: var(--clr-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--clr-primary);
}
.rs-adv-tile__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
}
.rs-adv-tile__text { font-size: 13px; color: var(--clr-text-muted); line-height: 1.55; }

.rs-app__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.rs-app__table-wrap { overflow-x: auto; min-width: 0; }
.rs-app-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 340px;
}
.rs-app-table th,
.rs-app-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--clr-border);
  font-size: 13px;
  line-height: 1.5;
}
.rs-app-table th {
  background: var(--clr-bg);
  color: var(--clr-primary);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rs-app-table td { background: var(--clr-card); color: var(--clr-text); }
.rs-app-table tr:hover td { background: var(--clr-secondary); }

.rs-app__dl-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 14px;
}
.rs-app__dl-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rs-dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  text-decoration: none !important;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.rs-dl-btn:hover {
  border-color: var(--clr-primary);
  background: var(--clr-accent);
  transform: translateX(4px);
}
.rs-dl-btn__icon { flex-shrink: 0; color: var(--clr-primary); }
.rs-dl-btn__info {}
.rs-dl-btn__sub { font-size: 11px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.rs-dl-btn__name { font-size: 14px; font-weight: 700; color: var(--clr-white); }

.rs-games__slider-wrap { position: relative; overflow: hidden; }
.rs-games__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.rs-game-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none !important;
}
.rs-game-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-primary);
  box-shadow: 0 8px 28px rgba(255,187,77,0.14);
}
.rs-game-card__thumb {
  aspect-ratio: 3/4;
  background: var(--clr-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.rs-game-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.rs-game-card:hover .rs-game-card__thumb img { transform: scale(1.06); }
.rs-game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.rs-game-card:hover .rs-game-card__overlay { opacity: 1; }
.rs-game-card__body { padding: 10px 10px 12px; }
.rs-game-card__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rs-game-card__btn {
  width: 100%;
  text-align: center;
  display: block;
  background: var(--clr-primary);
  color: var(--clr-text-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: background var(--transition);
}
.rs-game-card__btn:hover { background: var(--clr-primary-hover); color: var(--clr-text-dark); }

.rs-slider-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.rs-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.rs-slider-dot.active { background: var(--clr-primary); }

.rs-content-block { }
.rs-content-block .text { }
.rs-content-block .text h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-white);
  margin: 28px 0 12px;
  line-height: 1.3;
}
.rs-content-block .text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin: 22px 0 10px;
}
.rs-content-block .text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin: 18px 0 8px;
}
.rs-content-block .text p {
  color: var(--clr-text);
  margin-bottom: 14px;
  line-height: 1.7;
}
.rs-content-block .text ul,
.rs-content-block .text ol {
  margin: 14px 0 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.rs-content-block .text ul { list-style: disc; }
.rs-content-block .text ol { list-style: decimal; }
.rs-content-block .text ul li,
.rs-content-block .text ol li {
  color: var(--clr-text);
  font-size: 14px;
  line-height: 1.65;
  padding-left: 6px;
}
.rs-content-block .text a { color: var(--clr-primary); text-decoration: underline; }
.rs-content-block .text a:hover { color: var(--clr-primary-hover); }
.rs-content-block .text strong, .rs-content-block .text b { color: var(--clr-white); font-weight: 700; }
.rs-content-block .text em { font-style: italic; color: var(--clr-text-muted); }
.rs-content-block .text blockquote {
  border-left: 3px solid var(--clr-primary);
  padding: 12px 18px;
  background: var(--clr-secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 18px 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.rs-content-block .text table {
  width: auto;
  max-width: 100%;
  border-collapse: collapse;
  margin: 18px auto;
  display: block;
  overflow-x: auto;
}
.rs-content-block .text table th,
.rs-content-block .text table td {
  border: 1px solid var(--clr-border);
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
}
.rs-content-block .text table th {
  background: var(--clr-bg);
  color: var(--clr-primary);
  font-weight: 700;
}
.rs-content-block .text table td { background: var(--clr-card); }
.rs-content-block .text img { border-radius: var(--radius-sm); margin: 18px auto; }
.rs-content-block .text hr { border: none; border-top: 1px solid var(--clr-border); margin: 24px 0; }

.rs-faq__list { display: flex; flex-direction: column; gap: 10px; }
.rs-faq__item {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.rs-faq__item.open { border-color: var(--clr-primary); }
.rs-faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--clr-white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--transition);
}
.rs-faq__question:hover { color: var(--clr-primary); }
.rs-faq__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--clr-text-muted);
  transition: transform var(--transition), color var(--transition);
}
.rs-faq__item.open .rs-faq__chevron { transform: rotate(180deg); color: var(--clr-primary); }
.rs-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 18px;
}
.rs-faq__item.open .rs-faq__answer {
  max-height: 400px;
  padding: 0 18px 16px;
}
.rs-faq__answer p { color: var(--clr-text-muted); font-size: 14px; line-height: 1.65; }
.rs-faq__answer a { color: var(--clr-primary); }

.rs-author {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.rs-author__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--clr-primary);
  background: var(--clr-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rs-author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.rs-author__info { flex: 1; }
.rs-author__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 3px;
}
.rs-author__role {
  font-size: 12px;
  color: var(--clr-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.rs-author__bio { font-size: 13px; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 12px; }
.rs-author__meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--clr-text-muted);
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.rs-author__meta span { display: flex; align-items: center; gap: 5px; }
.rs-author__meta svg { color: var(--clr-primary); }
.rs-author__links { display: flex; gap: 10px; flex-wrap: wrap; }
.rs-author__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-muted);
  padding: 5px 12px;
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none !important;
}
.rs-author__link:hover { color: var(--clr-primary); border-color: var(--clr-primary); }

.rs-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 24px;
  margin-top: auto;
}
.rs-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.rs-footer__logo { margin-bottom: 14px; }
.rs-footer__logo img { height: 34px; }
.rs-footer__desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.rs-footer__social { display: flex; gap: 8px; }
.rs-footer__social-link {
  width: 34px;
  height: 34px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none !important;
}
.rs-footer__social-link:hover { color: var(--clr-primary); border-color: var(--clr-primary); }
.rs-footer__col-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.rs-footer__nav { display: flex; flex-direction: column; gap: 8px; }
.rs-footer__nav-link {
  font-size: 13px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 7px;
}
.rs-footer__nav-link:hover { color: var(--clr-primary); }
.rs-footer__mid {
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 24px 0;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.rs-footer__badge-group { }
.rs-footer__badge-title {
  font-size: 11px;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
  font-weight: 600;
}
.rs-footer__badges { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.rs-footer__badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-decoration: none !important;
  transition: border-color var(--transition), color var(--transition);
}
.rs-footer__badge:hover { border-color: var(--clr-primary); color: var(--clr-primary); }
.rs-footer__badge svg { flex-shrink: 0; color: var(--clr-primary); }

.rs-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.rs-footer__country { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--clr-text-muted); }
.rs-footer__legal { font-size: 12px; color: var(--clr-text-muted); line-height: 1.6; max-width: 680px; }
.rs-footer__legal a { color: var(--clr-text-muted); text-decoration: underline; }
.rs-footer__legal a:hover { color: var(--clr-primary); }
.rs-footer__copy { font-size: 12px; color: var(--clr-text-muted); text-align: right; white-space: nowrap; }

.rs-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #181818 0%, #222 100%);
  border-top: 2px solid var(--clr-primary);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transform: translateY(100%);
  animation: rsWidgetSlide 0.6s ease 1.5s forwards;
}
@keyframes rsWidgetSlide {
  to { transform: translateY(0); }
}
.rs-widget__text {
  font-size: 13px;
  color: var(--clr-text-muted);
  flex: 1;
}
.rs-widget__text strong { color: var(--clr-white); }
.rs-widget__bonus { color: var(--clr-primary); font-weight: 800; font-size: 15px; }
.rs-widget__close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.rs-widget__close:hover { color: var(--clr-white); }

.rs-info-content {
  max-width: 780px;
  margin: 0 auto;
}
.rs-info-content h1 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 20px;
}
.rs-info-content h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-white);
  margin: 28px 0 10px;
}
.rs-info-content p {
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.rs-info-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}
.rs-info-content ul li { color: var(--clr-text-muted); font-size: 14px; line-height: 1.65; margin-bottom: 6px; }
.rs-info-content a { color: var(--clr-primary); }

.rs-fade-in {
  animation: rsFadeIn 0.55s ease both;
}
.rs-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes rsFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .rs-fade-in { animation: none; opacity: 1; transform: none; }
}

.rs-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--clr-accent);
  color: var(--clr-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rs-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--clr-primary);
  font-size: 13px;
  font-weight: 700;
}
.rs-rating svg { width: 14px; height: 14px; }

.wp-content-hidden {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

@media (max-width: 1024px) {
  .rs-header__nav { display: none; }
  .rs-header__actions .rs-btn { display: none; }
  .rs-burger { display: flex; }
  .rs-games__grid { grid-template-columns: repeat(3, 1fr); }
  .rs-footer__top { grid-template-columns: 1fr 1fr; }
  .rs-footer__mid { grid-template-columns: 1fr 1fr; }
  .rs-app__inner { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 768px) {
  .rs-header__inner { height: 60px; }
  .rs-mobile-menu { top: 60px; }
  .rs-block { padding: 20px 16px; }
  .rs-hero__content { padding: 40px 0; }
  .rs-advantages__grid { grid-template-columns: 1fr 1fr; }
  .rs-footer__top { grid-template-columns: 1fr; }
  .rs-footer__mid { grid-template-columns: 1fr; }
  .rs-footer__bottom { flex-direction: column; }
  .rs-footer__copy { text-align: left; }
  .rs-author { flex-direction: column; align-items: center; text-align: center; }
  .rs-author__links { justify-content: center; }
  .rs-author__meta { justify-content: center; }
  .rs-widget { flex-wrap: wrap; }
  .rs-games__grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding-bottom: 10px; }
  .rs-games__grid::-webkit-scrollbar { height: 4px; }
  .rs-games__grid::-webkit-scrollbar-track { background: var(--clr-bg); }
  .rs-games__grid::-webkit-scrollbar-thumb { background: var(--clr-primary); border-radius: 4px; }
  .rs-game-card { width: 140px; flex: 0 0 140px; scroll-snap-align: start; }
  .rs-slider-dots { display: flex; }
  .rs-toc__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .rs-advantages__grid { grid-template-columns: 1fr; }
  .rs-toc__grid { grid-template-columns: 1fr; }
  .rs-hero__actions { flex-direction: column; }
  .rs-hero__actions .rs-btn { width: 100%; justify-content: center; }
  .rs-section-title { font-size: 1.25rem; }
  .rs-widget__text { display: none; }
}

.rs-wc-x3f2a { display: none; }
.rs-wc-b7k9p { visibility: hidden; position: absolute; }
.rs-pseudo-c14r { color: transparent; font-size: 0; }
