:root {
  --color-header: #0d2f56;
  --color-header-dark: #091f3a;
  --color-bg: #0c220e;
  --color-bg-light: #122914;
  --color-btn-login: #5b695f;
  --color-btn-login-hover: #4a5750;
  --color-btn-reg: #2f8637;
  --color-btn-reg-hover: #247a2c;
  --color-text: #e8f0e9;
  --color-text-muted: #9eb5a0;
  --color-gold: #d4a43a;
  --color-gold-light: #f0c96a;
  --color-border: #1e4420;
  --color-card: #0e2d10;
  --color-card-alt: #102f12;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-main: "Inter", sans-serif;
}

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

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

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--color-gold-light);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  margin-bottom: 0.75rem;
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.wp-block-spacer {
  display: block;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.wp-caption {
  max-width: 100%;
}
.alignleft {
  float: left;
  margin-right: 1.5em;
}
.alignright {
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}
.entry-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.post-thumbnail {
  display: none;
}
.elementor-invisible {
  visibility: hidden;
}
#wpadminbar {
  display: none !important;
}
.wp-embed-responsive {
  display: none;
}

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

.rb-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.rb-section {
  padding: 56px 0;
}

.rb-section + .rb-section {
  border-top: 1px solid var(--color-border);
}

.rb-header {
  background-color: var(--color-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s;
}

.rb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  flex-wrap: wrap;
}

.rb-header__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.rb-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rb-header__nav a {
  color: #c8d8e8;
  font-size: 0.88rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s;
}
.rb-header__nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.rb-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rb-online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #7ecf84;
  white-space: nowrap;
}
.rb-online-badge__dot {
  width: 8px;
  height: 8px;
  background: #4cdd55;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

/* burger */
.rb-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.rb-burger span {
  display: block;
  height: 2px;
  background: #c8d8e8;
  border-radius: 2px;
  transition: all 0.3s;
}
.rb-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.rb-burger.active span:nth-child(2) {
  opacity: 0;
}
.rb-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.rb-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 16px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--color-header-dark);
}
.rb-mobile-nav.open {
  display: flex;
}
.rb-mobile-nav a {
  color: #c8d8e8;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.rb-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.rb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  text-decoration: none !important;
  white-space: nowrap;
}
.rb-btn:active {
  transform: scale(0.97);
}

.rb-btn--login {
  background: var(--color-btn-login);
  color: #fff;
}
.rb-btn--login:hover {
  background: var(--color-btn-login-hover);
  color: #fff;
}

.rb-btn--reg {
  background: var(--color-btn-reg);
  color: #fff;
  box-shadow: 0 2px 10px rgba(47, 134, 55, 0.4);
}
.rb-btn--reg:hover {
  background: var(--color-btn-reg-hover);
  color: #fff;
  box-shadow: 0 4px 16px rgba(47, 134, 55, 0.55);
}

.rb-btn--lg {
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.rb-btn--gold {
  background: linear-gradient(135deg, #c89a28, #e8bf50);
  color: #0c220e;
  font-weight: 700;
}
.rb-btn--gold:hover {
  background: linear-gradient(135deg, #d4a83a, #f0ce6a);
  color: #0c220e;
}

.rb-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-header-dark);
}

.rb-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/banner-rio.png");
  background-size: cover;
  background-position: center top;
  filter: brightness(0.45);
}

.rb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 34, 14, 0.85) 0%,
    rgba(12, 34, 14, 0.3) 60%,
    transparent 100%
  );
}

.rb-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 16px;
  max-width: 620px;
}

.rb-hero__badge {
  display: inline-block;
  background: var(--color-btn-reg);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.rb-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.rb-hero__title span {
  color: var(--color-gold);
}

.rb-hero__sub {
  font-size: 1.05rem;
  color: #c8d8c8;
  margin-bottom: 24px;
  line-height: 1.6;
}

.rb-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rb-section-title {
  text-align: center;
  margin-bottom: 32px;
}
.rb-section-title h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}
.rb-section-title p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.rb-info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.rb-info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.rb-info-table tr {
  border-bottom: 1px solid var(--color-border);
  transition: background 0.15s;
}
.rb-info-table tr:last-child {
  border-bottom: none;
}
.rb-info-table tr:hover {
  background: rgba(212, 164, 58, 0.04);
}

.rb-info-table td {
  padding: 12px 16px;
  font-size: 0.93rem;
  text-align: left;
  vertical-align: top;
}

.rb-info-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 600;
  width: 200px;
  white-space: nowrap;
}

.rb-info-table td:last-child {
  color: var(--color-text);
}

.rb-info-table__icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  fill: var(--color-gold);
}

