:root {
  --rb-warning-height: 34px;
}

.rb-mf-warning {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2147483000;
  min-height: var(--rb-warning-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 14px;
  background: #facc15;
  color: #111827;
  border-bottom: 1px solid rgba(17, 24, 39, 0.2);
  font: 700 13px/1.25 Arial, sans-serif;
  text-align: center;
}

.rb-mf-warning i {
  color: #92400e;
  font-size: 14px;
  flex: 0 0 auto;
}

body {
  padding-top: var(--rb-warning-height);
}

.sidebar,
.top-header,
.top-header-desktop,
.top-header-mobile {
  top: var(--rb-warning-height) !important;
}

.sidebar,
.mobile-offcanvas {
  height: calc(100vh - var(--rb-warning-height)) !important;
}

.mobile-offcanvas-overlay,
.rb-age-gate {
  top: var(--rb-warning-height) !important;
}

body.fullscreen-active #gameContainerWrapper,
.deposit-modal,
.modal-overlay,
.modal-graficos,
.strat-modal-overlay,
.paywall-modal-overlay,
.promo-modal-overlay {
  top: var(--rb-warning-height) !important;
  height: calc(100vh - var(--rb-warning-height)) !important;
}

.rb-age-lock,
.rb-age-lock body {
  overflow: hidden !important;
}

.rb-age-gate {
  position: fixed;
  top: var(--rb-warning-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147482999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.rb-age-gate.show {
  display: flex;
}

.rb-age-card {
  position: relative;
  width: min(440px, 100%);
  background: #190c2e;
  color: #e4e4e7;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.rb-age-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  cursor: pointer;
}

.rb-age-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.14);
  color: #facc15;
  font-size: 24px;
}

.rb-age-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 23px;
  line-height: 1.25;
}

.rb-age-card p {
  margin: 0 0 22px;
  color: #c4c4cc;
  line-height: 1.5;
  font-size: 14px;
}

.rb-age-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.rb-age-btn {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.rb-age-yes {
  background: #6B3AB7;
}

.rb-age-no {
  background: rgba(255, 255, 255, 0.08);
}



.main-wrapper {
  min-height: calc(100vh - var(--rb-warning-height)) !important;
}

.main-wrapper:has(.rb-responsible-footer) {
  display: flex !important;
  flex-direction: column !important;
}

.rb-responsible-footer {
  width: 100% !important;
  max-width: none !important;
  align-self: stretch !important;
  flex: 0 0 auto !important;
  background: #190c2e !important;
  color: #a1a1aa !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 22px 18px !important;
  margin: auto 0 0 0 !important;
  text-align: center !important;
  box-sizing: border-box;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.rb-footer-container {
  width: min(820px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.rb-footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: #6B3AB7;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.rb-footer-copy-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.rb-footer-line,
.rb-footer-warning,
.rb-footer-brand {
  margin: 0 !important;
  max-width: 760px;
  color: #a1a1aa !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

.rb-footer-line strong,
.rb-footer-brand strong {
  color: #e4e4e7 !important;
}

.rb-footer-warning {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #facc15 !important;
  font-weight: 800;
}

.rb-footer-divider {
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}


@media (max-width: 600px) {
  :root {
    --rb-warning-height: 40px;
  }

  .rb-mf-warning {
    min-height: var(--rb-warning-height);
    font-size: 11px;
    padding: 7px 10px;
  }

  body {
    padding-top: var(--rb-warning-height);
  }
}
