/* ==========================================================================
   Universal casino landing template
   Brand layer: change the variables below for logo/banner/button color variants.
   ========================================================================== */

:root{
  --rb-bg: #181828;
  --rb-bg-deep: #141422;
  --rb-header: #181828;
  --rb-panel: #601880;
  --rb-panel-2: #505058;
  --rb-card: #6d2a8a;
  --rb-line: rgba(255,224,32,.16);
  --rb-text: #ffffff;
  --rb-muted: #a8b0bd;
  --rb-primary: #ffe020;
  --rb-primary-2: #f09000;
  --rb-primary-3: #d6ca28;
  --rb-accent: #6058e0;
  --rb-gold: #6058e0;
  --rb-violet: #f09000;
  --rb-violet-2: #141422;
  --rb-shadow-green: 0 0 0 1px rgba(255,224,32,.34), 0 12px 28px rgba(255,224,32,.34);
  --rb-radius: 24px;
  --rb-radius-sm: 16px;
  --rb-shell: min(1760px, calc(100% - 32px));
  --rb-font: "Manrope", "Segoe UI", Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--rb-text);
  background:
    radial-gradient(900px 520px at 80% -12%, rgba(255,224,32,.34), transparent 64%),
    radial-gradient(760px 440px at 8% 10%, rgba(237,201,127,.08), transparent 58%),
    linear-gradient(218deg, #141422 0%, #505058 8%, #181828 30%, #181828 34%, #505058 68%, #181828 89%, #141422 100%);
  font-family:var(--rb-font);
  line-height:1.5;
  min-height:100vh;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img,svg{display:block;max-width:100%}
button,input{font:inherit}
h1,h2,h3,p{margin:0}
.rb-shell{width:var(--rb-shell);margin:0 auto}

.rb-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(5,26,7,.94);
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter:blur(14px);
}
.rb-header__row{
  display:grid;
  grid-template-columns:auto auto minmax(220px, 1fr) auto auto;
  gap:14px;
  align-items:center;
  min-height:82px;
}
.rb-logo{
  display:flex;
  align-items:center;
  min-width:116px;
}
.rb-logo img{
  width:auto;
  height:50px;
  object-fit:contain;
}
.rb-header-bonus,
.rb-register{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  border-radius:12px;
  padding:0 34px;
  color:#fff;
  font-size:18px;
  font-weight:900;
  text-transform:uppercase;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:inset 0 -3px 0 rgba(0,0,0,.18), var(--rb-shadow-green);
  white-space:nowrap;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, filter .25s ease;
}
.rb-header-bonus{
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 32%),
    linear-gradient(180deg, var(--rb-primary), var(--rb-primary-2));
}
.rb-register{
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 32%),
    linear-gradient(180deg, var(--rb-primary), var(--rb-primary-2));
}
.rb-header-bonus:hover,
.rb-register:hover,
.rb-main-cta:hover,
.rb-section-more:hover{
  transform:translateY(-2px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), transparent 34%),
    linear-gradient(180deg, #46bd51, var(--rb-primary-2));
  box-shadow:0 0 0 2px rgba(237,201,127,.18), 0 0 34px rgba(255,224,32,.34), inset 0 -3px 0 rgba(0,0,0,.18);
  filter:brightness(1.05);
}
.rb-header-bonus:active,
.rb-register:active,
.rb-main-cta:active,
.rb-section-more:active{
  transform:translateY(0);
}
.rb-header-bonus:after,
.rb-register:after,
.rb-main-cta:after{
  content:"";
  position:absolute;
  inset:-40% auto -40% -35%;
  width:26%;
  transform:skewX(-22deg);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent);
  animation:rb-shine 4.5s ease-in-out infinite;
}
@keyframes rb-shine{
  0%{left:-35%}
  42%{left:125%}
  100%{left:125%}
}
.rb-site-search{
  display:flex;
  align-items:center;
  height:62px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(11,24,16,.86);
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.25);
  overflow:hidden;
}
.rb-site-search input{
  flex:1;
  min-width:0;
  height:100%;
  border:0;
  outline:0;
  background:transparent;
  color:#fff;
  padding:0 26px;
  font-size:20px;
  font-weight:800;
  text-transform:uppercase;
}
.rb-site-search input::placeholder{color:#6d806e;opacity:1}
.rb-site-search button{
  width:70px;
  height:100%;
  border:0;
  background:transparent;
  color:var(--rb-accent);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.rb-site-search button:hover{
  color:var(--rb-gold);
  transform:scale(1.08);
}
.rb-site-search svg,
.rb-login svg,
.rb-social svg,
.rb-store svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.rb-login{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#314033;
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:inset 0 -2px 0 rgba(0,0,0,.2);
  transition:transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.rb-login:hover{
  transform:translateY(-2px);
  background:var(--rb-primary);
  box-shadow:0 0 26px rgba(255,224,32,.34);
}

.rb-hero{
  padding:22px 0 34px;
}
.rb-hero__banner{
  position:relative;
  min-height:470px;
  overflow:hidden;
  border-radius:28px;
  background:
    linear-gradient(90deg, rgba(11,24,16,.94) 0%, rgba(18,36,20,.82) 34%, rgba(69,16,83,.72) 76%, rgba(7,22,10,.92) 100%),
    url("img/hero-bg.svg") center / cover no-repeat;
  box-shadow:0 26px 56px rgba(0,0,0,.38), inset 0 0 0 1px rgba(255,255,255,.06);
}
.rb-hero__banner:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.08), transparent 26%, rgba(0,0,0,.18));
  pointer-events:none;
}
.rb-hero__art{
  position:absolute;
  left:22px;
  bottom:-24px;
  width:39%;
  max-width:560px;
  min-width:320px;
  z-index:2;
}
.rb-hero__art img{
  width:100%;
  height:auto;
  filter:drop-shadow(0 26px 30px rgba(0,0,0,.42));
}
.rb-hero__offer{
  position:absolute;
  left:50%;
  top:50%;
  z-index:3;
  transform:translate(-50%, -50%);
  width:min(740px, 58%);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.rb-hero__label{
  margin-bottom:12px;
  font-size:34px;
  line-height:1.1;
  font-weight:600;
}
.rb-hero__title{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:66px;
  line-height:1;
  font-weight:900;
  letter-spacing:0;
  text-transform:uppercase;
}
.rb-hero__title strong{
  font-size:92px;
  color:#fff;
  text-shadow:0 3px 0 rgba(0,0,0,.24), 0 0 24px rgba(255,224,32,.34);
}
.rb-hero__title mark{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:5px 14px;
  background:var(--rb-gold);
  color:#090909;
  font-size:40px;
  line-height:1;
  font-weight:900;
}
.rb-hero__offer p{
  margin-top:12px;
  color:#e7ebff;
  font-size:22px;
  font-weight:800;
}
.rb-main-cta{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:250px;
  min-height:70px;
  margin-top:34px;
  border-radius:999px;
  overflow:hidden;
  color:#fff;
  background:linear-gradient(180deg, var(--rb-primary), var(--rb-primary-2));
  box-shadow:var(--rb-shadow-green), inset 0 -4px 0 rgba(0,0,0,.18);
  font-size:22px;
  font-weight:900;
}

.rb-winners{
  width:min(1480px, calc(100% - 96px));
  height:108px;
  margin:-68px auto 0;
  position:relative;
  z-index:6;
  overflow:hidden;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(25,43,27,.96), rgba(11,24,16,.96));
  box-shadow:0 18px 34px rgba(0,0,0,.34);
}
.rb-winners-track{
  display:flex;
  gap:12px;
  align-items:center;
  height:100%;
  padding:14px 18px;
  will-change:transform;
}
.rb-win-card{
  flex:0 0 224px;
  height:80px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 14px 10px 10px;
  border-radius:20px;
  background:rgba(5,26,7,.76);
  border:1px solid rgba(255,255,255,.05);
}
.rb-win-card img{
  width:62px;
  height:62px;
  border-radius:14px;
  object-fit:cover;
}
.rb-win-card div{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.rb-win-card span{
  color:#fff;
  font-size:16px;
  font-weight:800;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.rb-win-card strong{
  color:#fff;
  font-size:17px;
  font-weight:900;
  white-space:nowrap;
}

.rb-games,
.rb-providers,
.rb-text-section{
  padding:34px 0;
}
.rb-game-section{
  padding:14px 0 36px;
}
.rb-game-section + .rb-game-section{
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,.06);
}
.rb-section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:20px;
}
.rb-section-head h2{
  display:flex;
  align-items:center;
  gap:16px;
  font-size:34px;
  line-height:1.1;
  font-weight:900;
  text-transform:uppercase;
}
.rb-game-emoji{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  line-height:1;
  filter:drop-shadow(0 0 12px rgba(237,201,127,.24));
}
.rb-section-more{
  position:relative;
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:12px;
  overflow:hidden;
  color:#fff;
  background:linear-gradient(180deg, var(--rb-primary), var(--rb-primary-2));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 24px rgba(255,224,32,.34), inset 0 -2px 0 rgba(0,0,0,.18);
  font-size:15px;
  font-weight:900;
  white-space:nowrap;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, filter .25s ease;
}
.rb-section-more:before{
  content:"";
  position:absolute;
  inset:-40% auto -40% -35%;
  width:26%;
  transform:skewX(-22deg);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  animation:rb-shine 4.5s ease-in-out infinite;
}
.rb-section-more:hover{
  transform:translateY(-2px);
  background:linear-gradient(180deg, #46bd51, var(--rb-primary-2));
  box-shadow:0 0 0 2px rgba(237,201,127,.18), 0 0 28px rgba(255,224,32,.34), inset 0 -2px 0 rgba(0,0,0,.18);
}
.rb-section-icon{
  width:58px;
  height:58px;
  border-radius:16px;
  background:var(--rb-primary-2);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.rb-section-icon svg{
  width:34px;
  height:34px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.rb-game-panel{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:14px;
}
.rb-game-card{
  position:relative;
  isolation:isolate;
  aspect-ratio:1 / 1.28;
  overflow:hidden;
  border-radius:12px;
  background:#07090f;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 12px 24px rgba(0,0,0,.28);
  transform:translateZ(0);
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.rb-game-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .28s ease, filter .28s ease;
}
.rb-game-card:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:rgba(3,16,4,.58);
  opacity:0;
  transition:opacity .25s ease;
}
.rb-game-card:after{
  content:"▶";
  position:absolute;
  left:50%;
  top:50%;
  z-index:3;
  width:66px;
  height:66px;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:translate(-50%, -50%) scale(.88);
  border-radius:50%;
  padding-left:4px;
  color:#fff;
  background:linear-gradient(180deg, var(--rb-primary), var(--rb-primary-2));
  box-shadow:0 0 0 8px color-mix(in srgb, #ffe020 18%, transparent), 0 16px 30px rgba(0,0,0,.45);
  font-size:25px;
  opacity:0;
  transition:opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}
.rb-game-card span{
  position:absolute;
  left:16px;
  right:16px;
  top:50%;
  z-index:4;
  transform:translateY(-88px);
  opacity:0;
  font-size:17px;
  font-weight:900;
  line-height:1.2;
  text-align:center;
  text-shadow:0 2px 8px rgba(0,0,0,.8);
  transition:opacity .25s ease, transform .25s ease;
}
.rb-game-card i{
  position:absolute;
  left:50%;
  top:calc(50% + 58px);
  z-index:4;
  transform:translate(-50%, -18px) scale(.92);
  opacity:0;
  min-width:108px;
  min-height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(237,201,127,.68);
  background:rgba(5,26,7,.88);
  color:#fff;
  font-style:normal;
  font-size:14px;
  font-weight:900;
  box-shadow:0 14px 28px rgba(0,0,0,.36);
  transition:opacity .2s ease, transform .2s ease;
}
.rb-game-card:hover,
.rb-game-card:focus-visible{
  transform:translateY(-4px);
  border-color:rgba(237,201,127,.68);
  box-shadow:0 18px 36px rgba(0,0,0,.44), 0 0 0 1px rgba(255,224,32,.34);
  outline:0;
}
.rb-game-card:hover:before,
.rb-game-card:focus-visible:before,
.rb-game-card:hover:after,
.rb-game-card:focus-visible:after,
.rb-game-card:hover span,
.rb-game-card:focus-visible span{
  opacity:1;
}
.rb-game-card:hover:after,
.rb-game-card:focus-visible:after{
  transform:translate(-50%, -50%) scale(1);
}
.rb-game-card:hover img,
.rb-game-card:focus-visible img{
  transform:scale(1.08);
  filter:blur(3px) saturate(1.1) brightness(.58);
}
.rb-game-card:hover i,
.rb-game-card:focus-visible i{
  opacity:1;
  transform:translate(-50%, 0) scale(1);
}

.rb-provider-box{
  overflow:hidden;
  border-radius:24px;
  background:rgba(18,36,20,.92);
  padding:34px 34px 36px;
  box-shadow:0 18px 38px rgba(0,0,0,.24);
}
.rb-section-head--inline{margin-bottom:24px}
.rb-provider-carousel{
  overflow:hidden;
  mask-image:linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.rb-provider-track{
  display:flex;
  width:max-content;
  gap:12px;
  animation:rb-provider-scroll 32s linear infinite;
}
.rb-provider-carousel:hover .rb-provider-track{animation-play-state:paused}
@keyframes rb-provider-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.rb-provider-card{
  flex:0 0 290px;
  height:142px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:24px;
  background:#6d2a8a;
  padding:34px;
  border:1px solid rgba(255,255,255,.06);
  transition:transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.rb-provider-card:hover{
  transform:translateY(-4px);
  background:color-mix(in srgb, #6d2a8a 78%, #ffe020 22%);
  box-shadow:0 14px 28px rgba(0,0,0,.3), 0 0 0 1px rgba(255,224,32,.34);
}
.rb-provider-card img{
  max-width:210px;
  max-height:70px;
  width:auto;
  height:auto;
  object-fit:contain;
}

.rb-article{
  overflow:hidden;
  border-radius:20px;
  background:
    linear-gradient(90deg, rgba(11,24,16,.97), rgba(18,36,20,.94)),
    linear-gradient(180deg, var(--rb-panel), var(--rb-bg-deep));
  border:1px solid rgba(255,255,255,.08);
  padding:34px 38px;
}
.rb-article h1{
  margin-bottom:22px;
  text-align:center;
  font-size:32px;
  line-height:1.2;
  font-weight:900;
}
.rb-scroll-text{
  height:430px;
  overflow-y:scroll;
  padding-right:20px;
  color:#f4f6fb;
  font-size:18px;
  line-height:1.72;
  scrollbar-width:thin;
  scrollbar-color:var(--rb-primary) rgba(255,255,255,.08);
}
.rb-scroll-text::-webkit-scrollbar{width:8px}
.rb-scroll-text::-webkit-scrollbar-track{
  background:rgba(255,255,255,.08);
  border-radius:999px;
}
.rb-scroll-text::-webkit-scrollbar-thumb{
  background:var(--rb-primary);
  border-radius:999px;
}
.rb-scroll-text :where(p,ul,ol,table){margin:0 0 18px}
.rb-scroll-text :where(h2,h3){
  margin:28px 0 12px;
  color:#fff;
  line-height:1.25;
}
.rb-scroll-text h2{font-size:26px}
.rb-scroll-text h3{font-size:22px}
.rb-scroll-text :where(ul,ol){padding-left:24px}
.rb-scroll-text table{
  width:100%;
  border-collapse:collapse;
  margin:18px 0;
}
.rb-scroll-text th,
.rb-scroll-text td{
  border:1px solid rgba(255,255,255,.75);
  padding:12px 14px;
  text-align:left;
}
.rb-mirror{
  margin:24px auto 0;
  width:max-content;
  max-width:100%;
  padding:14px 24px;
  border-radius:14px;
  color:#fff;
  background:color-mix(in srgb, #ffe020 18%, transparent);
  border:1px solid rgba(255,224,32,.34);
  box-shadow:0 0 24px rgba(255,224,32,.34);
  text-align:center;
  font-size:22px;
  font-weight:900;
}

.rb-footer{
  padding:18px 0 0;
  background:#181828;
}
.rb-footer-apps{
  min-height:130px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:26px;
  align-items:center;
  border-radius:24px;
  background:#601880;
  border:1px solid rgba(255,255,255,.08);
  padding:24px 30px;
}
.rb-footer-logo img{
  width:auto;
  height:48px;
}
.rb-app-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}
.rb-store{
  min-width:330px;
  min-height:70px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  border-radius:14px;
  background:#fff;
  color:#000;
  font-size:23px;
  font-weight:900;
  border:1px solid transparent;
  transition:transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.rb-store svg{
  width:31px;
  height:31px;
  fill:#000;
  stroke:#000;
  transition:fill .25s ease, stroke .25s ease, transform .25s ease;
}
.rb-store--ios:hover{
  transform:translateY(-4px);
  color:#fff;
  background:linear-gradient(135deg, #0b0f19, #007aff);
  border-color:rgba(0,122,255,.55);
  box-shadow:0 18px 36px rgba(0,122,255,.34);
}
.rb-store--android:hover{
  transform:translateY(-4px);
  color:#06140b;
  background:linear-gradient(135deg, #eafff1, #3DDC84);
  border-color:rgba(61,220,132,.55);
  box-shadow:0 18px 36px rgba(61,220,132,.34);
}
.rb-store:hover svg{
  transform:scale(1.08);
}
.rb-store--ios:hover svg{
  fill:#fff;
  stroke:#fff;
}
.rb-store--android:hover svg{
  fill:#06140b;
  stroke:#06140b;
}
.rb-socials{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
}
.rb-social{
  width:58px;
  height:58px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.rb-social svg{
  width:34px;
  height:34px;
}
.rb-social--tg{background:#26a6e8}
.rb-social--ig{background:linear-gradient(135deg, #ffd600, #ff0069 58%, #7638fa)}
.rb-social--x{background:#000}
.rb-social--fb{background:#1877f2}
.rb-social--wa{background:#36c85a}
.rb-social--ig svg,
.rb-social--x svg,
.rb-social--wa svg{fill:none}
.rb-social--fb svg,
.rb-social--tg svg{fill:currentColor;stroke:none}
.rb-social:hover{
  transform:translateY(-5px) scale(1.04);
  filter:brightness(1.12) saturate(1.18);
}
.rb-social--tg:hover{box-shadow:0 14px 30px rgba(38,166,232,.38)}
.rb-social--ig:hover{box-shadow:0 14px 30px rgba(255,0,105,.38)}
.rb-social--x:hover{box-shadow:0 14px 30px rgba(255,255,255,.18)}
.rb-social--fb:hover{box-shadow:0 14px 30px rgba(24,119,242,.38)}
.rb-social--wa:hover{box-shadow:0 14px 30px rgba(54,200,90,.38)}

.rb-footer-bottom{
  min-height:214px;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:18px 0 34px;
}
.rb-payments{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:32px;
  min-height:48px;
  opacity:.48;
  filter:grayscale(1);
}
.rb-payments img{
  max-width:104px;
  max-height:38px;
  object-fit:contain;
}
.rb-footer-meta{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
  color:#fff;
  font-size:22px;
  font-weight:600;
}
.rb-responsible{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:38px;
  color:#8e8e8e;
}
.rb-badge{
  width:70px;
  height:70px;
  border:5px solid currentColor;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:31px;
  font-weight:900;
  line-height:1;
}
.rb-badge--ga{
  border:0;
  border-radius:0;
  width:auto;
  height:auto;
  font-size:55px;
}
.rb-badge--text{
  width:auto;
  min-width:96px;
  height:auto;
  border:0;
  border-radius:0;
  font-size:18px;
  text-transform:uppercase;
}

@media (max-width: 1180px){
  .rb-header__row{
    grid-template-columns:auto auto 1fr auto;
    gap:10px;
    padding:12px 0;
  }
  .rb-register{grid-column:auto}
  .rb-site-search{
    grid-column:1 / -1;
    order:2;
    height:54px;
  }
  .rb-hero__banner{min-height:430px}
  .rb-hero__art{opacity:.65}
  .rb-hero__offer{width:min(720px, 72%)}
  .rb-game-panel{grid-template-columns:repeat(4, minmax(0, 1fr))}
  .rb-footer-apps{grid-template-columns:1fr;justify-items:center}
  .rb-socials{justify-content:center}
}

@media (max-width: 760px){
  :root{--rb-shell: min(100% - 20px, 760px)}
  .rb-header__row{
    grid-template-columns:auto auto auto;
    justify-content:space-between;
    min-height:68px;
  }
  .rb-logo{min-width:0}
  .rb-logo img{height:38px}
  .rb-header-bonus{
    min-height:44px;
    padding:0 18px;
    font-size:13px;
  }
  .rb-register{
    min-height:44px;
    padding:0 18px;
    font-size:13px;
    order:3;
    grid-column:1 / -1;
    width:100%;
  }
  .rb-login{
    width:44px;
    height:44px;
  }
  .rb-login svg{width:22px;height:22px}
  .rb-site-search{
    order:2;
    height:48px;
  }
  .rb-site-search input{
    padding:0 16px;
    font-size:15px;
  }
  .rb-site-search button{width:52px}
  .rb-site-search svg{width:22px;height:22px}

  .rb-hero{padding-top:14px}
  .rb-hero__banner{
    min-height:505px;
    border-radius:20px;
  }
  .rb-hero__art{
    left:50%;
    top:10px;
    bottom:auto;
    transform:translateX(-50%);
    width:72%;
    height:185px;
    min-width:0;
    max-width:300px;
    overflow:hidden;
    opacity:.95;
    display:flex;
    align-items:flex-start;
    justify-content:center;
  }
  .rb-hero__art img{
    width:100%;
    height:100%;
    object-fit:contain;
  }
  .rb-hero__offer{
    top:205px;
    width:88%;
    transform:translateX(-50%);
  }
  .rb-hero__label{
    font-size:24px;
  }
  .rb-hero__title{
    font-size:31px;
    gap:8px;
  }
  .rb-hero__title strong{
    font-size:48px;
  }
  .rb-hero__title mark{
    font-size:22px;
    padding:5px 10px;
  }
  .rb-hero__offer p{
    font-size:15px;
  }
  .rb-main-cta{
    min-width:220px;
    min-height:58px;
    font-size:18px;
    margin-top:24px;
  }
  .rb-winners{
    width:calc(100% - 18px);
    height:92px;
    margin-top:-34px;
    border-radius:18px;
  }
  .rb-winners-track{padding:12px}
  .rb-win-card{
    flex-basis:202px;
    height:68px;
    border-radius:16px;
  }
  .rb-win-card img{
    width:50px;
    height:50px;
    border-radius:12px;
  }
  .rb-win-card span,
  .rb-win-card strong{font-size:14px}

  .rb-games,
  .rb-providers,
  .rb-text-section{padding:24px 0}
  .rb-section-head h2{
    font-size:24px;
  }
  .rb-section-head{
    align-items:flex-start;
    flex-direction:column;
  }
  .rb-game-emoji{
    width:30px;
    height:30px;
    font-size:25px;
  }
  .rb-section-more{
    min-height:40px;
    padding:0 15px;
    font-size:13px;
  }
  .rb-section-icon{
    width:42px;
    height:42px;
    border-radius:12px;
  }
  .rb-section-icon svg{
    width:25px;
    height:25px;
  }
  .rb-game-panel{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:9px;
  }
  .rb-game-card{
    border-radius:10px;
  }
  .rb-game-card span{
    left:9px;
    right:9px;
    top:50%;
    bottom:auto;
    transform:translateY(-70px);
    font-size:13px;
  }
  .rb-game-card:after{
    width:52px;
    height:52px;
    font-size:20px;
  }
  .rb-game-card i{
    min-width:82px;
    min-height:34px;
    font-size:12px;
    top:calc(50% + 46px);
  }
  .rb-provider-box{
    border-radius:18px;
    padding:22px 16px 24px;
  }
  .rb-provider-card{
    flex-basis:210px;
    height:106px;
    padding:24px;
    border-radius:18px;
  }
  .rb-provider-card img{
    max-width:155px;
    max-height:54px;
  }
  .rb-article{
    border-radius:18px;
    padding:24px 16px;
  }
  .rb-article h1{
    font-size:24px;
  }
  .rb-scroll-text{
    height:360px;
    font-size:16px;
    padding-right:14px;
  }
  .rb-mirror{
    font-size:17px;
    padding:12px 16px;
  }

  .rb-footer-apps{
    border-radius:18px;
    padding:22px 16px;
  }
  .rb-footer-logo img{height:40px}
  .rb-app-buttons{
    width:100%;
    gap:10px;
  }
  .rb-store{
    width:100%;
    min-width:0;
    min-height:58px;
    font-size:18px;
  }
  .rb-socials{
    width:100%;
    gap:10px;
    flex-wrap:wrap;
  }
  .rb-social{
    width:50px;
    height:50px;
  }
  .rb-footer-meta{
    align-items:center;
    flex-direction:column;
    text-align:center;
    font-size:17px;
  }
  .rb-payments{
    flex-wrap:wrap;
    gap:18px;
  }
  .rb-payments img{
    max-width:82px;
  }
  .rb-responsible{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
  }
  .rb-badge{
    width:54px;
    height:54px;
    border-width:4px;
    font-size:24px;
  }
  .rb-badge--ga{font-size:42px}
  .rb-badge--text{font-size:15px}
}

@media (max-width: 420px){
  .rb-header__row{
    grid-template-columns:auto auto 1fr;
  }
  .rb-logo img{height:32px}
  .rb-header-bonus{padding:0 14px}
  .rb-hero__banner{min-height:470px}
  .rb-hero__art{
    top:8px;
    height:168px;
    width:74%;
  }
  .rb-hero__offer{
    top:184px;
  }
  .rb-section-head{
    gap:10px;
  }
  .rb-section-head h2{
    gap:10px;
  }
}

@media (prefers-reduced-motion: reduce){
  *,
  *:before,
  *:after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}


/* Brand overrides: colors, button style, winners rail and integrated hero art. */
body{
  background:
    radial-gradient(900px 520px at 80% -12%, rgba(255,224,32,.34), transparent 64%),
    radial-gradient(760px 440px at 8% 10%, color-mix(in srgb, #6058e0 13%, transparent), transparent 58%),
    linear-gradient(218deg, #141422 0%, #181828 34%, #141422 100%);
}
.rb-header{
  background:color-mix(in srgb, #181828 94%, transparent);
}
.rb-hero__banner{
  background:
    radial-gradient(620px 360px at 82% 48%, rgba(255,224,32,.34), transparent 66%),
    linear-gradient(90deg, color-mix(in srgb, #601880 98%, transparent) 0%, color-mix(in srgb, #601880 92%, transparent) 34%, color-mix(in srgb, #505058 78%, transparent) 58%, color-mix(in srgb, #f09000 48%, transparent) 100%),
    url("img/hero-bg.svg") center / cover no-repeat;
  box-shadow:0 26px 56px rgba(0,0,0,.38), inset 0 0 0 1px rgba(255,224,32,.16);
}
.rb-hero__banner:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(460px 300px at 78% 54%, color-mix(in srgb, #6058e0 18%, transparent), transparent 70%),
    linear-gradient(90deg, color-mix(in srgb, #181828 18%, transparent) 0%, transparent 54%, color-mix(in srgb, #ffe020 10%, transparent) 100%);
  pointer-events:none;
}
.rb-hero__banner:after{
  z-index:4;
}
.rb-hero__offer{
  left:clamp(330px, 34vw, 640px);
  width:min(660px, 46%);
  text-shadow:0 3px 18px rgba(0,0,0,.36);
}
.rb-hero__title strong{
  text-shadow:0 3px 0 rgba(0,0,0,.24), 0 0 24px rgba(255,224,32,.34);
}
.rb-hero__title mark{
  background:#6058e0;
  color:color-mix(in srgb, #181828 72%, #000 28%);
}
.rb-header-bonus,
.rb-register,
.rb-main-cta,
.rb-section-more{
  border-radius:16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 32%),
    linear-gradient(180deg, #d6ca28, #aba220);
  box-shadow:inset 0 -3px 0 rgba(0,0,0,.18), 0 0 0 1px rgba(255,224,32,.34), 0 12px 28px rgba(255,224,32,.34);
}
.rb-header-bonus:hover,
.rb-register:hover,
.rb-main-cta:hover,
.rb-section-more:hover{
  background:
    linear-gradient(135deg, rgba(255,255,255,.24), transparent 34%),
    linear-gradient(180deg, #ffe020, #aba220);
  box-shadow:0 0 0 2px color-mix(in srgb, #6058e0 18%, transparent), 0 0 34px rgba(255,224,32,.34), inset 0 -3px 0 rgba(0,0,0,.18);
}
.rb-login:hover{
  background:#ffe020;
  box-shadow:0 0 26px rgba(255,224,32,.34);
}
.rb-winners{
  background:
    linear-gradient(180deg, color-mix(in srgb, #505058 92%, transparent), color-mix(in srgb, #601880 96%, transparent));
  border:1px solid rgba(255,224,32,.16);
  box-shadow:0 18px 34px rgba(0,0,0,.34), 0 0 0 1px color-mix(in srgb, #ffe020 10%, transparent), 0 18px 46px color-mix(in srgb, #ffe020 11%, transparent);
}
.rb-winners-track{
  background:linear-gradient(90deg, color-mix(in srgb, #ffe020 8%, transparent), transparent 26%, transparent 74%, color-mix(in srgb, #6058e0 8%, transparent));
}
.rb-win-card{
  background:color-mix(in srgb, #6d2a8a 82%, #181828 18%);
  border-color:rgba(255,224,32,.16);
  box-shadow:inset 0 0 0 1px color-mix(in srgb, #ffe020 7%, transparent), 0 10px 24px rgba(0,0,0,.20);
}
.rb-win-card img{
  box-shadow:0 0 0 1px color-mix(in srgb, #6058e0 18%, transparent);
}
.rb-win-card strong{
  color:#6058e0;
}
.rb-provider-box{
  background:linear-gradient(180deg, color-mix(in srgb, #505058 94%, transparent), color-mix(in srgb, #601880 94%, transparent));
  box-shadow:0 18px 38px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,224,32,.16);
}
.rb-provider-card{
  background:#6d2a8a;
  border-color:rgba(255,224,32,.16);
}
.rb-provider-card:hover{
  background:color-mix(in srgb, #6d2a8a 78%, #ffe020 22%);
  box-shadow:0 14px 28px rgba(0,0,0,.3), 0 0 0 1px rgba(255,224,32,.34);
}
.rb-mirror{
  background:color-mix(in srgb, #ffe020 18%, transparent);
  border:1px solid color-mix(in srgb, #ffe020 42%, transparent);
  box-shadow:0 0 24px rgba(255,224,32,.34);
}
.rb-article{
  background:
    linear-gradient(90deg, color-mix(in srgb, #601880 97%, transparent), color-mix(in srgb, #505058 94%, transparent)),
    linear-gradient(180deg, #601880, #141422);
  border-color:rgba(255,224,32,.16);
}
.rb-footer{
  background:#181828;
}
.rb-footer-apps{
  background:#601880;
  border-color:rgba(255,224,32,.16);
}
.rb-footer-bottom{
  background:linear-gradient(180deg, #181828, #141422);
}
.rb-footer-meta{
  color:#ffffff;
}
@media (min-width: 761px){
  .rb-hero__art{
    left:auto;
    right:clamp(18px, 4vw, 86px);
    top:44px;
    bottom:44px;
    width:min(44vw, 690px);
    min-width:380px;
    max-width:690px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:26px;
    background:color-mix(in srgb, #601880 74%, transparent);
    box-shadow:0 24px 54px rgba(0,0,0,.34), 0 0 0 1px rgba(255,224,32,.16);
    filter:none;
  }
  .rb-hero__art img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    border-radius:26px;
    filter:saturate(1.04) contrast(1.04);
    -webkit-mask-image:linear-gradient(90deg, rgba(0,0,0,.18) 0%, #000 9%, #000 91%, rgba(0,0,0,.18) 100%);
    mask-image:linear-gradient(90deg, rgba(0,0,0,.18) 0%, #000 9%, #000 91%, rgba(0,0,0,.18) 100%);
  }
}
@media (min-width: 761px) and (max-width: 1180px){
  .rb-hero__offer{
    left:42%;
    width:min(620px, 62%);
  }
  .rb-hero__art{
    opacity:.55;
  }
}
@media (max-width: 760px){
  .rb-hero__banner{
    background:
      radial-gradient(420px 240px at 50% 16%, rgba(255,224,32,.34), transparent 70%),
      linear-gradient(180deg, color-mix(in srgb, #601880 96%, transparent) 0%, color-mix(in srgb, #505058 88%, transparent) 54%, color-mix(in srgb, #181828 94%, transparent) 100%),
      url("img/hero-bg.svg") center / cover no-repeat;
  }
  .rb-hero__art{
    top:18px;
    width:86%;
    height:150px;
    max-width:420px;
  }
  .rb-hero__offer{
    left:50%;
    width:88%;
  }
}

.rb-hero__banner{
  background:
    linear-gradient(90deg, color-mix(in srgb, #181828 88%, transparent) 0%, color-mix(in srgb, #601880 76%, transparent) 38%, color-mix(in srgb, #505058 34%, transparent) 58%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.20)),
    url("img/banner.png") center / cover no-repeat;
}
.rb-hero__banner:before{
  background:
    radial-gradient(560px 340px at 76% 52%, rgba(255,224,32,.34), transparent 70%),
    linear-gradient(90deg, color-mix(in srgb, #181828 24%, transparent) 0%, transparent 58%, color-mix(in srgb, #6058e0 8%, transparent) 100%);
}
.rb-hero__art{
  display:none;
}
.rb-hero__offer{
  left:clamp(300px, 31vw, 560px);
  width:min(640px, 46%);
}
@media (min-width: 761px) and (max-width: 1180px){
  .rb-hero__offer{
    left:40%;
    width:min(620px, 62%);
  }
}
@media (max-width: 760px){
  .rb-hero__banner{
    background:
      linear-gradient(180deg, color-mix(in srgb, #181828 82%, transparent) 0%, color-mix(in srgb, #601880 68%, transparent) 46%, color-mix(in srgb, #181828 88%, transparent) 100%),
      url("img/banner.png") 62% center / cover no-repeat;
  }
  .rb-hero__art{
    display:none;
  }
  .rb-hero__offer{
    top:50%;
    left:50%;
    width:88%;
    transform:translate(-50%, -50%);
  }
}

/* Domain text enhancements */
.rb-scroll-text :where(.brand-highlight,.player-tip,.seo-note,.mirror-note){
  position:relative;
  margin:24px 0;
  padding:18px 20px 18px 22px;
  border:1px solid color-mix(in srgb, var(--rb-primary) 28%, rgba(255,255,255,.12));
  border-left:4px solid var(--rb-primary);
  border-radius:14px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rb-primary) 12%, transparent), transparent 58%),
    color-mix(in srgb, var(--rb-panel) 78%, rgba(0,0,0,.28));
}
.rb-scroll-text :where(.brand-highlight,.player-tip,.seo-note,.mirror-note)::before{
  content:"";
  position:absolute;
  top:18px;
  left:-7px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--rb-primary);
  box-shadow:0 0 18px color-mix(in srgb, var(--rb-primary) 72%, transparent);
}
.rb-scroll-text :where(.brand-highlight,.player-tip,.seo-note,.mirror-note) p{
  margin:0;
}
.rb-scroll-text :where(.brand-highlight,.player-tip,.seo-note,.mirror-note) strong{
  color:#fff;
}
.rb-scroll-text .player-tip{
  border-color:color-mix(in srgb, var(--rb-accent) 36%, rgba(255,255,255,.12));
  border-left-color:var(--rb-accent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rb-accent) 15%, transparent), transparent 60%),
    color-mix(in srgb, var(--rb-panel) 78%, rgba(0,0,0,.28));
}
.rb-scroll-text .player-tip::before{
  background:var(--rb-accent);
  box-shadow:0 0 18px color-mix(in srgb, var(--rb-accent) 72%, transparent);
}
.rb-scroll-text .seo-note{
  border-color:rgba(255,255,255,.2);
  border-left-color:rgba(255,255,255,.82);
}
.rb-scroll-text .seo-note::before{
  background:#fff;
  box-shadow:0 0 16px rgba(255,255,255,.38);
}
.rb-scroll-text .mirror-note{
  border-color:color-mix(in srgb, var(--rb-primary-2) 36%, rgba(255,255,255,.12));
  border-left-color:var(--rb-primary-2);
}
.rb-scroll-text .mirror-note::before{
  background:var(--rb-primary-2);
  box-shadow:0 0 18px color-mix(in srgb, var(--rb-primary-2) 72%, transparent);
}
.rb-scroll-text :where(.faq,section.faq){
  display:grid;
  gap:10px;
  margin:26px 0 4px;
}
.rb-scroll-text h2.faq{
  display:block;
  margin:32px 0 14px;
}
.rb-scroll-text .faq-item{
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  background:color-mix(in srgb, var(--rb-card) 76%, rgba(0,0,0,.28));
  overflow:hidden;
}
.rb-scroll-text .faq-question{
  cursor:pointer;
  list-style:none;
  padding:14px 18px;
  color:#fff;
  font-weight:800;
  line-height:1.35;
}
.rb-scroll-text .faq-question::-webkit-details-marker{
  display:none;
}
.rb-scroll-text .faq-question::after{
  content:"+";
  float:right;
  color:var(--rb-primary);
  font-weight:900;
}
.rb-scroll-text .faq-item[open] .faq-question::after{
  content:"-";
}
.rb-scroll-text .faq-answer{
  padding:0 18px 16px;
  color:var(--rb-muted);
}
.rb-scroll-text .faq-answer p:last-child{
  margin-bottom:0;
}
.rb-scroll-text table{
  overflow:hidden;
  border-radius:12px;
}
.rb-scroll-text th{
  color:#fff;
  background:color-mix(in srgb, var(--rb-primary) 18%, rgba(255,255,255,.06));
}
@media (max-width:640px){
  .rb-scroll-text :where(.brand-highlight,.player-tip,.seo-note,.mirror-note){
    padding:16px 16px 16px 18px;
    border-radius:12px;
  }
  .rb-scroll-text .faq-question{
    padding:13px 14px;
  }
  .rb-scroll-text .faq-answer{
    padding:0 14px 14px;
  }
}