.rb-jackpot {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #091f3a 0%, #0d2f56 60%, #091f3a 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 164, 58, 0.25);
  position: relative;
  overflow: hidden;
}

.rb-jackpot::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(212, 164, 58, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.rb-jackpot__label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.rb-jackpot__amount {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--color-gold);
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(212, 164, 58, 0.4);
  line-height: 1.1;
  transition: transform 0.15s;
}

.rb-jackpot__currency {
  font-size: 1.4rem;
  color: var(--color-gold-light);
  margin-right: 4px;
}

.rb-jackpot__sub {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 10px;
  margin-bottom: 20px;
}

.rb-jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.rb-jackpot-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 164, 58, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.rb-jackpot-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 164, 58, 0.4);
}
.rb-jackpot-card__name {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rb-jackpot-card__val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-gold);
}

.rb-mirrors {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 28px;
}

.rb-mirrors__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.rb-mirrors__time {
  font-size: 0.82rem;
  color: #7ecf84;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rb-mirrors__time-dot {
  width: 7px;
  height: 7px;
  background: #4cdd55;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.rb-mirrors-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rb-mirrors-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.rb-mirrors-table thead tr {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 2px solid var(--color-border);
}

.rb-mirrors-table th {
  padding: 10px 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-align: left;
  font-weight: 600;
}

.rb-mirrors-table td {
  padding: 12px 14px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: middle;
}

.rb-mirrors-table tr:last-child td {
  border-bottom: none;
}
.rb-mirrors-table tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}

.rb-mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 99px;
  font-weight: 600;
}
.rb-mirror-status--active {
  background: rgba(76, 221, 85, 0.12);
  color: #4cdd55;
}
.rb-mirror-status--dot {
  width: 6px;
  height: 6px;
  background: #4cdd55;
  border-radius: 50%;
}

.rb-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.rb-bonus-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.rb-bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.rb-bonus-card__head {
  background: linear-gradient(135deg, var(--color-header) 0%, #152b4f 100%);
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rb-bonus-card__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
}

.rb-bonus-card__tag {
  display: inline-block;
  background: rgba(212, 164, 58, 0.2);
  color: var(--color-gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}

.rb-bonus-card__amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1.1;
}

.rb-bonus-card__title {
  font-size: 1rem;
  color: #c8d8e8;
  margin-top: 6px;
}

.rb-bonus-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rb-bonus-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.rb-bonus-card__terms {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  opacity: 0.7;
  margin-top: auto;
}

.rb-bonus-card__foot {
  padding: 0 20px 20px;
}
.rb-bonus-card__foot .rb-btn {
  width: 100%;
}

/* Mobile bonus slider */
@media (max-width: 700px) {
  .rb-bonuses-slider-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 16px;
    padding-bottom: 10px;
  }
  .rb-bonuses-slider-wrap .rb-bonus-card {
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }
  .rb-bonuses-grid {
    display: none;
  }
  .rb-bonuses-slider-wrap {
    display: flex;
  }
}
@media (min-width: 701px) {
  .rb-bonuses-slider-wrap {
    display: none;
  }
  .rb-bonuses-grid {
    display: grid;
  }
}

.rb-slot {
  background: linear-gradient(135deg, #091f3a, #0d2f56);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 164, 58, 0.2);
  padding: 32px 24px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.rb-slot__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.rb-slot__sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.rb-slot__reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.rb-slot__reel {
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(212, 164, 58, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transition: transform 0.08s;
  position: relative;
  overflow: hidden;
}

.rb-slot__reel.spinning {
  animation: reel-spin 0.12s linear infinite;
}

@keyframes reel-spin {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-6px);
  }
  75% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}

.rb-slot__win {
  display: none;
  background: rgba(47, 134, 55, 0.12);
  border: 1px solid rgba(76, 221, 85, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  animation: fadein 0.4s ease;
}

.rb-slot__win h3 {
  color: #4cdd55;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.rb-slot__win p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin: 0;
}
.rb-slot__win .rb-btn {
  margin-top: 12px;
}

.rb-slot__lose {
  display: none;
  background: rgba(200, 60, 60, 0.08);
  border: 1px solid rgba(200, 60, 60, 0.2);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 16px;
  color: #e07070;
  font-size: 0.88rem;
  animation: fadein 0.4s ease;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rb-slot__balance {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 12px;
}
.rb-slot__balance span {
  color: var(--color-gold);
  font-weight: 700;
}

.rb-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.rb-review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: box-shadow 0.25s;
}
.rb-review-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.rb-review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.rb-review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
}

.rb-review-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

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

.rb-review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.rb-review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
}

.rb-review-card__text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* review form */
.rb-review-form {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 600px;
  margin: 0 auto;
}

.rb-review-form h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--color-gold);
}

.rb-field {
  margin-bottom: 16px;
}

.rb-field label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.rb-field input,
.rb-field textarea,
.rb-field select {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 0.92rem;
  transition: border-color 0.2s;
  outline: none;
}
.rb-field input:focus,
.rb-field textarea:focus {
  border-color: var(--color-btn-reg);
}
.rb-field textarea {
  resize: vertical;
  min-height: 100px;
}

.rb-form-success {
  display: none;
  background: rgba(47, 134, 55, 0.12);
  border: 1px solid rgba(76, 221, 85, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #4cdd55;
  font-size: 0.92rem;
  margin-top: 14px;
  animation: fadein 0.4s ease;
}

.rb-content-body {
  line-height: 1.75;
  color: var(--color-text);
}

.rb-content-body h2,
.rb-content-body h3,
.rb-content-body h4 {
  color: var(--color-gold);
  margin-top: 1.6em;
  margin-bottom: 0.6em;
}

.rb-content-body p {
  margin-bottom: 1em;
}

.rb-content-body a {
  color: var(--color-gold);
  text-decoration: underline;
}
.rb-content-body a:hover {
  color: var(--color-gold-light);
}

.rb-content-body ul,
.rb-content-body ol {
  margin: 0.8em 0 1em 1.6em;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.rb-content-body ul li::marker {
  color: var(--color-gold);
}
.rb-content-body ol li::marker {
  color: var(--color-gold);
}

.rb-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}
.rb-content-body table th,
.rb-content-body table td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  text-align: left;
}
.rb-content-body table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-gold);
  font-weight: 600;
}
.rb-content-body table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.rb-content-body blockquote {
  border-left: 3px solid var(--color-gold);
  padding: 10px 18px;
  margin: 1em 0;
  background: rgba(212, 164, 58, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--color-text-muted);
}

.rb-content-body img {
  border-radius: var(--radius-sm);
  margin: 0.8em 0;
}

.rb-content-body strong {
  color: var(--color-text);
}

.rb-author-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 32px;
}

.rb-author-box__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

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

.rb-author-box__role {
  font-size: 0.8rem;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.rb-author-box__bio {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.rb-author-box__link {
  font-size: 0.8rem;
  margin-top: 6px;
  display: inline-block;
}

.rb-faq {
  max-width: 760px;
  margin: 0 auto;
}

.rb-faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.rb-faq__item.open {
  border-color: rgba(212, 164, 58, 0.35);
}

.rb-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-card);
  user-select: none;
  gap: 12px;
}

.rb-faq__q:hover {
  background: var(--color-card-alt);
}

.rb-faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--color-gold);
  transition: transform 0.25s;
}
.rb-faq__item.open .rb-faq__icon {
  transform: rotate(45deg);
}

.rb-faq__a {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  background: var(--color-card);
}
.rb-faq__item.open .rb-faq__a {
  display: block;
}

.rb-footer {
  background-color: var(--color-header);
  color: #a8bfcc;
  padding: 48px 0 24px;
  margin-top: auto;
}

.rb-footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 32px;
}

@media (max-width: 700px) {
  .rb-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.rb-footer__logo img {
  height: 44px;
  margin-bottom: 12px;
}

.rb-footer__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #7a99b0;
  max-width: 260px;
}

.rb-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 600px) {
  .rb-footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}

.rb-footer__col-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a99b0;
  margin-bottom: 12px;
  font-weight: 700;
}

.rb-footer__col a {
  display: block;
  font-size: 0.85rem;
  color: #a8bfcc;
  padding: 3px 0;
  transition: color 0.2s;
}
.rb-footer__col a:hover {
  color: #fff;
}

.rb-footer__payments {
  margin-bottom: 20px;
}
.rb-footer__payments-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7a99b0;
  margin-bottom: 10px;
  font-weight: 600;
}
.rb-footer__payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rb-footer__payment-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.78rem;
  color: #c0d0dc;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.rb-footer__payment-badge:hover {
  background: rgba(255, 255, 255, 0.13);
}

.rb-footer__providers {
  margin-bottom: 24px;
}
.rb-footer__providers-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7a99b0;
  margin-bottom: 10px;
  font-weight: 600;
}
.rb-footer__providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rb-footer__provider-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.75rem;
  color: #8aaabb;
}

.rb-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0 0 20px;
}

.rb-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #6a8899;
}

.rb-footer__legal {
  max-width: 660px;
  line-height: 1.6;
}

.rb-footer__copy {
  white-space: nowrap;
}

.rb-widget {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #091f3a, #0d2f56);
  border: 1px solid rgba(212, 164, 58, 0.35);
  border-radius: 99px;
  padding: 10px 20px 10px 14px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.55);
  animation: widget-bob 3s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes widget-bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-4px);
  }
}

.rb-widget__bonus {
  display: flex;
  flex-direction: column;
}
.rb-widget__bonus-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  line-height: 1;
}
.rb-widget__bonus-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1.2;
}

.rb-widget .rb-btn {
  font-size: 0.88rem;
  padding: 8px 20px;
}

.rb-widget__close {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 22px;
  height: 22px;
  background: #333;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.75rem;
  line-height: 1;
  transition: background 0.2s;
}
.rb-widget__close:hover {
  background: #555;
}

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

.rb-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
}
.rb-badge--green {
  background: rgba(47, 134, 55, 0.18);
  color: #4cdd55;
  border: 1px solid rgba(76, 221, 85, 0.2);
}
.rb-badge--gold {
  background: rgba(212, 164, 58, 0.15);
  color: var(--color-gold);
  border: 1px solid rgba(212, 164, 58, 0.25);
}
.rb-badge--blue {
  background: rgba(30, 80, 160, 0.2);
  color: #7ab0e8;
  border: 1px solid rgba(100, 160, 220, 0.2);
}

.xb7k2-clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.f9a1e-hidden {
  display: none;
}
.zq3m8-placeholder {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.wp3x1-entry-content {
  box-sizing: inherit;
}
.yd82q-block {
  padding: 0;
}
.mn5r7-text {
  font-weight: inherit;
}
.rk4p2-wrap {
  max-width: inherit;
}
.jt9s6-icon {
  display: inline;
}
.ew2p4-link {
  text-decoration: inherit;
}
.ox7l3-item {
  list-style: inherit;
}
.vb5n8-col {
  vertical-align: inherit;
}
.hq6d1-row {
  float: none;
}
.cy3f0-cell {
  border: 0;
}

@media (max-width: 991px) {
  .rb-header__nav {
    display: none;
  }
  .rb-burger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .rb-hero__content {
    padding: 40px 16px;
  }
  .rb-jackpot {
    padding: 28px 14px;
  }
  .rb-mirrors {
    padding: 18px 14px;
  }
  .rb-section {
    padding: 40px 0;
  }
  .rb-widget {
    width: calc(100% - 24px);
    bottom: 12px;
    padding: 10px 16px 10px 12px;
  }
}

@media (max-width: 400px) {
  .rb-slot__reel {
    width: 66px;
    height: 66px;
    font-size: 1.8rem;
  }
}

.container-fuul {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  line-height: 1.75;
}

.container-fuul h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.container-fuul h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-gold);
}

.container-fuul h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-gold);
}

.container-fuul p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.container-fuul a {
  color: var(--color-gold);
  text-decoration: underline;
  word-break: break-word;
}

.container-fuul a:hover {
  color: var(--color-gold-light);
}

.container-fuul ul {
  margin: 1rem 0 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.container-fuul li::marker {
  color: var(--color-gold);
}

.container-fuul strong {
  color: var(--color-text);
}

@media (max-width: 768px) {
  .container-fuul {
    padding: 30px 16px;
    border-radius: var(--radius-md);
  }

  .container-fuul h1 {
    font-size: 1.5rem;
  }

  .container-fuul h2 {
    font-size: 1.3rem;
  }

  .container-fuul h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .container-fuul {
    padding: 24px 14px;
  }

  .container-fuul p {
    font-size: 0.95rem;
  }

  .container-fuul ul {
    margin-left: 1.2rem;
  }
}
.container-fuul {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  line-height: 1.75;
}

.container-fuul h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.container-fuul h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-gold);
}

.container-fuul h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-gold);
}

.container-fuul p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.container-fuul a {
  color: var(--color-gold);
  text-decoration: underline;
  word-break: break-word;
}

.container-fuul a:hover {
  color: var(--color-gold-light);
}

.container-fuul ul {
  margin: 1rem 0 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.container-fuul li::marker {
  color: var(--color-gold);
}

.container-fuul strong {
  color: var(--color-text);
}

@media (max-width: 768px) {
  .container-fuul {
    padding: 30px 16px;
    border-radius: var(--radius-md);
  }

  .container-fuul h1 {
    font-size: 1.5rem;
  }

  .container-fuul h2 {
    font-size: 1.3rem;
  }

  .container-fuul h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .container-fuul {
    padding: 24px 14px;
  }

  .container-fuul p {
    font-size: 0.95rem;
  }

  .container-fuul ul {
    margin-left: 1.2rem;
  }
}
