html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

@font-face {
  font-display: normal;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
line-height: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

/* glob */

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn-reset {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.flex {
  display: flex;
}

.container {
  max-width: 1240px;
  padding: 0 15px;
  margin: 0 auto;
}

/* ====================
   Updated Luxury Header CSS
   ==================== */

.luxhdr {
  background: #420000;
  color: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  width: 100%;
  z-index: 111111111111111;
  position: fixed;
}

.luxhdr__container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.luxhdr__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.luxhdr__logo-img {
  height: 50px;

  border-radius: 12px;
  margin-right: 12px;
  padding: 2px;
}

.luxhdr__brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: #f80;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.luxhdr__nav {
  flex: 1;
  margin-left: 48px;
}

.luxhdr__nav-list {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.luxhdr__nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  letter-spacing: 0.5px;
}

.luxhdr__nav-link:hover,
.luxhdr__nav-link--active {
  color: rgb(247, 255, 24);
  border-bottom: 2.5px solid rgb(246, 255, 0);
}

.luxhdr__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.luxhdr__drm {
  background: #cc9634;
  color: #111;
  font-weight: 700;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.02rem;
  transition: background .2s, color .2s;
  box-shadow: 0 2px 14px rgba(255, 136, 0, 0.08);
 animation: drm-pulse 4s ease-in-out infinite;
   position: relative;      /* for the sheen layer */
  overflow: hidden;    
  transition: background .2s, color .2s, transform .2s;
}

.luxhdr__drm::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: rgba(255,255,255,0.3);
  transform: translateX(-100%) skewX(-20deg);
  animation: drm-sheen 3s ease-in-out infinite;
  pointer-events: none;
}

.luxhdr__drm:hover {
  background: #e6a545;     /* slightly lighter gold */
  color: #111;
  transform: scale(1.05);
}


@keyframes drm-pulse {
  0%, 100% {
    box-shadow: 0 2px 14px rgba(255,136,0,0.08);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255,136,0,0.2);
    transform: scale(1.03);
  }
}

/* ─ Sheen Sweep ──────────────────────────────────────────────────────────── */
@keyframes drm-sheen {
  0% {
    transform: translateX(-100%) skewX(-20deg);
  }
  100% {
    transform: translateX(200%) skewX(-20deg);
  }
}


.luxhdr__drm--login:hover {
  background: #fff;
  color: #f80;
}

.luxhdr__lang-switch {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  gap: 7px;
  text-decoration: none;
  font-size: 1.01rem;

  border-radius: 7px;


  transition: background .2s, color .2s;
}

.luxhdr__lang-switch:hover {
  background: rgb(1, 91, 28);
  color: #191919;
}

.luxhdr__lang-flag {
  height: 36px;

  border-radius: 4px;

}

.luxhdr__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 16px;
}

.luxhdr__burger span {
  display: block;
  height: 4px;
  width: 26px;
  background: #f80;
  border-radius: 2px;
  transition: all .2s;
}

/* Responsive */
@media (max-width: 1280px) {
  .luxhdr__container {
    padding: 0 12px;
  }

  .luxhdr__nav {
    margin-left: 0;
  }

  .luxhdr__actions {
    margin-left: auto;
  }

  .luxhdr__nav-list {
    gap: 20px;
  }
}

@media (max-width: 1280px) {
  .luxhdr__nav {
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    max-width: none;
    padding: 26px 0 12px 0;
    transform: translateY(-200%);
    transition: transform .35s cubic-bezier(.5, 0, .1, 1);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.18);
    z-index: 500;
  }

  .luxhdr__nav--open {
    transform: translateY(0);
  }

  .luxhdr__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 9px;
  }

  .luxhdr__burger {
    display: flex;
  }
}

@media (max-width: 500px) {
  .luxhdr__brand {
    font-size: 1rem;
  }


  .luxhdr__btn {
    padding: 8px 13px;
    font-size: .96rem;
  }

  .luxhdr__container {
    height: 58px;
  }

  .luxhdr__lang-flag {
    height: 30px;

  }
}


.luxhdr__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 16px;
  position: relative;
  z-index: 999;
}

.luxhdr__burger span {
  display: block;
  height: 4px;
  width: 28px;
  background: #CDDC39;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(.4, 2, .6, 1);
  position: relative;
}

.luxhdr__burger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.luxhdr__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.luxhdr__burger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1280px) {
  .luxhdr__burger {
    display: flex;
  }
}



.rr555-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 1.25rem;
  background: #524800;
  color: #fff;
  text-align: center;
  /* ⇢ keeps everything centred at all sizes */
  --accent: #ff3366;
  --btn-hover: #ff5984;
}

/* Decorative background layers */
.rr555-hero__bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rr555-hero__bg-layer--glow {
  background: radial-gradient(circle at 80% 20%, rgba(255, 51, 102, 0.25), transparent 60%);
  mix-blend-mode: screen;
}

/* Container */
.rr555-hero__shell {
  max-width: 1240px;
  margin-inline: auto;
}

.rr555-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
}

/* Typography */
.rr555-hero__title {
  margin-bottom: 1.2rem;
}


/* Inline links with custom treatment */
.rr555-hero__link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.rr555-hero__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ff2d6e;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.rr555-hero__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

/* Image wrapper */
.rr555-hero__figure {
  width: min(100%, 540px);
}

.rr555-hero__frame {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.rr555-hero__img {
  display: block;
  width: 100%;
  height: auto;
}

/* Buttons */
.rr555-hero__ctas {
  display: flex;
  
  justify-content: center;
  gap: 1.1rem;
}

.rr555-hero__btn {
  position: relative;
  padding: 0.95rem 2.3rem;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

.rr555-hero__btn--filled {
  background: var(--accent);
  color: #fff;
}

.rr555-hero__btn--filled:hover {
  background: var(--btn-hover);
}

.rr555-hero__btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.rr555-hero__btn--outline:hover {
  color: #fff;
  background: var(--accent);
}

/* ✨ sheen animation */
.rr555-hero__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.33), transparent);
  transform: skewX(-25deg);
}

.rr555-hero__btn:hover::before {
  animation: rr555-sheen 0.9s forwards;
}

@keyframes rr555-sheen {
  to {
    left: 125%;
  }
}

/* ───────── Responsive tweaks ───────── */
@media (min-width: 768px) {
  .rr555-hero {
    padding: 6rem 2rem;
  }

  .rr555-hero__inner {
    gap: 3.25rem;
  }
}

/* ⬇︎ Updated styles for the “Elevate” section — no :root selector, no CSS variables */
.rr555-elevate {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1rem;
  background: #881111;
  /* dark base */
  color: #ffffff;
  text-align: center;

}

/* ───── Animated backdrop ───── */
.rr555-elevate__bg,
.rr555-elevate__bg-glow,
.rr555-elevate__bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rr555-elevate__bg-glow {
  background: radial-gradient(circle at 85% 15%, rgb(255 155 47 / 34%), transparent 60%);
  animation: rr555-spin 22s linear infinite;
  filter: blur(60px);
}

.rr555-elevate__bg-grid {
  background-image: repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.025) 0 2px,
      transparent 2px 60px);
  mix-blend-mode: overlay;
  animation: rr555-pan 30s linear infinite;
}

@keyframes rr555-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rr555-pan {
  to {
    background-position: -300px 0;
  }
}

/* ───── Container & headline ───── */
.rr555-elevate__wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.rr555-elevate__title {
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  font-weight: 800;
  margin: 0 0 1rem;
}

.rr555-elevate__intro {
  margin: 0 auto ;
}

/* Inline links */
.rr555-elevate__link {
  color: #fffe2f;
  /* accent pink */
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.rr555-elevate__link::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.rr555-elevate__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* ───── Grid layout ───── */
.rr555-elevate__grid {
  display: grid;
  gap: 2.6rem;
  align-items: center;
}

.rr555-elevate__figure {
  margin: 0 auto;
}

.rr555-elevate__img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

/* Feature call-outs */
.rr555-elevate__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rr555-elevate__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(3px);
  border-radius: 6px;
  
  margin: 0 auto;
  animation: rr555-slide 0.8s ease both;
}

@keyframes rr555-slide {
  from {
    transform: translateX(-28px);
    opacity: 0;
  }
}

.rr555-elevate__text {
  max-width: 600px;
  margin: 0 auto;
}

.rr555-elevate__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.6rem;
  background: #ff2f6e;
  /* accent pink */
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 50px;
  overflow: hidden;
  transition: background 0.3s ease;
}

.rr555-elevate__btn:hover {
  background: #ff5984;
}

/* sheen sweep on hover */
.rr555-elevate__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);
  transform: skewX(-25deg);
}

.rr555-elevate__btn:hover::after {
  animation: rr555-sheen 0.75s forwards;
}

@keyframes rr555-sheen {
  to {
    left: 130%;
  }
}

/* ───── Two-column resume at 768px+ ───── */
@media (min-width: 768px) {
  .rr555-elevate__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.rr555-trust {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem;
  background: #070912;
  color: #ffffff;
  text-align: center;

}

/* Neon aura + drifting dust dots */
.rr555-trust__bg,
.rr555-trust__aura,
.rr555-trust__dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rr555-trust__aura {
  background: radial-gradient(circle at 80% 20%, rgb(255 208 45 / 28%), transparent 60%);
  animation: trust-rotate 18s linear infinite;
  filter: blur(70px);
}

.rr555-trust__dust {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}

.rr555-trust__dust li {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ff2d6e;
  border-radius: 50%;
  opacity: .75;
  animation: trust-float 12s linear infinite;
}

.rr555-trust__dust li:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: -2s;
}

.rr555-trust__dust li:nth-child(2) {
  top: 35%;
  left: 80%;
  animation-delay: -4s;
}

.rr555-trust__dust li:nth-child(3) {
  top: 65%;
  left: 25%;
  animation-delay: -6s;
}

.rr555-trust__dust li:nth-child(4) {
  top: 50%;
  left: 60%;
  animation-delay: -1s;
}

.rr555-trust__dust li:nth-child(5) {
  top: 75%;
  left: 90%;
  animation-delay: -8s;
}

@keyframes trust-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes trust-float {
  to {
    transform: translateY(-60px) rotate(360deg);
  }
}

/* Content wrap */
.rr555-trust__wrap {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header */
.rr555-trust__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 2.2rem;
}

/* Grid layout */
.rr555-trust__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

/* Statements */
.rr555-trust__statements {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.rr555-trust__row {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.rr555-trust__tag {
  display: flex;
  align-items: center;
  /* align center as required */
  justify-content: center;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.05rem;
  
  margin: 0 auto;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(3px);
  border-radius: 6px;
  animation: trust-slide .8s ease both;
}

@keyframes trust-slide {
  from {
    transform: translateX(-28px);
    opacity: 0;
  }
}

.rr555-trust__text {
  max-width: 620px;
  margin: 0 auto;
}

/* Inline links */
.rr555-trust__link {
  color: #ffd622;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.rr555-trust__link::before {
  content: "";
  position: absolute;
  height: 2px;
  background: #ff2d6e;
  inset: auto 0 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.rr555-trust__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Illustration */
.rr555-trust__figure {
  margin: 0 auto;
}

.rr555-trust__img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .6);
}

/* CTA */
.rr555-trust__cta {
  margin-top: 3.4rem;
}

.rr555-trust__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.8rem;
  background: #ff2d6e;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 50px;
  overflow: hidden;
  transition: background .3s ease;
}

.rr555-trust__btn:hover {
  background: #ff5b87;
}

/* sheen sweep */
.rr555-trust__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-25deg);
}

.rr555-trust__btn:hover::after {
  animation: trust-sheen .75s forwards;
}

@keyframes trust-sheen {
  to {
    left: 130%;
  }
}

/* Responsive two-column switch */
@media(min-width:768px) {
  .rr555-trust__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.rr555-journey {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem;
  background: #050565;
  color: #ffffff;
  text-align: center;

}

/* Gradient wave layers */
.rr555-journey__bg,
.rr555-journey__wave {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rr555-journey__wave--one {
  background: radial-gradient(ellipse at 30% 40%, rgba(255, 208, 55, 0.25), transparent 70%);
  animation: journey-pulse 18s ease-in-out infinite;
}

.rr555-journey__wave--two {
  background: radial-gradient(ellipse at 70% 70%, rgb(255 241 75 / 22%), transparent 70%);
  animation: journey-pulse 22s ease-in-out infinite reverse;
}

@keyframes journey-pulse {
  50% {
    transform: scale(1.15);
  }
}

/* Canvas sparkles (optional JS) */
.rr555-journey__spark {
  position: absolute;
  inset: 0;
}

/* Main wrap */
.rr555-journey__wrap {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header */
.rr555-journey__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 2rem;
}

.rr555-journey__intro {
  margin: 0 auto ;
}

/* Grid */
.rr555-journey__grid {
  display: grid;
  margin-bottom: 20px;
  align-items: center;
}

/* Features */
.rr555-journey__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rr555-journey__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rr555-journey__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}

/* Tag styling per spec */
.rr555-journey__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  margin: 0 auto;
  animation: journey-slide .8s ease both;
}

@keyframes journey-slide {
  from {
    transform: translateX(-26px);
    opacity: 0;
  }
}

.rr555-journey__text {
  margin: 0 auto;
}

/* Links inside square brackets */
.rr555-journey__link {
  color: #ffd622;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.rr555-journey__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.rr555-journey__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Illustration */
.rr555-journey__figure {
  
  margin: 0 auto;
  margin-bottom: 20px;
}

.rr555-journey__img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .6);
}

/* CTA */
.rr555-journey__cta {
  margin-top: 3.4rem;
}

.rr555-journey__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.8rem;
  background: #ff3773;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 50px;
  overflow: hidden;
  transition: background .3s ease;
}

.rr555-journey__btn:hover {
  background: #ff5d8d;
}

/* sheen */
.rr555-journey__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-25deg);
}

.rr555-journey__btn:hover::after {
  animation: journey-sheen .8s forwards;
}

@keyframes journey-sheen {
  to {
    left: 130%;
  }
}


/* ───── JE777 Game Sections (no line-height) ───── */
.rr555-gamesec {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem 4rem 1rem;
  background: #881111;
  color: #fff;
  text-align: center;

}

/* Animated BG glows */
.rr555-gamesec__bg,
.rr555-gamesec__glow,
.rr555-gamesec__floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rr555-gamesec__glow--pink {
  background: radial-gradient(circle at 15% 30%, rgba(255, 214, 52, 0.18), transparent 65%);
  animation: gamesec-glow 14s linear infinite;
  filter: blur(44px);
}

.rr555-gamesec__glow--blue {
  background: radial-gradient(circle at 80% 80%, rgba(255, 218, 72, 0.15), transparent 70%);
  animation: gamesec-glow 20s linear infinite reverse;
  filter: blur(54px);
}

@keyframes gamesec-glow {
  50% {
    opacity: 0.55;
  }
}

/* Floating emojis */
.rr555-gamesec__floaters {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rr555-gamesec__icon {
  position: absolute;
  font-size: 2.2rem;
  opacity: .17;
  user-select: none;
  pointer-events: none;
  animation: gamesec-float 9s infinite ease-in-out alternate;
}

.rr555-gamesec__icon--slot {
  top: 12%;
  left: 15%;
  animation-delay: 0s;
}

.rr555-gamesec__icon--cards {
  top: 66%;
  left: 78%;
  animation-delay: -3s;
}

.rr555-gamesec__icon--rocket {
  top: 39%;
  left: 54%;
  animation-delay: -5s;
}

@keyframes gamesec-float {
  100% {
    transform: translateY(35px) scale(1.1);
  }
}

/* Wrapper */
.rr555-gamesec__wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.games-body {
  display: flex;
  flex-direction: column;
}

/* Header */
.rr555-gamesec__title {
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 2rem;
}

.rr555-gamesec__intro {
  margin: 0 auto ;
}

/* Inline links */
.rr555-gamesec__link {
  color: #ffd622;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.rr555-gamesec__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.rr555-gamesec__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Main grid */
.rr555-gamesec__grid {
  display: grid;
  gap: 2.2rem;
  align-items: center;
  justify-items: center;
}

/* Game boxes */
.rr555-gamesec__box {
  background: rgba(255, 255, 255, 0.035);
  border-radius: 14px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.16);
  padding: 2.1rem 1.2rem 1.5rem 1.2rem;
  min-width: 0;
  margin: 0 auto;
  display: flex;
  margin-bottom: 20px;
  flex-direction: column;
  gap: 1.1rem;
  animation: gamesec-slide .8s cubic-bezier(.62, .09, .41, .95) both;
}

@keyframes gamesec-slide {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
}

.rr555-gamesec__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.08rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(3px);
  border-radius: 5px;
  
  margin: 0 auto;
}

.rr555-gamesec__desc {
  margin: 0 auto;
}

/* Illustration */
.rr555-gamesec__figure {
  width: 100%;
  margin: 0 auto;
}

.rr555-gamesec__img {
  width: 100%;
  display: block;
  border-radius: 17px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 1.7rem;
}

/* CTA */
.rr555-gamesec__cta {
  margin-top: 3.2rem;
}

.rr555-gamesec__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #ffd622;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 50px;
  overflow: hidden;
  transition: background .3s ease;
}

.rr555-gamesec__btn:hover {
  background: #ff67b7;
}

.rr555-gamesec__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-25deg);
}

.rr555-gamesec__btn:hover::after {
  animation: gamesec-sheen .8s forwards;
}

@keyframes gamesec-sheen {
  to {
    left: 130%;
  }
}

/* Responsive: 2 columns + image at >= 768px */
@media (min-width: 768px) {
  .rr555-gamesec__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

}

@media (max-width: 991px) and (min-width: 768px) {
  .rr555-gamesec__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "box1 figure"
      "box2 box3";
  }

  .rr555-gamesec__box:nth-child(1) {
    grid-area: box1;
  }

  .rr555-gamesec__box:nth-child(2) {
    grid-area: box2;
  }

  .rr555-gamesec__box:nth-child(3) {
    grid-area: box3;
  }

  .rr555-gamesec__figure {
    grid-area: figure;
  }
}

.rr555-cardsec {
  background: linear-gradient(135deg, #881111 0%, #1b1231 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  overflow: hidden;
  color: #fff;
  text-align: center;

}

/* Background icon grid, animating in opacity/blur for interest */
.rr555-cardsec__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr 1fr;
  align-items: center;
  opacity: 0.16;
  gap: 0;
}

.rr555-cardsec__icon {
  font-size: 3.5rem;
  filter: blur(1.2px);
  animation: cardsec-bgicon 18s linear infinite alternate;
}

@keyframes cardsec-bgicon {
  0% {
    opacity: 0.14;
    transform: scale(1);
  }

  100% {
    opacity: 0.32;
    transform: scale(1.11);
  }
}

/* Max-width content */
.rr555-cardsec__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

/* Header */
.rr555-cardsec__header {
  margin-bottom: 1.2rem;
}

.rr555-cardsec__title {
  font-size: clamp(2.1rem, 5vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 1rem;
}

.rr555-cardsec__desc {
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7em;
}

/* Tag for main subtitle */
.rr555-cardsec__tag {
  display: inline-flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid #ffd622;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(174, 112, 255, 0.13);
  border-radius: 6px;
  margin: 0 0 0.7em 0;
  gap: .5em;
}

/* Card grid */
.rr555-cardsec__grid {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 2.2rem;
  margin-bottom: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .rr555-cardsec__grid {
    grid-template-columns: 1fr 1fr;
    
  }
}



/* Individual card */
.rr555-cardsec__card {
  background: #881111;
  border-radius: 20px;
  box-shadow: 0 7px 28px #ffd6222a;
  padding: 2.2rem 1.3rem 1.7rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  transition: transform .3s cubic-bezier(.65, 1.4, .47, 1), box-shadow .3s;
  animation: cardsec-cardin .85s cubic-bezier(.5, 1.9, .41, 1) both;
}

.rr555-cardsec__card:hover {
  transform: translateY(-11px) scale(1.038);
  box-shadow: 0 14px 38px #ffd6223a, 0 0 0 2px #6a19c980;
}

/* Icon on top of card */
.rr555-cardsec__card-ico {
  font-size: 2.3rem;
  color: #ffd370;
  background: rgba(174, 112, 255, 0.08);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5em;
  box-shadow: 0 3px 10px #ffd62221;
  animation: cardsec-icopulse 2.8s infinite alternate;
}

@keyframes cardsec-icopulse {
  0% {
    box-shadow: 0 3px 10px #ffd62221;
  }

  100% {
    box-shadow: 0 7px 24px #ffd62238;
  }
}

/* Card tag line (for angle brackets) */
.rr555-cardsec__card-tag {
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid #ffd622;
  font-weight: 700;
  font-size: 1.01rem;
  background: rgba(174, 112, 255, 0.10);
  border-radius: 6px;
  
  margin: 0 auto 0.22em auto;
  gap: .5em;
  color: #fff;
}

.rr555-cardsec__card-text {
  
  font-size: 1.01rem;
  margin: 0 auto;
}

/* Bracketed links */
.rr555-cardsec__link {
  color: #ffd622;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.rr555-cardsec__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-cardsec__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Image & CTA */
.rr555-cardsec__bottom {
  margin-top: 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.rr555-cardsec__figure {

  width: 100%;
  margin: 0 auto;
}

.rr555-cardsec__img {
  width: 100%;
  border-radius: 13px;
  box-shadow: 0 7px 30px #ffd62224;
  display: block;
}

.rr555-cardsec__cta {
  margin-top: .3rem;
}

.rr555-cardsec__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.6rem;
  background: #ffd622;
  color: #251547;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 55px;
  overflow: hidden;
  transition: background .3s cubic-bezier(.33, .73, .65, 1), color .3s;
  box-shadow: 0 2px 18px #ffd62225;
}

.rr555-cardsec__btn:hover {
  background: #bc8aff;
  color: #2d0d60;
}

.rr555-cardsec__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .40), transparent);
  transform: skewX(-25deg);
}

.rr555-cardsec__btn:hover::after {
  animation: cardsec-sheen .7s forwards;
}

@keyframes cardsec-sheen {
  to {
    left: 130%;
  }
}

@keyframes cardsec-cardin {
  from {
    transform: translateY(40px) scale(.92);
    opacity: 0;
  }
}

.rr555-faq {
  background: linear-gradient(135deg, #881111 0%, #191427 100%);
  position: relative;
  padding: 6rem 0 4.5rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.rr555-faq__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rr555-faq__bubble {
  position: absolute;
  bottom: -40px;
  left: 15%;
  width: 32px;
  height: 32px;
  background: rgba(174, 112, 255, 0.14);
  border-radius: 50%;
  filter: blur(2px);
  animation: faq-bubble 17s linear infinite;
}

.rr555-faq__bubble:nth-child(2) {
  left: 37%;
  width: 20px;
  height: 20px;
  animation-delay: 3s;
}

.rr555-faq__bubble:nth-child(3) {
  left: 66%;
  width: 25px;
  height: 25px;
  animation-delay: 7s;
}

.rr555-faq__bubble:nth-child(4) {
  left: 88%;
  width: 15px;
  height: 15px;
  animation-delay: 10s;
}

@keyframes faq-bubble {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-680px) scale(1.15);
  }
}

.rr555-faq__container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.rr555-faq__header {
  margin-bottom: 1.7rem;
}

.rr555-faq__title {
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7em;
}

/* Accordion styles */
.rr555-faq__accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.2rem;
}

.rr555-faq__item {
  background: rgb(12 50 18 / 91%);
  border-radius: 18px;
  box-shadow: 0 4px 18px #ffd62225;
  overflow: hidden;
  transition: box-shadow .25s;
}

.rr555-faq__q {
  width: 100%;
  border: none;
  background: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.11rem;
  text-align: left;
  padding: 1.5rem 1.8rem;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  gap: 1em;
  transition: background .25s, color .2s;
}

.rr555-faq__q-ico {
  font-size: 1.3em;
  margin-right: .6em;
}

.rr555-faq__q[aria-expanded="true"] {
  color: #ffd622;
  background: rgba(174, 112, 255, 0.06);
}

.rr555-faq__a {
  display: none;
  padding: 0 1.8rem 1.5rem 3.5rem;
  color: #ded2f8;
  text-align: left;
  font-size: 1.02rem;
  animation: faq-fadein .35s cubic-bezier(.42, .22, .47, 1) both;
}

@keyframes faq-fadein {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.rr555-faq__item.open .rr555-faq__a {
  display: block;
  padding: 20px;
}

/* Styled links for brackets */
.rr555-faq__link {
  color: #ffd622;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.rr555-faq__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-faq__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* CTA */
.rr555-faq__cta {
  margin-top: 1.7rem;
}

.rr555-faq__btn {
  display: inline-block;
  background: #ffd622;
  color: #2d0d60;
  padding: 1rem 2.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 44px;
  letter-spacing: .04em;
  font-size: 1.02rem;
  transition: background .23s, color .23s;
  box-shadow: 0 2px 18px #ffd6221a;
  position: relative;
  overflow: hidden;
}

.rr555-faq__btn:hover {
  background: #bc8aff;
  color: #190f31;
}

.rr555-faq__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .33), transparent);
  transform: skewX(-25deg);
}

.rr555-faq__btn:hover::after {
  animation: faq-btnsheen .7s forwards;
}

@keyframes faq-btnsheen {
  to {
    left: 130%;
  }
}

.rr555-casinohero {
  position: relative;

  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden;
  z-index: 1;
}

.rr555-casinohero__bg {
  position: absolute;
  inset: 0;

  overflow: hidden;
  z-index: 1;
}

.rr555-casinohero__bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) blur(1.5px);
  position: absolute;
  inset: 0;
}

.rr555-casinohero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #881111 20%, #3b2f04aa 75%);
  z-index: 2;
}

.rr555-casinohero__glow {
  position: absolute;
  border-radius: 50%;
  opacity: .17;
  pointer-events: none;
  z-index: 3;
  filter: blur(30px);
  animation: casinohero-glowmove 14s ease-in-out infinite alternate;
}

.rr555-casinohero__glow--1 {
  width: 430px;
  height: 320px;
  left: -120px;
  top: 60px;
  background: radial-gradient(circle at 60% 35%, #ff52e4 0%, transparent 100%);
  animation-delay: 0s;
}

.rr555-casinohero__glow--2 {
  width: 340px;
  height: 220px;
  right: -90px;
  bottom: 0px;
  background: radial-gradient(circle at 40% 65%, #67eaff 0%, transparent 100%);
  animation-delay: 3s;
}

@keyframes casinohero-glowmove {
  0% {
    opacity: 0.13;
  }

  100% {
    opacity: 0.28;
  }
}

.rr555-casinohero__container {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.rr555-casinohero__content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.8rem 1.2rem 2.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.rr555-casinohero__header {
  margin-bottom: 1.6rem;
}

.rr555-casinohero__title {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 20px 0;
  letter-spacing: -.01em;
  line-height: 1.16;
}

.rr555-casinohero__desc {
  font-size: 1.09rem;

  margin: 0 auto;
}

.rr555-casinohero__link {
  color: #67eaff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .23s;
}

.rr555-casinohero__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-casinohero__link:hover,
.rr555-casinohero__link:focus {
  color: #ff52e4;
}

.rr555-casinohero__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-casinohero__figure {
  margin: 0 auto 1rem auto;
  width: 170px;
  max-width: 55vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-casinohero__img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 7px 40px #00000044, 0 0 0 3px #2d0c4e33;
}

.rr555-casinohero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  margin-top: .8rem;
  width: 100%;
}

.rr555-casinohero__btn {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  transition: background .24s, color .24s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #7b46ff29;
  cursor: pointer;
  outline: none;
  background: #67eaff;
  color: #26043b;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.rr555-casinohero__btn--main {
  background: linear-gradient(90deg, #67eaff 40%, #ff52e4 100%);
  color: #20044b;
}

.rr555-casinohero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #67eaff;
  box-shadow: none;
}

.rr555-casinohero__btn--main:hover,
.rr555-casinohero__btn--main:focus {
  background: linear-gradient(90deg, #ff52e4 10%, #67eaff 80%);
  color: #1a1437;
}

.rr555-casinohero__btn--ghost:hover,
.rr555-casinohero__btn--ghost:focus {
  background: #67eaff;
  color: #210a39;
  border-color: #ff52e4;
}

.rr555-casinohero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-25deg);
}

.rr555-casinohero__btn:hover::after {
  animation: casinohero-btnsheen .7s forwards;
}

@keyframes casinohero-btnsheen {
  to {
    left: 130%;
  }
}

@media (min-width: 700px) {
  .rr555-casinohero__ctas {
    flex-direction: row;
    justify-content: center;
    gap: 2.2rem;
  }

  .rr555-casinohero__figure {
    width: 210px;
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .rr555-casinohero__figure {
    width: 135px;
  }
}

.rr555-action {
  background: linear-gradient(125deg, #881111 0%, #12071e 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.rr555-action__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rr555-action__chips {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.rr555-action__chip {
  position: absolute;
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 65% 35%, #ffef8a 65%, #f855ee 100%);
  opacity: .12;
  animation: rr555-chipfloat 8s infinite alternate;
}

.rr555-action__chip--1 {
  left: 6%;
  top: 18%;
  animation-delay: 0s;
}

.rr555-action__chip--2 {
  right: 8%;
  top: 8%;
  animation-delay: 2s;
}

.rr555-action__chip--3 {
  right: 13%;
  bottom: 13%;
  animation-delay: 4s;
}

@keyframes rr555-chipfloat {
  0% {
    transform: scale(1) translateY(0);
  }

  100% {
    transform: scale(1.08) translateY(30px);
  }
}

.rr555-action__spark {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  background: radial-gradient(circle, #00faff 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  filter: blur(24px);
  animation: rr555-sparkle 10s linear infinite alternate;
}

.rr555-action__spark--1 {
  width: 210px;
  height: 180px;
  left: -50px;
  top: 35%;
  animation-delay: 0s;
}

.rr555-action__spark--2 {
  width: 170px;
  height: 140px;
  right: -38px;
  bottom: 9%;
  animation-delay: 5s;
}

@keyframes rr555-sparkle {
  0% {
    opacity: 0.14;
  }

  100% {
    opacity: 0.26;
  }
}

.rr555-action__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
}

.rr555-action__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 2.3rem;
}

.rr555-action__header {
  margin-bottom: .2em;
}

.rr555-action__title {
  font-size: clamp(2.05rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 1.2em 0;
}

.rr555-action__desc {
  font-size: 1.08rem;
  margin: 0 auto;
}

.rr555-action__link {
  color: #e9ff6d;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .2s;
}

.rr555-action__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-action__link:hover {
  color: #f855ee;
}

.rr555-action__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-action__cards {
    display: grid
;
    gap: 1.4rem;
    grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 1.6rem;
}

.rr555-action__block {
  background: rgba(240, 185, 255, 0.06);
  border-radius: 18px;
  box-shadow: 0 5px 28px #f855ee22;
  padding: 2.1rem 1.5rem 1.4rem 1.5rem;
  gap: .9rem;
  animation: rr555-cardin .7s cubic-bezier(.5, 1.4, .41, 1) both;
}

@keyframes rr555-cardin {
  from {
    transform: translateY(40px) scale(.93);
    opacity: 0;
  }
}

.rr555-action__block-tag {
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid #f855ee;
  font-weight: 700;
  font-size: 1.01rem;
  background: rgba(248, 85, 238, 0.13);
  border-radius: 6px;
  
  margin: 0 auto 0.19em auto;
  gap: .5em;
}

.rr555-action__block-text {
  font-size: 1.01rem;
  margin: 0 auto;
}

.rr555-action__figure {
  margin: 0 auto 1.1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-action__img {
  width: 100%;
  display: block;
  border-radius: 17px;
  box-shadow: 0 8px 30px #fff4e831, 0 0 0 2px #e9ff6d33;
}

.rr555-action__cta {
  margin-top: 1rem;
}

.rr555-action__btn {
  display: inline-block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.5rem;
  border-radius: 44px;
  transition: background .24s, color .24s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #f855ee22;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #e9ff6d 10%, #f855ee 90%);
  color: #200b2c;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.rr555-action__btn:hover,
.rr555-action__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #e9ff6d 90%);
  color: #32164e;
}

.rr555-action__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-25deg);
}

.rr555-action__btn:hover::after {
  animation: rr555-btnsheen .7s forwards;
}

@keyframes rr555-btnsheen {
  to {
    left: 130%;
  }
}



.rr555-categories {
  background: linear-gradient(115deg, #26003e 0%, #881111 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.rr555-categories__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rr555-categories__spark {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  background: radial-gradient(circle, #ffcc42 0%, transparent 100%);
  filter: blur(28px);
  animation: rr555-catspark 12s linear infinite alternate;
}

.rr555-categories__spark--left {
  width: 190px;
  height: 150px;
  left: -50px;
  top: 33%;
  animation-delay: 0s;
}

.rr555-categories__spark--right {
  width: 160px;
  height: 130px;
  right: -38px;
  bottom: 8%;
  animation-delay: 3s;
}

@keyframes rr555-catspark {
  0% {
    opacity: 0.12;
  }

  100% {
    opacity: 0.27;
  }
}

.rr555-categories__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rr555-categories__header {
  margin-bottom: 1.5rem;
}

.rr555-categories__title {
  font-size: clamp(2.1rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 1.1em 0;
}

.rr555-categories__desc {
  font-size: 1.08rem;
  max-width: 570px;
  margin: 0 auto;
}

.rr555-categories__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 auto 2.8rem auto;
  justify-items: center;
}

@media (min-width: 800px) {
 .rr555-categories__grid {
    /* 6 равных колонок вместо 3 */
    grid-template-columns: repeat(6, 1fr);
    gap: 2.8rem;
    /* чтобы карточки заполняли всю ширину занятой области */
    justify-items: stretch;
  }

  .rr555-categories__card {
    /* растягиваем карточку на всю ширину своей «ячейки» */
    width: 100%;
  }

  /* Первая строка: три карточки по 2 колонки (2/6 = 33.3%) */
  .rr555-categories__card:nth-child(1) { grid-column: 1 / span 2; }
  .rr555-categories__card:nth-child(2) { grid-column: 3 / span 2; }
  .rr555-categories__card:nth-child(3) { grid-column: 5 / span 2; }

  /* Вторая строка: две карточки по 3 колонки (3/6 = 50%) */
  .rr555-categories__card:nth-child(4) { grid-column: 1 / span 3; }
  .rr555-categories__card:nth-child(5) { grid-column: 4 / span 3; }
  
}



.rr555-categories__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: 0 7px 38px #ffcc4228;
  padding: 2.2rem 1.3rem 1.7rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  min-width: 0;

  animation: rr555-catcardin .9s cubic-bezier(.5, 1.4, .41, 1) both;
  transition: box-shadow .28s, transform .24s;
}

.rr555-categories__card:hover {
  box-shadow: 0 15px 54px #ffcc4251, 0 0 0 2px #ffcc42bb;
  transform: translateY(-11px) scale(1.045);
}

@keyframes rr555-catcardin {
  from {
    transform: translateY(46px) scale(.95);
    opacity: 0;
  }
}

.rr555-categories__imgwrap {

  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 22px #ffcc4261;
  background: #1c1031;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-categories__img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
}

.rr555-categories__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.rr555-categories__card-tag {
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(255, 204, 66, 0.08);
  border-radius: 6px;
  
  margin: 0 auto .3em auto;
  gap: .5em;
}

.rr555-categories__card-text {
  font-size: 1.01rem;

  margin: 0 auto;
  text-align: center;
}

.rr555-categories__link {
  color: #ffcc42;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .18s;
}

.rr555-categories__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-categories__link:hover {
  color: #f855ee;
}

.rr555-categories__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-categories__cta {
  margin-top: .7rem;
}

.rr555-categories__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.6rem;
  border-radius: 44px;
  transition: background .22s, color .22s, box-shadow .19s;
  border: none;
  box-shadow: 0 3px 20px #ffcc4239;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffcc42 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.rr555-categories__btn:hover,
.rr555-categories__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffcc42 90%);
  color: #32164e;
}

.rr555-categories__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-categories__btn:hover::after {
  animation: rr555-catbtnsheen .6s forwards;
}

@keyframes rr555-catbtnsheen {
  to {
    left: 130%;
  }
}

.rr555-whyus {
  background: linear-gradient(110deg, #881111 0%, #120b21 100%);
  padding: 0;
  color: #fff;

  padding: 6rem 1.2rem 5rem 1.2rem;
  position: relative;
  overflow: hidden;
}

.rr555-whyus__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.7rem;
}

.rr555-whyus__imgbox {
  position: relative;


  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-whyus__img-bg {
  position: absolute;
  width: 95%;
  height: 88%;
  left: 2.5%;
  top: 6%;
  background: radial-gradient(circle, #ffcc42 0%, #421885 90%);
  border-radius: 30% 70% 57% 43% / 47% 37% 63% 53%;
  filter: blur(35px);
  opacity: .19;
  z-index: 1;
  animation: whyus-imgbg 14s ease-in-out infinite alternate;
}

@keyframes whyus-imgbg {
  0% {
    border-radius: 30% 70% 57% 43% / 47% 37% 63% 53%;
  }

  100% {
    border-radius: 46% 54% 65% 35% / 38% 68% 32% 62%;
  }
}

.rr555-whyus__img {
  z-index: 2;
  position: relative;

  border-radius: 24px;
  box-shadow: 0 9px 44px #ffcc4238, 0 0 0 2px #ffcc4239;
  animation: whyus-imgpop 1.2s cubic-bezier(.45, .88, .28, 1.16) both;
}

@keyframes whyus-imgpop {
  from {
    opacity: 0;
    transform: scale(.85);
  }
}

.rr555-whyus__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6e7 0%, #ffe49f 60%, #ffcc421c 90%, transparent 100%);
  opacity: .22;
  z-index: 0;
  animation: whyus-pulse 2.8s infinite alternate;
}

@keyframes whyus-pulse {
  0% {
    opacity: .16;
    transform: translate(-50%, -50%) scale(.98);
  }

  100% {
    opacity: .29;
    transform: translate(-50%, -50%) scale(1.10);
  }
}

.rr555-whyus__floatingicon {
  position: absolute;
  right: 15px;
  bottom: 25px;
  font-size: 2.7rem;
  color: #ffcc42;
  filter: drop-shadow(0 4px 12px #ffcc42a1);
  z-index: 3;
  opacity: .63;
  animation: whyus-float 3.2s infinite alternate;
}

@keyframes whyus-float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-12px);
  }
}

/* Right: Content */
.rr555-whyus__content {
  flex: 1 1 440px;
  min-width: 260px;
  max-width: 590px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  text-align: center;
}

.rr555-whyus__header {
  margin-bottom: .7rem;
}

.rr555-whyus__title {
  font-size: clamp(2rem, 4vw, 2.15rem);
  font-weight: 800;
  margin: 0 0 1.2em 0;
}

.rr555-whyus__descwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.rr555-whyus__desc {
  font-size: 1.08rem;
  margin: 0 auto;
}

.rr555-whyus__link {
  color: #ffcc42;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .2s;
}

.rr555-whyus__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-whyus__link:hover {
  color: #f855ee;
}

.rr555-whyus__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-whyus__cta {
  margin-top: .8rem;
}

.rr555-whyus__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.6rem;
  border-radius: 44px;
  transition: background .24s, color .24s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffcc4235;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffcc42 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.rr555-whyus__btn:hover,
.rr555-whyus__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffcc42 90%);
  color: #32164e;
}

.rr555-whyus__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-whyus__btn:hover::after {
  animation: whyus-btnsheen .62s forwards;
}

@keyframes whyus-btnsheen {
  to {
    left: 130%;
  }
}

.rr555-whyus__footer-text {
  margin-top: 1.2rem;
  color: #ffecbb;
  font-size: 1rem;
  max-width: 470px;
  opacity: .86;
}

@media (max-width: 900px) {
  .rr555-whyus__container {
    flex-direction: column;
    gap: 3.7rem;
  }

  .rr555-whyus__imgbox {

    margin-bottom: 1.4rem;
  }



  .rr555-whyus__pulse {
    width: 88px;
    height: 88px;
  }

  .rr555-whyus__floatingicon {
    font-size: 1.7rem;
    right: 2px;
    bottom: 2px;
  }

  .rr555-whyus__content {
    max-width: 98vw;
  }
}

.rr555-slotshero {
  position: relative;

  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden;
  z-index: 1;
}

.rr555-slotshero__bg {
  position: absolute;
  inset: 0;

  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.rr555-slotshero__bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) blur(1.5px);
  position: absolute;
  inset: 0;
}

.rr555-slotshero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, #881111 25%, #361408bb 75%);
  z-index: 2;
}

.rr555-slotshero__glow {
  position: absolute;
  border-radius: 50%;
  opacity: .14;
  pointer-events: none;
  z-index: 3;
  filter: blur(38px);
  animation: slotshero-glowmove 14s ease-in-out infinite alternate;
}

.rr555-slotshero__glow--1 {
  width: 410px;
  height: 280px;
  left: -100px;
  top: 100px;
  background: radial-gradient(circle at 65% 35%, #ffe573 0%, transparent 100%);
  animation-delay: 0s;
}

.rr555-slotshero__glow--2 {
  width: 270px;
  height: 210px;
  right: -80px;
  bottom: 0px;
  background: radial-gradient(circle at 40% 65%, #f855ee 0%, transparent 100%);
  animation-delay: 4s;
}

@keyframes slotshero-glowmove {
  0% {
    opacity: 0.11;
  }

  100% {
    opacity: 0.27;
  }
}

.rr555-slotshero__container {
  position: relative;
  z-index: 5;
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 ;
}

.rr555-slotshero__content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 2.8rem 1.2rem 2.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.rr555-slotshero__header {
  margin-bottom: 1.6rem;
}

.rr555-slotshero__title {
  font-size: 2.7rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  letter-spacing: -.01em;
}

.rr555-slotshero__desc {
  font-size: 1.09rem;

  margin: 0 auto;
}

.rr555-slotshero__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .23s;
}

.rr555-slotshero__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-slotshero__link:hover,
.rr555-slotshero__link:focus {
  color: #f855ee;
}

.rr555-slotshero__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-slotshero__figure {
  margin: 0 auto 1rem auto;
  width: 180px;
  max-width: 55vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-slotshero__img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 7px 44px #ffe5732e, 0 0 0 3px #f855ee3a;
}

.rr555-slotshero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  margin-top: .8rem;
  width: 100%;
}

.rr555-slotshero__btn {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  transition: background .24s, color .24s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffe57329;
  cursor: pointer;
  outline: none;
  background: #ffe573;
  color: #32164e;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.rr555-slotshero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #3a0155;
}

.rr555-slotshero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573;
  box-shadow: none;
}

.rr555-slotshero__btn--main:hover,
.rr555-slotshero__btn--main:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 80%);
  color: #1e1035;
}

.rr555-slotshero__btn--ghost:hover,
.rr555-slotshero__btn--ghost:focus {
  background: #ffe573;
  color: #26043b;
  border-color: #f855ee;
}

.rr555-slotshero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .17), transparent);
  transform: skewX(-25deg);
}

.rr555-slotshero__btn:hover::after {
  animation: slotshero-btnsheen .7s forwards;
}

@keyframes slotshero-btnsheen {
  to {
    left: 130%;
  }
}

@media (min-width: 700px) {
  .rr555-slotshero__ctas {
    flex-direction: row;
    justify-content: center;
    gap: 2.2rem;
  }

  .rr555-slotshero__figure {
    width: 240px;
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .rr555-slotshero__figure {
    width: 120px;
  }
}

.rr555-slotscats {
  background: linear-gradient(125deg, #881111 0%, #140728 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.rr555-slotscats__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rr555-slotscats__spark {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  filter: blur(28px);
  animation: rr555-sparkle-cats 12s linear infinite alternate;
}

.rr555-slotscats__spark--left {
  width: 210px;
  height: 160px;
  left: -60px;
  top: 37%;
  animation-delay: 0s;
}

.rr555-slotscats__spark--right {
  width: 160px;
  height: 130px;
  right: -45px;
  bottom: 6%;
  animation-delay: 4s;
}

@keyframes rr555-sparkle-cats {
  0% {
    opacity: 0.13;
  }

  100% {
    opacity: 0.25;
  }
}

.rr555-slotscats__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rr555-slotscats__header {
  margin-bottom: 1.6rem;
}

.rr555-slotscats__title {
  font-size: clamp(2.1rem, 4vw, 2.5rem);
  font-weight: 800;
  margin:  0;
}

.rr555-slotscats__desc {
  font-size: 1.08rem;
  margin: 0 auto;
}

.rr555-slotscats__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.1rem;
  margin: 0 auto 2.7rem auto;
  justify-items: center;
}

@media (min-width: 800px) {
  .rr555-slotscats__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.7rem;
  }
}

@media (min-width: 1150px) {
  .rr555-slotscats__grid {
    grid-template-columns: 1fr 1fr 1fr ;
    gap: 2.3rem;
  }
}

.rr555-slotscats__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: 0 7px 38px #ffe57339;
  padding: 2.2rem 1.1rem 1.5rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  min-width: 0;
  width: 100%;
  animation: rr555-cardin-slots 1s cubic-bezier(.5, 1.5, .41, 1) both;
  transition: box-shadow .25s, transform .19s;
}

.rr555-slotscats__card:hover {
  box-shadow: 0 15px 44px #ffe573a1, 0 0 0 2px #ffe573c5;
  transform: translateY(-12px) scale(1.055);
}

@keyframes rr555-cardin-slots {
  from {
    transform: translateY(38px) scale(.93);
    opacity: 0;
  }
}

.rr555-slotscats__imgwrap {

  font-size: 50px;
  overflow: hidden;
  margin-bottom: 1rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-slotscats__img {
  object-fit: contain;
  display: block;
}

.rr555-slotscats__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.rr555-slotscats__card-tag {
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(255, 229, 115, 0.12);
  border-radius: 6px;
  
  margin: 0 auto .3em auto;
  gap: .5em;
}

.rr555-slotscats__card-text {
  font-size: 1.01rem;
  
  margin: 0 auto;
  text-align: center;
}

.rr555-slotscats__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .18s;
}

.rr555-slotscats__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-slotscats__link:hover {
  color: #f855ee;
}

.rr555-slotscats__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-slotscats__cta {
  margin-top: .6rem;
}

.rr555-slotscats__btn {
  display: inline-block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  transition: background .22s, color .22s, box-shadow .19s;
  border: none;
  box-shadow: 0 3px 20px #ffe5731e;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.rr555-slotscats__btn:hover,
.rr555-slotscats__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.rr555-slotscats__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-slotscats__btn:hover::after {
  animation: rr555-btnsheen-slots .6s forwards;
}

@keyframes rr555-btnsheen-slots {
  to {
    left: 130%;
  }
}


.rr555-slotshowto {
  background: linear-gradient(120deg, #2a0351 0%, #881111 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.rr555-slotshowto__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rr555-slotshowto__spark {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  filter: blur(26px);
  animation: rr555-slotshowto-spark 13s linear infinite alternate;
}

.rr555-slotshowto__spark--left {
  width: 180px;
  height: 150px;
  left: -50px;
  top: 22%;
  animation-delay: 0s;
}

.rr555-slotshowto__spark--right {
  width: 170px;
  height: 120px;
  right: -38px;
  bottom: 10%;
  animation-delay: 4s;
}

@keyframes rr555-slotshowto-spark {
  0% {
    opacity: 0.10;
  }

  100% {
    opacity: 0.22;
  }
}

.rr555-slotshowto__container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.rr555-slotshowto__header {
  margin-bottom: 1.4rem;
}

.rr555-slotshowto__title {
  font-size: clamp(2.1rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0;
}

.rr555-slotshowto__tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rr555-slotshowto__tablist {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;

  background: rgba(255, 255, 255, 0.03);
  padding: .5rem 1rem;
  border-radius: 32px;
  box-shadow: 0 4px 18px #ffe5731e;
}

.rr555-slotshowto__tab {
  font-size: 1.02rem;
  font-weight: 600;
  background: none;
  border: none;
  color: #ffe573;
  border-radius: 18px;
  padding: .82em 1.7em;
  cursor: pointer;
  transition: background .18s, color .16s;
  outline: none;
  position: relative;
}

.rr555-slotshowto__tab--active,
.rr555-slotshowto__tab[aria-selected="true"] {
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #310650;
  box-shadow: 0 2px 12px #ffe5734d;
}

.rr555-slotshowto__tab:not(.rr555-slotshowto__tab--active):hover {
  background: rgba(255, 229, 115, 0.11);
  color: #f855ee;
}

.rr555-slotshowto__tabpanels {
  width: 100%;

}

.rr555-slotshowto__panel {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2.1rem;
  animation: rr555-panelin 0.7s cubic-bezier(.45, 1.4, .36, 1.12) both;
}

.rr555-slotshowto__panel--active {
  display: flex;
}

@keyframes rr555-panelin {
  from {
    opacity: 0;
    transform: translateY(40px) scale(.95);
  }
}

.rr555-slotshowto__panel-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.rr555-slotshowto__panel-imgwrap {
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto;
  background: #1c1031;
  box-shadow: 0 3px 14px #ffe5732a;
  display: flex;

  margin-top: 20px;
  align-items: center;
  justify-content: center;
}

.rr555-slotshowto__panel-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.rr555-slotshowto__panel-desc {
  font-size: 1.08rem;

  margin: 0 auto;
  text-align: center;
}

.rr555-slotshowto__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .18s;
}

.rr555-slotshowto__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-slotshowto__link:hover {
  color: #f855ee;
}

.rr555-slotshowto__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-slotshowto__cta {
  margin-top: 2.1rem;
}

.rr555-slotshowto__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  transition: background .23s, color .23s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffe5731e;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.rr555-slotshowto__btn:hover,
.rr555-slotshowto__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.rr555-slotshowto__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-slotshowto__btn:hover::after {
  animation: rr555-btnsheen-slotshowto .6s forwards;
}

@keyframes rr555-btnsheen-slotshowto {
  to {
    left: 130%;
  }
}



.rr555-slotsnew {
  background: linear-gradient(120deg, #201e1b 0%, #881111 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #fff;

  overflow: hidden;
  text-align: center;
}

.rr555-slotsnew__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rr555-slotsnew__starburst {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  filter: blur(20px);
  background: radial-gradient(circle, #ffe573 0%, transparent 70%);
  animation: rr555-slotsnew-starburst 14s infinite alternate;
}

.rr555-slotsnew__starburst--1 {
  width: 180px;
  height: 140px;
  left: -60px;
  top: 18%;
  animation-delay: 0s;
}

.rr555-slotsnew__starburst--2 {
  width: 120px;
  height: 90px;
  right: -44px;
  bottom: 10%;
  animation-delay: 6s;
}

@keyframes rr555-slotsnew-starburst {
  0% {
    opacity: .08;
  }

  100% {
    opacity: .19;
  }
}

.rr555-slotsnew__lights {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 670px;
  height: 260px;
  background: radial-gradient(ellipse at 55% 50%, #f855ee2a 0%, transparent 80%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.rr555-slotsnew__container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
}

.rr555-slotsnew__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  width: 100%;
}

.rr555-slotsnew__left {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-slotsnew__visual {
  position: relative;
  margin: 0 auto;
}

.rr555-slotsnew__img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 8px 38px #ffe57331, 0 0 0 2px #f855ee2b;
  position: relative;
  z-index: 2;
  animation: rr555-imgin-newslots 1.15s cubic-bezier(.52, 1.6, .44, 1) both;
}

@keyframes rr555-imgin-newslots {
  from {
    opacity: 0;
    transform: scale(.85);
  }
}

.rr555-slotsnew__pulse {
  position: absolute;
  top: 54%;
  left: 51%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe573 0%, #f855ee09 75%, transparent 100%);
  opacity: .21;
  z-index: 1;
  transform: translate(-50%, -50%);
  animation: rr555-pulse-newslots 2.7s infinite alternate;
}

@keyframes rr555-pulse-newslots {
  0% {
    opacity: .16;
    transform: translate(-50%, -50%) scale(.95);
  }

  100% {
    opacity: .29;
    transform: translate(-50%, -50%) scale(1.10);
  }
}

.rr555-slotsnew__badge {
  position: absolute;
  left: -24px;
  top: 10px;
  background: linear-gradient(90deg, #ffe573 30%, #f855ee 100%);
  color: #320d45;
  font-size: 1.05rem;
  font-weight: 700;
  padding: .5em 1.1em .5em .8em;
  border-radius: 16px;
  box-shadow: 0 4px 12px #ffe57350;
  display: flex;
  align-items: center;
  gap: .5em;
  z-index: 3;
  animation: rr555-badgein 1.5s cubic-bezier(.34, 1.22, .29, 1.05) both;
}

@keyframes rr555-badgein {
  from {
    opacity: 0;
    transform: translateY(-34px) scale(.85);
  }
}

.rr555-slotsnew__jackpot-anim {
  position: absolute;
  right: -22px;
  bottom: 16px;
  background: #f855ee;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: .49em 1em .49em .8em;
  border-radius: 16px;
  box-shadow: 0 4px 12px #f855ee46;
  display: flex;
  align-items: center;
  gap: .49em;
  z-index: 3;
  animation: rr555-jackin 2s cubic-bezier(.39, 1.35, .22, 1.01) both infinite alternate;
}

@keyframes rr555-jackin {
  from {
    opacity: 0.68;
    transform: scale(.89);
  }

  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.rr555-slotsnew__right {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rr555-slotsnew__header {
  margin-bottom: .9rem;
}

.rr555-slotsnew__title {
  font-size: clamp(2.1rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 1.1em 0;
}

.rr555-slotsnew__descbox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.rr555-slotsnew__desc {
  font-size: 1.08rem;
  margin: 0 auto;
}

.rr555-slotsnew__highlight {
  color: #ffe573;
  font-weight: 700;
  background: rgba(255, 229, 115, 0.11);
  padding: 0 .3em;
  border-radius: 6px;
}

.rr555-slotsnew__divider {
  width: 36px;
  height: 4px;
  margin: .6em auto;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  border-radius: 4px;
  opacity: .7;
}

.rr555-slotsnew__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .18s;
}

.rr555-slotsnew__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-slotsnew__link:hover {
  color: #f855ee;
}

.rr555-slotsnew__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-slotsnew__cta {
  margin-top: 2.1rem;
}

.rr555-slotsnew__btn {
  display: inline-block;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.6rem;
  border-radius: 44px;
  transition: background .23s, color .23s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffe57318;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.rr555-slotsnew__btn:hover,
.rr555-slotsnew__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.rr555-slotsnew__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-slotsnew__btn:hover::after {
  animation: rr555-btnsheen-slotsnew .6s forwards;
}

@keyframes rr555-btnsheen-slotsnew {
  to {
    left: 130%;
  }
}

@media (max-width: 1050px) {
  .rr555-slotsnew__inner {
    flex-direction: column;
    gap: 3.2rem;
  }

  .rr555-slotsnew__left {
    justify-content: center;
    margin-bottom: 1.4rem;
  }
}

@media (max-width: 600px) {



  .rr555-slotsnew__img {
    border-radius: 12px;
  }

  .rr555-slotsnew__left {
    flex: 0 0 110px;
  }
}

.rr555-gameshero {
  position: relative;

  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden;
  z-index: 1;
}

.rr555-gameshero__bg {
  position: absolute;
  inset: 0;

  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.rr555-gameshero__bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) blur(1.5px);
  position: absolute;
  inset: 0;
}

.rr555-gameshero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, #881111 20%, #3f2a06bb 80%);
  z-index: 2;
}

.rr555-gameshero__spark {
  position: absolute;
  border-radius: 50%;
  opacity: .14;
  pointer-events: none;
  z-index: 3;
  filter: blur(38px);
  animation: gameshero-sparkmove 14s ease-in-out infinite alternate;
}

.rr555-gameshero__spark--1 {
  width: 370px;
  height: 250px;
  left: -100px;
  top: 100px;
  background: radial-gradient(circle at 60% 35%, #ffe573 0%, transparent 100%);
  animation-delay: 0s;
}

.rr555-gameshero__spark--2 {
  width: 230px;
  height: 190px;
  right: -80px;
  bottom: 0px;
  background: radial-gradient(circle at 40% 65%, #f855ee 0%, transparent 100%);
  animation-delay: 4s;
}

@keyframes gameshero-sparkmove {
  0% {
    opacity: 0.12;
  }

  100% {
    opacity: 0.24;
  }
}

.rr555-gameshero__container {
  position: relative;
  z-index: 5;
  width: 100%;
max-width: 1200px;
margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.rr555-gameshero__content {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 2.8rem 1.2rem 2.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  
  z-index: 10;
}

.tt {
  padding-left: 10px;
    border-left: 2px solid grey;
    display: inline-block;
    text-align: center;
        background: #5d5d5d;
    padding: 4px;
}

.rr555-gameshero__header {
  margin-bottom: 1.6rem;
}

.rr555-gameshero__title {
  font-size: clamp(2.2rem, 5vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 0.8em 0;
  letter-spacing: -.01em;
}

.rr555-gameshero__desc {
  font-size: 1.09rem;
  margin: 0 auto;
}

.rr555-gameshero__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .23s;
}

.rr555-gameshero__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-gameshero__link:hover,
.rr555-gameshero__link:focus {
  color: #f855ee;
}

.rr555-gameshero__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-gameshero__figure {
  margin: 0 auto 1rem auto;
  width: 180px;
  max-width: 55vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-gameshero__img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 7px 44px #ffe5732e, 0 0 0 3px #f855ee3a;
}

.rr555-gameshero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  margin-top: .8rem;
  width: 100%;
}

.rr555-gameshero__btn {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  transition: background .24s, color .24s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffe57329;
  cursor: pointer;
  outline: none;
  background: #ffe573;
  color: #32164e;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.rr555-gameshero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #3a0155;
}

.rr555-gameshero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573;
  box-shadow: none;
}

.rr555-gameshero__btn--main:hover,
.rr555-gameshero__btn--main:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 80%);
  color: #1e1035;
}

.rr555-gameshero__btn--ghost:hover,
.rr555-gameshero__btn--ghost:focus {
  background: #ffe573;
  color: #26043b;
  border-color: #f855ee;
}

.rr555-gameshero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .17), transparent);
  transform: skewX(-25deg);
}

.rr555-gameshero__btn:hover::after {
  animation: gameshero-btnsheen .7s forwards;
}

@keyframes gameshero-btnsheen {
  to {
    left: 130%;
  }
}

@media (min-width: 700px) {
  .rr555-gameshero__ctas {
    flex-direction: row;
    justify-content: center;
    gap: 2.2rem;
  }

  .rr555-gameshero__figure {
    width: 240px;
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .rr555-gameshero__figure {
    width: 120px;
  }
}

.rr555-experience {
  background: linear-gradient(120deg, #881111 0%, #312508 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #fff;

  overflow: hidden;
}

.rr555-experience__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rr555-experience__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.13;
  animation: rr555-expshape 13s linear infinite alternate;
}

.rr555-experience__shape--1 {
  width: 200px;
  height: 120px;
  left: -50px;
  top: 22%;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  animation-delay: 0s;
}

.rr555-experience__shape--2 {
  width: 160px;
  height: 90px;
  right: -38px;
  bottom: 8%;
  background: radial-gradient(circle, #f855ee 0%, transparent 100%);
  animation-delay: 5s;
}

@keyframes rr555-expshape {
  0% {
    opacity: 0.10;
  }

  100% {
    opacity: 0.21;
  }
}

.rr555-experience__stars {
  position: absolute;
  left: 8%;
  top: 10%;
  width: 68vw;
  max-width: 900px;
  height: 3px;
  background: repeating-linear-gradient(90deg, #ffe573 0 1px, transparent 1px 20px);
  opacity: 0.09;
  animation: rr555-stars 7s linear infinite alternate;
}

@keyframes rr555-stars {
  0% {
    opacity: .06;
    left: 6%;
  }

  100% {
    opacity: .15;
    left: 10%;
  }
}

.rr555-experience__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
}

.rr555-experience__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3.3rem;
  width: 100%;
}

.rr555-experience__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-experience__imgbox {
  position: relative;

}

.rr555-experience__img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 38px #ffe57328, 0 0 0 2px #f855ee2a;
  position: relative;
  z-index: 2;
  animation: rr555-imgin-exp 1.1s cubic-bezier(.52, 1.6, .44, 1) both;
}

@keyframes rr555-imgin-exp {
  from {
    opacity: 0;
    transform: scale(.89);
  }
}

.rr555-experience__glow {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe573 0%, #f855ee19 75%, transparent 100%);
  opacity: .23;
  z-index: 1;
  transform: translate(-50%, -50%);
  animation: rr555-glow-exp 2.7s infinite alternate;
}

@keyframes rr555-glow-exp {
  0% {
    opacity: .17;
    transform: translate(-50%, -50%) scale(.96);
  }

  100% {
    opacity: .28;
    transform: translate(-50%, -50%) scale(1.13);
  }
}

.rr555-experience__badge {
  position: absolute;
  left: -18px;
  top: 9px;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #320d45;
  font-size: 1.01rem;
  font-weight: 700;
  padding: .5em 1.05em .5em .8em;
  border-radius: 14px;
  box-shadow: 0 3px 12px #ffe57338;
  display: flex;
  align-items: center;
  gap: .5em;
  z-index: 3;
  animation: rr555-badgein-exp 1.3s cubic-bezier(.34, 1.22, .29, 1.05) both;
}

@keyframes rr555-badgein-exp {
  from {
    opacity: 0;
    transform: translateY(-24px) scale(.91);
  }
}

.rr555-experience__content {
  max-width: 520px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rr555-experience__header {
  margin-bottom: .9rem;
}

.rr555-experience__title {
  font-size: clamp(2.1rem, 4vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 1.1em 0;
}

.hr-cont {
  text-align: center;
}

.rr555-experience__descbox {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.rr555-experience__desc {
  font-size: 1.08rem;
  margin: 0 auto;
}

.rr555-experience__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .18s;
}

.rr555-experience__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-experience__link:hover {
  color: #f855ee;
}

.rr555-experience__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-experience__cta {
  margin-top: 1.8rem;
}

.rr555-experience__btn {
  display: inline-block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  transition: background .23s, color .23s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffe57317;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.rr555-experience__btn:hover,
.rr555-experience__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.rr555-experience__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-experience__btn:hover::after {
  animation: rr555-btnsheen-exp .6s forwards;
}

@keyframes rr555-btnsheen-exp {
  to {
    left: 130%;
  }
}

@media (max-width: 950px) {
  .rr555-experience__inner {
    flex-direction: column;
    gap: 0;
  }

  .rr555-experience__visual {
    justify-content: center;
    margin-bottom: 1.6rem;
  }
}

@media (max-width: 650px) {



  .rr555-experience__visual {
    flex: 0 0 100px;
  }
}

.rr555-gamestyle {
  background: linear-gradient(120deg, #881111 0%, #16082a 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.rr555-gamestyle__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rr555-gamestyle__burst {
  position: absolute;
  border-radius: 50%;
  opacity: .13;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  filter: blur(24px);
  animation: rr555-burststyle 12s linear infinite alternate;
}

.rr555-gamestyle__burst--1 {
  width: 160px;
  height: 130px;
  left: -45px;
  top: 20%;
  animation-delay: 0s;
}

.rr555-gamestyle__burst--2 {
  width: 140px;
  height: 110px;
  right: -40px;
  bottom: 10%;
  animation-delay: 6s;
}

@keyframes rr555-burststyle {
  0% {
    opacity: 0.08;
  }

  100% {
    opacity: 0.21;
  }
}

.rr555-gamestyle__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rr555-gamestyle__header {
  margin-bottom: 1.2rem;
}

.rr555-gamestyle__title {
  font-size: clamp(2.1rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0;
}

.rr555-gamestyle__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.1rem;
  margin: 0 auto 2.6rem auto;
  justify-items: center;
}

.rr555-gamestyle__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: 0 7px 38px #ffe57329;
  padding: 2.1rem 1.1rem 1.5rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  min-width: 0;

  animation: rr555-gamestyle-cardin 1.05s cubic-bezier(.5, 1.5, .41, 1) both;
  transition: box-shadow .22s, transform .16s;
}

.rr555-gamestyle__card:hover {
  box-shadow: 0 15px 44px #ffe573b8, 0 0 0 2px #ffe573e1;
  transform: translateY(-12px) scale(1.07);
}

@keyframes rr555-gamestyle-cardin {
  from {
    transform: translateY(36px) scale(.93);
    opacity: 0;
  }
}

.rr555-gamestyle__imgwrap {

  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 3px 18px #ffe57350;
  background: #1c1031;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-gamestyle__img {
  object-fit: contain;
  display: block;
}

.rr555-gamestyle__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.rr555-gamestyle__card-tag {
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(255, 229, 115, 0.12);
  border-radius: 6px;
  
  margin: 0 auto .3em auto;
  gap: .5em;
}

.rr555-gamestyle__card-text {
  font-size: 1.01rem;

  margin: 0 auto;
  text-align: center;
}

.rr555-gamestyle__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: color .18s;
}

.rr555-gamestyle__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-gamestyle__link:hover {
  color: #f855ee;
}

.rr555-gamestyle__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-gamestyle__cta {
  margin-top: .7rem;
}

.rr555-gamestyle__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.3rem;
  border-radius: 44px;
  transition: background .22s, color .22s, box-shadow .17s;
  border: none;
  box-shadow: 0 3px 20px #ffe57318;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.rr555-gamestyle__btn:hover,
.rr555-gamestyle__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.rr555-gamestyle__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-gamestyle__btn:hover::after {
  animation: rr555-btnsheen-gamestyle .6s forwards;
}

@keyframes rr555-btnsheen-gamestyle {
  to {
    left: 130%;
  }
}

.rr555-hotnow {
  background: linear-gradient(110deg, #3c2f05 0%, #881111 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.rr555-hotnow__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rr555-hotnow__burst {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  filter: blur(25px);
  animation: rr555-hotnow-burst 14s linear infinite alternate;
}

.rr555-hotnow__burst--1 {
  width: 160px;
  height: 130px;
  left: -45px;
  top: 21%;
  animation-delay: 0s;
}

.rr555-hotnow__burst--2 {
  width: 130px;
  height: 100px;
  right: -35px;
  bottom: 10%;
  animation-delay: 6s;
}

@keyframes rr555-hotnow-burst {
  0% {
    opacity: 0.09;
  }

  100% {
    opacity: 0.18;
  }
}

.rr555-hotnow__container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.rr555-hotnow__header {
  margin-bottom: 1.3rem;
}

.rr555-hotnow__title {
  font-size: clamp(2rem, 4vw, 2.3rem);
  font-weight: 800;
  margin: 0;
}

.rr555-hotnow__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 auto 1rem auto;
  justify-items: center;
}

@media (min-width: 900px) {
  .rr555-hotnow__grid {
    
    gap: 2.4rem;
  }
}

.rr555-hotnow__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: 0 7px 38px #ffe57326;
  padding: 2.2rem 1.1rem 1.5rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;

  width: 100%;
  animation: rr555-hotnow-cardin 1.07s cubic-bezier(.5, 1.5, .41, 1) both;
  transition: box-shadow .22s, transform .17s;
}

.rr555-hotnow__card:hover {
  box-shadow: 0 16px 44px #ffe573b8, 0 0 0 2px #ffe573e1;
  transform: translateY(-14px) scale(1.07);
}

@keyframes rr555-hotnow-cardin {
  from {
    transform: translateY(36px) scale(.91);
    opacity: 0;
  }
}

.rr555-hotnow__iconwrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin-bottom: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 18px #ffe57334;
  font-size: 2.15rem;
}

.rr555-hotnow__icon {
  width: 100%;
  height: 100%;
  background: #74ffe523;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-hotnow__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.rr555-hotnow__card-tag {
  font-weight: 700;
  font-size: 1.09rem;
  
  margin: 0 auto .3em auto;
}

.rr555-hotnow__card-text {
  font-size: 1.03rem;

  margin: 0 auto;
  text-align: center;
}

.rr555-hotnow__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .18s;
}

.rr555-hotnow__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-hotnow__link:hover {
  color: #f855ee;
}

.rr555-hotnow__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-hotnow__figure {
  margin: 0 auto 1.7rem auto;
}

.rr555-hotnow__img {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 5px 28px #ffe5732e, 0 0 0 3px #f855ee29;
}

.rr555-hotnow__cta {
  margin-top: .8rem;
}

.rr555-hotnow__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.2rem;
  border-radius: 44px;
  transition: background .22s, color .22s, box-shadow .17s;
  border: none;
  box-shadow: 0 3px 20px #ffe57317;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.rr555-hotnow__btn:hover,
.rr555-hotnow__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.rr555-hotnow__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-hotnow__btn:hover::after {
  animation: rr555-btnsheen-hotnow .6s forwards;
}

@keyframes rr555-btnsheen-hotnow {
  to {
    left: 130%;
  }
}

.rr555-bet-hero {
  position: relative;

  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden;
  z-index: 1;
}

.rr555-bet-hero__bg {
  position: absolute;
  inset: 0;

  overflow: hidden;
  z-index: 1;
}

.rr555-bet-hero__bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) blur(1.5px);
  position: absolute;
  inset: 0;
}

.rr555-bet-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #881111 0%, #3d3904cb 100%);
  z-index: 2;
}

.rr555-bet-hero__flare {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
  z-index: 3;
  filter: blur(36px);
  animation: bethero-flare 14s ease-in-out infinite alternate;
}

.rr555-bet-hero__flare--left {
  width: 320px;
  height: 200px;
  left: -100px;
  top: 70px;
  background: radial-gradient(circle at 55% 35%, #ffe573 0%, transparent 100%);
  animation-delay: 0s;
}

.rr555-bet-hero__flare--right {
  width: 210px;
  height: 170px;
  right: -80px;
  bottom: 0;
  background: radial-gradient(circle at 40% 70%, #f855ee 0%, transparent 100%);
  animation-delay: 5s;
}

@keyframes bethero-flare {
  0% {
    opacity: 0.12;
  }

  100% {
    opacity: 0.22;
  }
}

.rr555-bet-hero__container {
  position: relative;
  z-index: 5;
  width: 100%;
max-width: 1200px;
margin:  0 auto;

  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 3rem 0 ;
  justify-content: center;
}

.rr555-bet-hero__content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 2.7rem 1.2rem 2.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  z-index: 10;
}

.rr555-bet-hero__header {
  margin-bottom: 1.4rem;
}

.rr555-bet-hero__title {
  font-size: clamp(2.1rem, 5vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 0.5em 0;
  letter-spacing: -.01em;
}

.rr555-bet-hero__desc {
  font-size: 1.09rem;

  margin: 0 auto;
}

.rr555-bet-hero__figure {
  margin: 0 auto 1.1rem auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-bet-hero__img {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 7px 44px #ffe57326, 0 0 0 2px #f855ee2e;
}

.rr555-bet-hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  margin-top: .8rem;
  width: 100%;
}

.rr555-bet-hero__btn {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.3rem;
  border-radius: 44px;
  transition: background .24s, color .24s, box-shadow .19s;
  border: none;
  box-shadow: 0 3px 20px #ffe57321;
  cursor: pointer;
  outline: none;
  background: #ffe573;
  color: #32164e;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.rr555-bet-hero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #340055;
}

.rr555-bet-hero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573;
  box-shadow: none;
}

.rr555-bet-hero__btn--main:hover,
.rr555-bet-hero__btn--main:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 80%);
  color: #1e1035;
}

.rr555-bet-hero__btn--ghost:hover,
.rr555-bet-hero__btn--ghost:focus {
  background: #ffe573;
  color: #26043b;
  border-color: #f855ee;
}

.rr555-bet-hero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .15), transparent);
  transform: skewX(-25deg);
}

.rr555-bet-hero__btn:hover::after {
  animation: bethero-btnsheen .7s forwards;
}

@keyframes bethero-btnsheen {
  to {
    left: 130%;
  }
}

@media (min-width: 700px) {
  .rr555-bet-hero__ctas {
    flex-direction: row;
    justify-content: center;
    gap: 2.1rem;
  }

  .rr555-bet-hero__figure {
    width: 230px;
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .rr555-bet-hero__figure {
    width: 110px;
  }
}

.rr555-sportsbet {
  background: linear-gradient(120deg, #881111 0%, #000000 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #fff;

  overflow: hidden;
}

.rr555-sportsbet__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rr555-sportsbet__flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.17;
  animation: rr555-betflare 13s linear infinite alternate;
}

.rr555-sportsbet__flare--left {
  width: 160px;
  height: 120px;
  left: -35px;
  top: 22%;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  animation-delay: 0s;
}

.rr555-sportsbet__flare--right {
  width: 120px;
  height: 80px;
  right: -33px;
  bottom: 8%;
  background: radial-gradient(circle, #f855ee 0%, transparent 100%);
  animation-delay: 6s;
}

@keyframes rr555-betflare {
  0% {
    opacity: 0.10;
  }

  100% {
    opacity: 0.20;
  }
}

.rr555-sportsbet__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
}

.rr555-sportsbet__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  width: 100%;
}

.rr555-sportsbet__visual {

  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-sportsbet__imgbox {
  position: relative;

}

.rr555-sportsbet__img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 38px #ffe57325, 0 0 0 2px #f855ee29;
  position: relative;
  z-index: 2;
  animation: rr555-imgin-sportsbet 1.1s cubic-bezier(.52, 1.6, .44, 1) both;
}

@keyframes rr555-imgin-sportsbet {
  from {
    opacity: 0;
    transform: scale(.91);
  }
}

.rr555-sportsbet__pulse {
  position: absolute;
  top: 54%;
  left: 51%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe573 0%, #f855ee13 70%, transparent 100%);
  opacity: .20;
  z-index: 1;
  transform: translate(-50%, -50%);
  animation: rr555-betpulse 2.2s infinite alternate;
}

@keyframes rr555-betpulse {
  0% {
    opacity: .14;
    transform: translate(-50%, -50%) scale(.92);
  }

  100% {
    opacity: .23;
    transform: translate(-50%, -50%) scale(1.09);
  }
}

.rr555-sportsbet__content {

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rr555-sportsbet__header {
  margin-bottom: .8rem;
}

.rr555-sportsbet__title {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 1.08em 0;
}

.rr555-sportsbet__descbox {
  display: flex;
  flex-direction: column;
  gap: 1.12rem;
  align-items: center;
}

.rr555-sportsbet__desc {
  font-size: 1.08rem;

  margin: 0 auto;
}

.rr555-sportsbet__cta {
  margin-top: 1.7rem;
}

.rr555-sportsbet__btn {
  display: inline-block;
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.3rem;
  border-radius: 44px;
  transition: background .23s, color .23s, box-shadow .21s;
  border: none;
  box-shadow: 0 3px 20px #ffe5731a;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.rr555-sportsbet__btn:hover,
.rr555-sportsbet__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.rr555-sportsbet__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-sportsbet__btn:hover::after {
  animation: rr555-btnsheen-sportsbet .6s forwards;
}

@keyframes rr555-btnsheen-sportsbet {
  to {
    left: 130%;
  }
}

@media (max-width: 950px) {
  .rr555-sportsbet__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .rr555-sportsbet__visual {
    justify-content: center;
    margin-bottom: 1.7rem;
  }
}

@media (max-width: 650px) {


  .rr555-sportsbet__visual {
    flex: 0 0 95px;
  }
}

.rr555-hotnow__card-tag span {
  padding-left: 10px;
  border-left: 2px solid grey;
  display: flex;
  align-items: center;
}

.rr555-sports-cards {
  background: linear-gradient(120deg, #4a4a4a 0%, #881111 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.rr555-sports-cards__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rr555-sports-cards__burst {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  filter: blur(28px);
  animation: rr555-sports-cards-burst 14s linear infinite alternate;
}

.rr555-sports-cards__burst--1 {
  width: 140px;
  height: 110px;
  left: -40px;
  top: 21%;
  animation-delay: 0s;
}

.rr555-sports-cards__burst--2 {
  width: 110px;
  height: 80px;
  right: -33px;
  bottom: 10%;
  animation-delay: 6s;
}

@keyframes rr555-sports-cards-burst {
  0% {
    opacity: 0.10;
  }

  100% {
    opacity: 0.22;
  }
}

.rr555-sports-cards__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.rr555-sports-cards__header {
  margin-bottom: 1.4rem;
}

.rr555-sports-cards__title {
  font-size: clamp(2.1rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 1.05em 0;
}

.rr555-sports-cards__desc {
  font-size: 1.12rem;
  max-width: 570px;
  margin: 0 auto 1.1rem auto;
}

.rr555-sports-cards__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.1rem;
  margin: 0 auto 2.6rem auto;
  justify-items: center;
}

@media (min-width: 820px) {
  .rr555-sports-cards__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
  }
}

@media (min-width: 1100px) {
  .rr555-sports-cards__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.2rem;
  }
}

.rr555-sports-cards__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: 0 7px 38px #ffe57322;
  padding: 2rem 1.1rem 1.4rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  min-width: 0;

  width: 100%;
  animation: rr555-sports-cards-in 1.07s cubic-bezier(.5, 1.5, .41, 1) both;
  transition: box-shadow .23s, transform .18s;
}

.rr555-sports-cards__card:hover {
  box-shadow: 0 15px 44px #ffe573c8, 0 0 0 2px #ffe573f1;
  transform: translateY(-13px) scale(1.07);
}

@keyframes rr555-sports-cards-in {
  from {
    transform: translateY(32px) scale(.93);
    opacity: 0;
  }
}

.rr555-sports-cards__imgwrap {


  border-radius: 11px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 3px 18px #ffe57331;
  background: #190c31;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr555-sports-cards__img {
  object-fit: contain;
  display: block;
}

.rr555-sports-cards__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .57rem;
}

.rr555-sports-cards__card-tag {
  font-weight: 700;
  font-size: 1.09rem;
  background: rgba(255, 229, 115, 0.12);
  border-radius: 6px;
  
  margin: 0 auto .3em auto;
  padding-left: 10px;
  border-left: 2px solid grey;
  display: flex;
  align-items: center;
}

.rr555-sports-cards__card-text {
  font-size: 1.03rem;

  margin: 0 auto;
  text-align: center;
}

.rr555-sports-cards__figure {
  margin: 0 auto 1.6rem auto;
}

.rr555-sports-cards__figureimg {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 5px 28px #ffe57322, 0 0 0 2px #f855ee29;
}

.rr555-sports-cards__cta {
  margin-top: .8rem;
}

.rr555-sports-cards__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.2rem;
  border-radius: 44px;
  transition: background .21s, color .21s, box-shadow .18s;
  border: none;
  box-shadow: 0 3px 20px #ffe57317;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.rr555-sports-cards__btn:hover,
.rr555-sports-cards__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.rr555-sports-cards__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .21), transparent);
  transform: skewX(-25deg);
}

.rr555-sports-cards__btn:hover::after {
  animation: rr555-btnsheen-sports-cards .6s forwards;
}

@keyframes rr555-btnsheen-sports-cards {
  to {
    left: 130%;
  }
}

.rr555-livebet {
  background: linear-gradient(120deg, #22073a 0%, #881111 100%);
  position: relative;
  padding: 5.5rem 0 5rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.rr555-livebet__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rr555-livebet__flare {
  position: absolute;
  border-radius: 50%;
  opacity: .14;
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  filter: blur(28px);
  animation: rr555-livebet-flare 13s linear infinite alternate;
}

.rr555-livebet__flare--1 {
  width: 140px;
  height: 110px;
  left: -40px;
  top: 17%;
  animation-delay: 0s;
}

.rr555-livebet__flare--2 {
  width: 110px;
  height: 80px;
  right: -28px;
  bottom: 9%;
  animation-delay: 7s;
}

@keyframes rr555-livebet-flare {
  0% {
    opacity: 0.10;
  }

  100% {
    opacity: 0.19;
  }
}

.rr555-livebet__container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.1rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.rr555-livebet__imgwrap {
  position: relative;

  margin: 0 auto 1.3rem auto;
}

.rr555-livebet__img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 38px #ffe57322, 0 0 0 2px #f855ee29;
  position: relative;
  z-index: 2;
  animation: rr555-livebet-imgin 1.15s cubic-bezier(.52, 1.6, .44, 1) both;
}

@keyframes rr555-livebet-imgin {
  from {
    opacity: 0;
    transform: scale(.91);
  }
}

.rr555-livebet__pulse {
  position: absolute;
  top: 56%;
  left: 54%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe573 0%, #f855ee19 72%, transparent 100%);
  opacity: .17;
  z-index: 1;
  transform: translate(-50%, -50%);
  animation: rr555-livebet-pulse 2.4s infinite alternate;
}

@keyframes rr555-livebet-pulse {
  0% {
    opacity: .14;
    transform: translate(-50%, -50%) scale(.93);
  }

  100% {
    opacity: .23;
    transform: translate(-50%, -50%) scale(1.11);
  }
}

.rr555-livebet__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rr555-livebet__header {
  margin-bottom: 1.15rem;
}

.rr555-livebet__title {
  font-size: 2.5em;
  font-weight: 800;
  margin: 0;

  display: flex;
  justify-content: center;
}

.rr555-livebet__card-tag {
  padding-left: 10px;
  border-left: 2px solid grey;
  display: flex;
  align-items: center;
  font-weight: 700;
  background: rgba(255, 229, 115, 0.11);
  border-radius: 6px;
  font-size: 2.5rem;
  text-align: center;

  margin: 0 auto;
}

.rr555-livebet__descbox {
  display: flex;
  flex-direction: column;
  gap: 1.12rem;
  align-items: center;
}

.rr555-livebet__desc {
  font-size: 1.06rem;

  margin: 0 auto;
}

.rr555-livebet__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .19s;
}

.rr555-livebet__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-livebet__link:hover {
  color: #f855ee;
}

.rr555-livebet__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-livebet__cta {
  margin-top: 2.2rem;
}

.rr555-livebet__btn {
  display: inline-block;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.2rem;
  border-radius: 44px;
  transition: background .22s, color .22s, box-shadow .18s;
  border: none;
  box-shadow: 0 3px 20px #ffe57318;
  cursor: pointer;
  outline: none;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  position: relative;
  overflow: hidden;
}

.rr555-livebet__btn:hover,
.rr555-livebet__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.rr555-livebet__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-livebet__btn:hover::after {
  animation: rr555-btnsheen-livebet .6s forwards;
}

@keyframes rr555-btnsheen-livebet {
  to {
    left: 130%;
  }
}

.rr555-loginhero {
  position: relative;

  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden;
}

/* ----- Background layers ----- */
.rr555-loginhero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1
}

.rr555-loginhero__bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) blur(1.5px);
}

.rr555-loginhero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, #7a3103cc 20%, #881111 80%);
}

.rr555-loginhero__flare {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(36px);
  animation: loginhero-flare 14s ease-in-out infinite alternate;
}

.rr555-loginhero__flare--1 {
  width: 340px;
  height: 240px;
  left: -110px;
  top: 90px;
  background: radial-gradient(circle at 60% 35%, #ffe573 0%, transparent 100%);
}

.rr555-loginhero__flare--2 {
  width: 230px;
  height: 180px;
  right: -90px;
  bottom: -10px;
  background: radial-gradient(circle at 40% 65%, #f855ee 0%, transparent 100%);
  animation-delay: 4s;
}

@keyframes loginhero-flare {
  0% {
    opacity: .12
  }

  100% {
    opacity: .26
  }
}

/* ----- Container ----- */
.rr555-loginhero__container {
  position: relative;
  z-index: 5;
  width: 100%;
max-width: 1200px;
margin:  0 auto;
grid-template-columns: 1fr 1fr;
gap: 20px;
padding: 3rem 0 ;
  display: grid;
  align-items: center;
  justify-content: center;
}

.rr555-loginhero__content {
  max-width: 1120px;
  width: 100%;
  padding: 2.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ----- Text ----- */
.rr555-loginhero__title {
  font-size: clamp(2.2rem, 5vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 20px 0;
}

.rr555-loginhero__desc {
  font-size: 1.08rem;
  margin: 0 auto
}

.rr555-loginhero__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .23s;
}

.rr555-loginhero__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-loginhero__link:hover {
  color: #f855ee
}

.rr555-loginhero__link:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

/* ----- Image ----- */
.rr555-loginhero__figure {
  margin: 0;
  width: 190px;
  max-width: 55vw
}

.rr555-loginhero__img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 7px 44px #ffe5732c, 0 0 0 3px #f855ee30;
}

/* ----- Buttons ----- */
.rr555-loginhero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  width: 100%;
}

.rr555-loginhero__btn {
  font-size: 1.04rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background .24s, color .24s, box-shadow .21s;
  position: relative;
  overflow: hidden;
}

.rr555-loginhero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-25deg);
}

.rr555-loginhero__btn:hover::after {
  animation: loginhero-btnsheen .7s forwards
}

@keyframes loginhero-btnsheen {
  to {
    left: 130%
  }
}

/* main */
.rr555-loginhero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #340055;
  box-shadow: 0 3px 20px #ffe5732a;
}

.rr555-loginhero__btn--main:hover {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 80%);
  color: #1e1035;
}

/* ghost */
.rr555-loginhero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573;
  box-shadow: none;
}

.rr555-loginhero__btn--ghost:hover {
  background: #ffe573;
  color: #26043b;
  border-color: #f855ee;
}

/* ----- Responsive tweaks ----- */
@media(min-width:700px) {
  .rr555-loginhero__ctas {
    flex-direction: row;
    justify-content: center;
    gap: 2.3rem
  }

  .rr555-loginhero__figure {
    width: 240px
  }
}

@media(max-width:700px) {
  .rr555-loginhero__figure {
    width: 120px
  }
}

.rr555-logincards {
  background: linear-gradient(115deg, #881111 0%, #000000 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #fff;
  text-align: center;

  overflow: hidden;
}

.rr555-logincards__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.rr555-logincards__burst {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  filter: blur(26px);
  background: radial-gradient(circle, #ffe573 0%, transparent 100%);
  animation: logincards-burst 12s linear infinite alternate;
}

.rr555-logincards__burst--1 {
  width: 150px;
  height: 110px;
  left: -45px;
  top: 18%
}

.rr555-logincards__burst--2 {
  width: 120px;
  height: 90px;
  right: -38px;
  bottom: 10%;
  animation-delay: 6s
}

@keyframes logincards-burst {
  0% {
    opacity: .10
  }

  100% {
    opacity: .22
  }
}

/* ===== Container ===== */
.rr555-logincards__container {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

/* ===== Top Image ===== */
.rr555-logincards__figure {
  margin: 0;
}

.rr555-logincards__img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 7px 38px #ffe57328, 0 0 0 2px #f855ee26;
}

/* ===== Heading & Intro ===== */
.rr555-logincards__title {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0;
}

.rr555-logincards__intro {
  font-size: 1.07rem;
  
}

/* ===== Card Grid ===== */
.rr555-logincards__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
}

@media(min-width:750px) {
  .rr555-logincards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem
  }
}

/* ===== Individual Card ===== */
.rr555-logincards__card {
  background: rgba(255, 255, 255, .04);
  border-radius: 20px;
  width: 100%;
  padding: 2rem 1.2rem 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 7px 36px #ffe5731e;
  transition: transform .25s, box-shadow .25s;
  animation: logincards-cardin 1s cubic-bezier(.5, 1.5, .4, 1) both;
}

.rr555-logincards__card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 15px 46px #ffe573c5, 0 0 0 2px #ffe573e1;
}

@keyframes logincards-cardin {
  from {
    transform: translateY(34px) scale(.93);
    opacity: 0
  }
}

.rr555-logincards__iconwrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ffe5731b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px #ffe5733b;
  margin-bottom: 1rem;
  color: #ffe573;
}

/* ===== Card Text ===== */
.rr555-logincards__text {
  font-size: 1.03rem;
  text-align: center;
  margin: 0 auto;
}

.rr555-logincards__tag {
  justify-content: center;
  margin-bottom: 5px;
  padding-left: 10px;
  border-left: 2px solid grey;
  display: flex;
  align-items: center;
  font-weight: 700;
  background: rgba(255, 229, 115, .12);
  border-radius: 6px;
  font-size: 1.09rem;
}

.rr555-logincards__link {
  display: inline-block;
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .2s;
}

.rr555-logincards__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-logincards__link:hover {
  color: #f855ee
}

.rr555-logincards__link:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

/* ===== CTA Button ===== */
.rr555-logincards__cta {
  margin-top: .6rem
}

.rr555-logincards__btn {
  display: inline-block;
  font-size: 1.03rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #200b2c;
  box-shadow: 0 3px 22px #ffe57319;
  position: relative;
  overflow: hidden;
  transition: background .22s, color .22s;
}

.rr555-logincards__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-logincards__btn:hover,
.rr555-logincards__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e;
}

.rr555-logincards__btn:hover::after {
  animation: logincards-btnsheen .6s forwards
}

@keyframes logincards-btnsheen {
  to {
    left: 130%
  }
}

.rr555-awaits {
  position: relative;
  padding: 7rem 1.3rem 6rem;
  border: none;
  background: #881111;
  color: #fff;

  text-align: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* neon grid BG */
.rr555-awaits__gridmask {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 96%, rgba(255, 255, 255, .05) 100%),
    linear-gradient(transparent 96%, rgba(255, 255, 255, .05) 100%);
  background-size: 40px 40px;
  opacity: .06;
  animation: gridshift 20s linear infinite;
  pointer-events: none
}

@keyframes gridshift {
  to {
    background-position: 40px 40px
  }
}

/* sparks */
.rr555-awaits__spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffe573;
  opacity: .85;
  filter: drop-shadow(0 0 6px #ffe573);
  animation: shoot 6s linear infinite
}

.rr555-awaits__spark--1 {
  top: -5%;
  left: 20%
}

.rr555-awaits__spark--2 {
  top: -5%;
  left: 70%;
  animation-delay: 3s
}

@keyframes shoot {
  0% {
    transform: translateY(0) translateX(0) scale(.8);
    opacity: .8
  }

  100% {
    transform: translateY(110vh) translateX(30vw) scale(.2);
    opacity: 0
  }
}

/* ===== HOLOGRAM CARD ===== */
.rr555-awaits__card {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  width: 100%;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 3.2rem 1.8rem;
  box-shadow: 0 10px 50px #00000070;
  display: grid;
  gap: 2.4rem;
}

/* hologram box */
.rr555-awaits__holo {
  perspective: 900px;
  width: 100%;
  display: flex;
  justify-content: center
}

.rr555-awaits__fig {
  margin: 0;
  transform-style: preserve-3d;
  animation: holoTilt 8s ease-in-out infinite alternate
}

@keyframes holoTilt {
  0% {
    transform: rotateY(-6deg) rotateX(5deg)
  }

  100% {
    transform: rotateY(6deg) rotateX(-5deg)
  }
}

.rr555-awaits__img {
  width: 100%;
  border-radius: 22px;
  display: block;
  box-shadow: 0 8px 40px #ffe57333, 0 0 0 3px #f855ee33
}

/* body */
.rr555-awaits__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rr555-awaits__title {
  font-size: clamp(2rem, 4vw, 2.45rem);
  font-weight: 800;
  margin: 0
}

.rr555-awaits__copy {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.rr555-awaits__text {
  font-size: 1.07rem;
  margin: 0
}

/* links */
.rr555-awaits__link {
  display: inline-block;
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .22s
}

.rr555-awaits__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-awaits__link:hover {
  color: #f855ee
}

.rr555-awaits__link:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

/* button */
.rr555-awaits__btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21082d;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  border: none;
  border-radius: 44px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px #ffe57329;
  transition: background .24s, color .24s
}

.rr555-awaits__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: skewX(-25deg)
}

.rr555-awaits__btn:hover,
.rr555-awaits__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.rr555-awaits__btn:hover::after {
  animation: btn-sheen .7s forwards
}

@keyframes btn-sheen {
  to {
    left: 130%
  }
}

/* ===== Responsive ===== */
@media(min-width:768px) {
  .rr555-awaits__card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 3rem 3rem
  }

}

@media(max-width:480px) {
  .rr555-awaits__fig {
    width: 130px
  }
}

.rr555-recovery {
  background: #881111;
  position: relative;
  padding: 6rem 0 5.2rem;
  color: #fff;

  text-align: center;
  overflow: hidden
}

/* === animated BG === */
.rr555-recovery__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.rr555-recovery__glare {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  opacity: .14;
  background: radial-gradient(circle, #ffe573 0%, transparent 70%);
  animation: recovery-glare 14s linear infinite alternate
}

.rr555-recovery__glare--1 {
  width: 180px;
  height: 140px;
  left: -60px;
  top: 22%
}

.rr555-recovery__glare--2 {
  width: 140px;
  height: 110px;
  right: -45px;
  bottom: 12%;
  animation-delay: 6s
}

@keyframes recovery-glare {
  0% {
    opacity: .1
  }

  100% {
    opacity: .22
  }
}

/* === layout === */
.rr555-recovery__container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* illustration */
.rr555-recovery__figure {
  margin: 0;
}

.rr555-recovery__img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 8px 40px #ffe57325, 0 0 0 2px #f855ee29;
  animation: recovery-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both
}

@keyframes recovery-pop {
  from {
    opacity: 0;
    transform: scale(.88)
  }
}

/* title */
.rr555-recovery__title {
  font-size: clamp(2.1rem, 4vw, 2.45rem);
  font-weight: 800;
  margin: 0
}

/* grid */
.rr555-recovery__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  justify-items: center;
  margin-bottom: 20px;
}

@media(min-width:800px) {
  .rr555-recovery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.3rem
  }
}

/* card */
.rr555-recovery__card {
  background: rgba(255, 255, 255, .04);
  border-radius: 20px;
  padding: 2rem 1.2rem 1.6rem;
  width: 100%;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  box-shadow: 0 7px 36px #ffe5731a;
  transition: transform .24s, box-shadow .24s;
  animation: recovery-cardin 1.05s cubic-bezier(.5, 1.5, .4, 1) both
}

.rr555-recovery__card:hover {
  transform: translateY(-12px) scale(1.07);
  box-shadow: 0 15px 46px #ffe573c4, 0 0 0 2px #ffe573e0
}

@keyframes recovery-cardin {
  from {
    transform: translateY(36px) scale(.92);
    opacity: 0
  }
}

/* icon */
.rr555-recovery__iconwrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: #ffe5731a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffe573;
  box-shadow: 0 4px 20px #ffe57335
}

.rr555-quote {
  display: flex;
  margin-bottom: 5px;
  padding-left: 10px;
  border-left: 2px solid #fff;
  font-weight: bold;
}

/* tag + text */
.rr555-recovery__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  font-size: 1.04rem;
  
  margin: 0 auto
}

.rr555-recovery__tag {
  padding-left: 10px;
  border-left: 2px solid grey;
  display: flex;
  align-items: center;
  font-weight: 700;
  background: rgba(255, 229, 115, .12);
  border-radius: 6px;
  font-size: 1.09rem
}

/* links */
.rr555-recovery__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .2s
}

.rr555-recovery__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-recovery__link:hover {
  color: #f855ee
}

.rr555-recovery__link:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

/* CTA */
.rr555-recovery__btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  border-radius: 44px;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe57319;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.rr555-recovery__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.rr555-recovery__btn:hover,
.rr555-recovery__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.rr555-recovery__btn:hover::after {
  animation: recovery-sheen .6s forwards
}

@keyframes recovery-sheen {
  to {
    left: 130%
  }
}

.rr555-apphero {
  position: relative;

  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden
}

/* === background layers === */
.rr555-apphero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1
}

.rr555-apphero__bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) blur(1.5px)
}

.rr555-apphero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, #8a6d11cc 20%, #881111 80%);
}

/* glowing orbs */
.rr555-apphero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(38px);
  opacity: .14;
  animation: apphero-glow 15s ease-in-out infinite alternate
}

.rr555-apphero__glow--1 {
  width: 330px;
  height: 240px;
  left: -110px;
  top: 80px;
  background: radial-gradient(circle at 60% 35%, #ffe573 0%, transparent 100%)
}

.rr555-apphero__glow--2 {
  width: 220px;
  height: 180px;
  right: -90px;
  bottom: -10px;
  background: radial-gradient(circle at 40% 70%, #f855ee 0%, transparent 100%);
  animation-delay: 4s
}

@keyframes apphero-glow {
  0% {
    opacity: .12
  }

  100% {
    opacity: .25
  }
}

/* === container === */
.rr555-apphero__container {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding:  3rem 0 ;
}

.rr555-apphero__content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === text === */
.rr555-apphero__title {
  font-size: clamp(2.2rem, 5vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 0.5em
}

.rr555-apphero__desc {
  font-size: 1.08rem;

  margin: 0 auto
}

.rr555-apphero__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .23s
}

.rr555-apphero__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-apphero__link:hover {
  color: #f855ee
}

.rr555-apphero__link:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

/* === phone illustration === */
.rr555-apphero__figure {
  margin: 0;
  width: 200px;
  max-width: 55vw
}

.rr555-apphero__img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 8px 46px #ffe57330, 0 0 0 3px #f855ee30;
  animation: apphero-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both
}

@keyframes apphero-pop {
  from {
    opacity: 0;
    transform: scale(.88)
  }
}

/* === buttons === */
.rr555-apphero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
}

.rr555-apphero__btn {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.5rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .24s, color .24s;
}

.rr555-apphero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-25deg)
}

.rr555-apphero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #340055;
  box-shadow: 0 4px 24px #ffe5732c
}

.rr555-apphero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573
}

.rr555-apphero__btn--main:hover,
.rr555-apphero__btn--main:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 80%);
  color: #1e1035
}

.rr555-apphero__btn--ghost:hover,
.rr555-apphero__btn--ghost:focus {
  background: #ffe573;
  color: #26043b;
  border-color: #f855ee
}

.rr555-apphero__btn:hover::after {
  animation: apphero-sheen .7s forwards
}

@keyframes apphero-sheen {
  to {
    left: 130%
  }
}

/* === responsive tweaks === */
@media(min-width:720px) {
  .rr555-apphero__ctas {
    flex-direction: row;
    justify-content: center;
    gap: 2.3rem
  }

  .rr555-apphero__figure {
    width: 250px
  }
}

@media(max-width:720px) {
  .rr555-apphero__figure {
    width: 130px
  }

  .rr555-apphero__container {
    display: flex;
    flex-direction: column;
  }
}

.rr555-appcards {
  background: #881111;
  position: relative;
  padding: 6rem 0 5.2rem;
  color: #fff;

  text-align: center;
  overflow: hidden
}

/* === Animated BG Halos === */
.rr555-appcards__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.rr555-appcards__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  opacity: .15;
  background: radial-gradient(circle, #ffe573 0%, transparent 75%);
  animation: appcards-halo 14s linear infinite alternate
}

.rr555-appcards__halo--1 {
  width: 170px;
  height: 130px;
  left: -50px;
  top: 22%
}

.rr555-appcards__halo--2 {
  width: 140px;
  height: 110px;
  right: -40px;
  bottom: 12%;
  animation-delay: 6s
}

@keyframes appcards-halo {
  0% {
    opacity: .1
  }

  100% {
    opacity: .22
  }
}

/* === Layout Container === */
.rr555-appcards__container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Illustration */
.rr555-appcards__figure {
  margin: 0;
}

.rr555-appcards__img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 8px 40px #ffe57328, 0 0 0 2px #f855ee29;
  animation: appcards-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both
}

@keyframes appcards-pop {
  from {
    opacity: 0;
    transform: scale(.88)
  }
}

/* Heading */
.rr555-appcards__title {
  font-size: clamp(2.1rem, 4vw, 2.45rem);
  font-weight: 800;
  margin: 0
}

/* Grid */
.rr555-appcards__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  justify-items: center;
  margin-bottom: 20px;
}

@media(min-width:880px) {
  .rr555-appcards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem
  }
}

/* Card container */
.rr555-welcome__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  width: 100%;
  margin: 0;
}

/* Individual card */
.rr555-welcome__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rr555-reload__text li,  .rr555-vip__text li {
  text-align: left;
  margin-bottom: 10px;
}

/* Hover effect */
.rr555-welcome__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

/* Text inside card */
.rr555-welcome__card p {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
}


/* Card */
.rr555-appcards__card {
  background: rgba(255, 255, 255, .04);
  border-radius: 20px;
  padding: 2rem 1.2rem 1.6rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  box-shadow: 0 7px 36px #ffe5731b;
  transition: transform .24s, box-shadow .24s;
  animation: appcards-cardin 1.05s cubic-bezier(.5, 1.5, .4, 1) both
}

.rr555-appcards__card:hover {
  transform: translateY(-12px) scale(1.07);
  box-shadow: 0 15px 46px #ffe573c5, 0 0 0 2px #ffe573e0
}

@keyframes appcards-cardin {
  from {
    transform: translateY(36px) scale(.92);
    opacity: 0
  }
}

/* Icon */
.rr555-appcards__iconwrap {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  background: #ffe5731a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffe573;
  box-shadow: 0 4px 20px #ffe57335
}

/* Text */
.rr555-appcards__text {
  font-size: 1.05rem;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: .45rem
}

/* Links */
.rr555-appcards__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .2s
}

.rr555-appcards__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-appcards__link:hover {
  color: #f855ee
}

.rr555-appcards__link:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

/* CTA */
.rr555-appcards__btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe57319;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.rr555-appcards__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.rr555-appcards__btn:hover,
.rr555-appcards__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.rr555-appcards__btn:hover::after {
  animation: appcards-sheen .6s forwards
}

@keyframes appcards-sheen {
  to {
    left: 130%
  }
}

.rr555-appfeatures {
  background: linear-gradient(115deg, #881111 0%, #000000 100%);
  position: relative;
  padding: 6rem 0 5rem;
  color: #fff;

  text-align: center;
  overflow: hidden
}

/* ===== Background beams ===== */
.rr555-appfeatures__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.rr555-appfeatures__beam {
  position: absolute;
  width: 140%;
  height: 4px;
  background: #ffe573;
  opacity: .08;
  transform: rotate(-8deg);
  left: -20%;
  animation: beam-move 18s linear infinite
}

.rr555-appfeatures__beam--1 {
  top: 25%
}

.rr555-appfeatures__beam--2 {
  top: 65%;
  animation-delay: 9s
}

@keyframes beam-move {
  0% {
    transform: translateX(0) rotate(-8deg)
  }

  100% {
    transform: translateX(-50%) rotate(-8deg)
  }
}

/* ===== Layout ===== */
.rr555-appfeatures__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
  align-items: center
}

@media(min-width:900px) {
  .rr555-appfeatures__container {
    grid-template-columns: 1fr 280px 1fr;
    text-align: left
  }
}

/* ===== Columns ===== */
.rr555-appfeatures__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem
}

@media(min-width:900px) {
  .rr555-appfeatures__col--left {
    align-items: flex-end;
    text-align: right
  }

  .rr555-appfeatures__col--right {
    align-items: center;
    text-align: left
  }
}

/* ===== Heading ===== */
.rr555-appfeatures__title {
  text-align: center;
  font-size: clamp(2.1rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0
}

/* ===== Text & Links ===== */
.rr555-appfeatures__text {
  font-size: 1.07rem;
  max-width: 440px;
  margin: 0
}

.rr555-appfeatures__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .22s
}

.rr555-appfeatures__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-appfeatures__link:hover {
  color: #f855ee
}

.rr555-appfeatures__link:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

/* ===== Illustration ===== */
.rr555-appfeatures__figure {
  margin: 0;
  
}

.rr555-appfeatures__img {
  width: 100%;
  border-radius: 22px;
  display: block;
  box-shadow: 0 8px 44px #ffe57328, 0 0 0 2px #f855ee29;
  animation: phone-tilt 10s ease-in-out infinite alternate
}

@keyframes phone-tilt {
  0% {
    transform: rotateY(-7deg)
  }

  100% {
    transform: rotateY(7deg)
  }
}

/* ===== Button ===== */
.rr555-appfeatures__cta {
  margin-top: .6rem
}

.rr555-appfeatures__btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe57319;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.rr555-appfeatures__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.rr555-appfeatures__btn:hover,
.rr555-appfeatures__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.rr555-appfeatures__btn:hover::after {
  animation: btn-sheen 0.6s forwards
}

@keyframes btn-sheen {
  to {
    left: 130%
  }
}

/* ===== Responsive tweaks ===== */
@media(max-width:500px) {
  .rr555-appfeatures__figure {
    width: 130px
  }
}

.rr555-install-split {
  background: #881111;
  position: relative;
  padding: 6.5rem 0 6rem;
  color: #fff;

}

.rr555-install-split__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.2rem
}



/* ===== LEFT IMAGE ===== */
.rr555-install-split__visual {
  position: relative;

  display: flex;
  justify-content: center
}

.rr555-install-split__glow {
  position: absolute;

  border-radius: 50%;
  background: radial-gradient(circle, #f855ee 0%, #ffe57312 70%, transparent 80%);
  animation: glow-pulse 4s ease-in-out infinite alternate;
  z-index: 0
}

@keyframes glow-pulse {
  from {
    transform: scale(.9)
  }

  to {
    transform: scale(1.05)
  }
}

.rr555-install-split__figure {
  margin: 0;
  perspective: 900px;
  z-index: 1
}

.rr555-install-split__img {
  width: 80%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 12px 46px #ffe57325, 0 0 0 3px #f855ee2e;
  animation: tilt 10s ease-in-out infinite alternate
}

@keyframes tilt {
  from {
    transform: rotateY(-10deg)
  }

  to {
    transform: rotateY(10deg)
  }
}

.rr555-install-split__qr {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px #ffe57340;
  animation: qr-bob 2.6s ease-in-out infinite
}

@keyframes qr-bob {
  0% {
    transform: translateY(-5px)
  }

  100% {
    transform: translateY(5px)
  }
}

.rr555-install-split__qrimg {
  width: 74%;
  height: 74%;
  object-fit: contain
}

/* ===== RIGHT CONTENT ===== */
.rr555-install-split__content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem
}

@media(min-width:950px) {
  .rr555-install-split__content {
    align-items: center
  }
}

.rr555-install-split__title {
  font-size: clamp(2.1rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0;
  text-align: center
}

@media(min-width:950px) {
  .rr555-install-split__title {
    text-align: center
  }
}

.rr555-install-split__text {
  font-size: 1.07rem;
  margin: 0;
  text-align: center;
  max-width: 520px
}

@media(min-width:950px) {
  .rr555-install-split__text {
    text-align: center
  }
}

/* ===== BUTTON ===== */
.rr555-install-split__btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe5731b;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.rr555-install-split__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.rr555-install-split__btn:hover,
.rr555-install-split__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.rr555-install-split__btn:hover::after {
  animation: shine .6s forwards
}

@keyframes shine {
  to {
    left: 130%
  }
}

.rr555-bonushero {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;

  overflow: hidden
}

/* === background layers === */
.rr555-bonushero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1
}

.rr555-bonushero__bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) blur(1.5px)
}

.rr555-bonushero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, #881111 20%, #403104cc 80%)
}

.rr555-bonushero__flare {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(36px);
  opacity: .14;
  animation: bonusflare 15s ease-in-out infinite alternate
}

.rr555-bonushero__flare--1 {
  width: 320px;
  height: 220px;
  left: -90px;
  top: 90px;
  background: radial-gradient(circle at 60% 35%, #ffe573 0%, transparent 100%)
}

.rr555-bonushero__flare--2 {
  width: 220px;
  height: 170px;
  right: -80px;
  bottom: -40px;
  background: radial-gradient(circle at 40% 70%, #f855ee 0%, transparent 100%);
  animation-delay: 4s
}

@keyframes bonusflare {
  0% {
    opacity: .12
  }

  100% {
    opacity: .26
  }
}

/* === layout === */
.rr555-bonushero__container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin:  0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.2rem
}

.rr555-bonushero__content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.7rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === text === */
.rr555-bonushero__title {
  font-size: clamp(2.25rem, 5vw, 2.9rem);
  font-weight: 800;
  margin: 0;
  margin-bottom: 20px;
}

.rr555-bonushero__desc {
  font-size: 1.09rem;
  margin: 0
}

/* === image === */
.rr555-bonushero__figure {
  margin: 0;
  width: 200px;
  max-width: 55vw
}

.rr555-bonushero__img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 8px 46px #ffe57330, 0 0 0 3px #f855ee30;
  animation: bonus-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both
}

@keyframes bonus-pop {
  from {
    opacity: 0;
    transform: scale(.88)
  }
}

/* === buttons === */
.rr555-bonushero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%
}

.rr555-bonushero__btn {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1rem 2.4rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .24s, color .24s
}

.rr555-bonushero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-25deg)
}

.rr555-bonushero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #340055;
  box-shadow: 0 4px 24px #ffe5732c
}

.rr555-bonushero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573
}

.rr555-bonushero__btn--main:hover,
.rr555-bonushero__btn--main:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 80%);
  color: #1e1035
}

.rr555-bonushero__btn--ghost:hover,
.rr555-bonushero__btn--ghost:focus {
  background: #ffe573;
  color: #26043b;
  border-color: #f855ee
}

.rr555-bonushero__btn:hover::after {
  animation: bonussheen .7s forwards
}

@keyframes bonussheen {
  to {
    left: 130%
  }
}

/* === responsive buttons === */
@media(min-width:720px) {
  .rr555-bonushero__ctas {
    flex-direction: row;
    justify-content: center;
    gap: 2.3rem
  }

  .rr555-bonushero__figure {
    width: 250px
  }
}

@media(max-width:720px) {
  .rr555-bonushero__figure {
    width: 130px
  }
}

.rr555-welcome {
  position: relative;
  padding: 7rem 0 6rem;
  background: #881111;
  color: #fff;

  text-align: center;
  overflow: hidden
}

/* ===== hex background canvas ===== */
.rr555-welcome__hex {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .08
}

/* ===== confetti ===== */
.rr555-welcome__confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2
}

.confetti {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffe573;
  border-radius: 2px;
  animation: confetti-fall 10s linear infinite
}

.confetti--1 {
  left: 15%;
  animation-delay: 0s
}

.confetti--2 {
  left: 50%;
  animation-delay: 3s
}

.confetti--3 {
  left: 80%;
  animation-delay: 5s
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: .9
  }

  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0
  }
}

/* ===== glow rings ===== */
.rr555-welcome__ring {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .14;
  pointer-events: none;
}

.rr555-welcome__ring--a {
  width: 320px;
  height: 240px;
  left: -140px;
  top: 60px;
  background: radial-gradient(circle, #ffe573 0%, transparent 70%);
  animation: ring-pulse 12s ease-in-out infinite
}

.rr555-welcome__ring--b {
  width: 260px;
  height: 200px;
  right: -120px;
  bottom: -70px;
  background: radial-gradient(circle, #f855ee 0%, transparent 70%);
  animation: ring-pulse-alt 12s ease-in-out infinite
}

@keyframes ring-pulse {
  0% {
    transform: scale(.9)
  }

  100% {
    transform: scale(1.1)
  }
}

@keyframes ring-pulse-alt {
  0% {
    transform: scale(1.1)
  }

  100% {
    transform: scale(.9)
  }
}

/* ===== 3-D cube container ===== */
.rr555-welcome__cube {
  position: relative;
  z-index: 3;
  perspective: 1000px;
  width: 100%;
  display: flex;
  justify-content: center
}

.rr555-welcome__cube-face {
  max-width: 1200px;
  padding: 3rem 1.6rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 42px #ffe5731a;
}

@keyframes cube-tilt {
  0% {
    transform: rotateY(-8deg) rotateX(6deg)
  }

  100% {
    transform: rotateY(8deg) rotateX(-6deg)
  }
}

/* ===== heading & body ===== */
.rr555-welcome__title {
  font-size: clamp(2.1rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 1.2em
}

.rr555-welcome__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem
}

.rr555-welcome__text {
  font-size: 1.07rem;
  margin: 0;
}

.rr555-welcome__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .2s
}

.rr555-welcome__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-welcome__link:hover {
  color: #f855ee
}

.rr555-welcome__link:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

/* ===== image ===== */
.rr555-welcome__figure {
  margin: 0;
  width: 200px;
  max-width: 55vw
}

.rr555-welcome__img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 8px 46px #ffe57333, 0 0 0 3px #f855ee33;
  animation: gift-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both
}

@keyframes gift-pop {
  from {
    opacity: 0;
    transform: scale(.85)
  }
}

/* ===== button ===== */
.rr555-welcome__btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe5731b;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.rr555-welcome__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: skewX(-25deg)
}

.rr555-welcome__btn:hover,
.rr555-welcome__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.rr555-welcome__btn:hover::after {
  animation: btn-glint .6s forwards
}

@keyframes btn-glint {
  to {
    left: 130%
  }
}

/* ===== responsive image size ===== */
@media(max-width:520px) {
  .rr555-welcome__figure {
    width: 140px
  }
}

.rr555-reload {
  background: #42239c;
  position: relative;
  padding: 6.5rem 0 6rem;
  color: #fff;

  text-align: center;
  overflow: hidden
}

/* ===== animated shimmer rings ===== */
.rr555-reload__shimmer {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  opacity: .14;
  pointer-events: none
}

.rr555-reload__shimmer--1 {
  width: 320px;
  height: 240px;
  left: -140px;
  top: 100px;
  background: radial-gradient(circle, #ffe573 0%, transparent 70%);
  animation: shimmer-a 13s ease-in-out infinite
}

.rr555-reload__shimmer--2 {
  width: 260px;
  height: 190px;
  right: -130px;
  bottom: -60px;
  background: radial-gradient(circle, #f855ee 0%, transparent 70%);
  animation: shimmer-b 13s ease-in-out infinite
}

@keyframes shimmer-a {
  0% {
    transform: scale(.9)
  }

  100% {
    transform: scale(1.1)
  }
}

@keyframes shimmer-b {
  0% {
    transform: scale(1.1)
  }

  100% {
    transform: scale(.9)
  }
}

/* ===== grid ===== */
.rr555-reload__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.3rem;
  align-items: center;
  position: relative;
  z-index: 2
}

@media(min-width:920px) {
  .rr555-reload__wrapper {
    flex-direction: row;
    gap: 5rem;
    text-align: center
  }
}

/* ===== left image ===== */
.rr555-reload__visual {

  position: relative
}

.rr555-reload__figure {
  margin: 0
}

.rr555-reload__img {
  width: 100%;
  border-radius: 26px;
  display: block;
  box-shadow: 0 12px 46px #ffe57324, 0 0 0 3px #f855ee29;
  animation: pulseImg 8s ease-in-out infinite alternate
}

@keyframes pulseImg {
  0% {
    transform: scale(.96)
  }

  100% {
    transform: scale(1.04)
  }
}

/* ===== right content ===== */
.rr555-reload__content {

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem
}

@media(min-width:920px) {
  .rr555-reload__content {
    align-items: center
  }
}

.rr555-reload__title {
  font-size: clamp(2.15rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0;
  text-align: center
}

@media(min-width:920px) {
  .rr555-reload__title {
    text-align: center
  }
}

.rr555-reload__text {
  font-size: 1.07rem;
  margin: 0;
  text-align: center
}

@media(min-width:920px) {
  .rr555-reload__text {
    text-align: left
  }
}

/* ===== button ===== */
.rr555-reload__btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  border-radius: 46px;
  border: none;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe5731c;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.rr555-reload__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.rr555-reload__btn:hover,
.rr555-reload__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.rr555-reload__btn:hover::after {
  animation: btnSwipe .6s forwards
}

@keyframes btnSwipe {
  to {
    left: 130%
  }
}

.rr555-vip {
  background: #881111;
  position: relative;
  padding: 7rem 1rem 6.5rem;
  color: #fff;

  text-align: center;
  overflow: hidden
}

/* === floating halo === */
.rr555-vip__halo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1
}

.rr555-vip__halo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed #ffe57338;
  transform: translate(-50%, -50%) rotateX(65deg);
  animation: vip-spin 22s linear infinite
}

.rr555-vip__halo-ring--b {
  border-color: #f855ee38;
  width: 80%;
  height: 80%;
  animation-duration: 30s
}

@keyframes vip-spin {
  to {
    transform: translate(-50%, -50%) rotateX(65deg) rotateZ(360deg)
  }
}

/* === top image === */
.rr555-vip__figure {
  margin: 0 auto 2.8rem auto;

  position: relative;
  z-index: 2
}

.rr555-vip__img {
  width: 60%;
  border-radius: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
  box-shadow: 0 10px 46px #ffe57328, 0 0 0 3px #f855ee30;
  animation: vip-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both
}

@keyframes vip-pop {
  from {
    opacity: 0;
    transform: scale(.85)
  }
}

/* === card === */
.rr555-vip__card {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 28px;
  box-shadow: 0 8px 40px #ffe5731a;
  padding: 3rem 1.8rem 3.2rem;
  backdrop-filter: blur(12px)
}

/* === text === */
.rr555-vip__title {
  font-size: clamp(2.1rem, 4vw, 2.55rem);
  font-weight: 800;
  margin: 0 0 1.25em
}

.rr555-vip__text {
  font-size: 1.08rem;
  margin: 0 auto;
}

/* === button === */
.rr555-vip__btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.6rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe5731c;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.rr555-vip__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: skewX(-25deg)
}

.rr555-vip__btn:hover,
.rr555-vip__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.rr555-vip__btn:hover::after {
  animation: vip-sheen .6s forwards
}

@keyframes vip-sheen {
  to {
    left: 130%
  }
}


.rr555-bonustrans2 {
  background: radial-gradient(ellipse 140% 80% at 50% 0, #be8a00 0, #19061b 100%);
  position: relative;
  padding: 7.5rem 0 6.5rem;
  color: #fff;

  text-align: center;
  overflow: hidden;
}

.rr555-bonustrans2__lines {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* Floating neon icons */
.rr555-bonustrans2__icon {
  position: absolute;
  font-size: 2.2rem;
  opacity: .14;
  z-index: 3;
  filter: blur(1.2px) drop-shadow(0 0 12px #ffe57399);
  animation: icon-float 9s ease-in-out infinite alternate;
}

.rr555-bonustrans2__icon--help {
  left: 11vw;
  top: 16vh;
  color: #ffe573;
  animation-delay: 1s;
}

.rr555-bonustrans2__icon--clock {
  right: 13vw;
  top: 22vh;
  color: #f855ee;
  animation-delay: 3.3s;
}

.rr555-bonustrans2__icon--shield {
  left: 50vw;
  bottom: 7vh;
  color: #fff;
  animation-delay: 5.7s;
}

@keyframes icon-float {
  0% {
    transform: translateY(0) scale(1)
  }

  100% {
    transform: translateY(-22px) scale(1.11)
  }
}

/* Layout */
.rr555-bonustrans2__wrapper {
  position: relative;
  z-index: 4;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.3rem
}

/* Clipboard + visual */
.rr555-bonustrans2__visual {
  margin: 0 auto 1.6rem auto;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rr555-bonustrans2__clip {
  width: 56px;
  height: 22px;
  background: linear-gradient(90deg, #ffe573, #f855ee 90%);
  border-radius: 14px 14px 16px 16px / 8px 8px 20px 20px;
  margin-bottom: -8px;
  box-shadow: 0 2px 10px #ffe57340;
}

.rr555-bonustrans2__clipboard {
  background: rgba(255, 255, 255, .10);
  border-radius: 18px 18px 30px 30px;
  box-shadow: 0 8px 50px #ffe57318, 0 0 0 2px #ffe57322;
  padding: 1.8rem 1rem 1.2rem 1rem;
  position: relative;
  overflow: hidden;
  animation: clipboard-pop 1.05s cubic-bezier(.5, 1.5, .4, 1) both;
}

@keyframes clipboard-pop {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(.82)
  }
}

.rr555-bonustrans2__img {
  object-fit: contain;
  margin-bottom: .8rem;
  z-index: 1;
  border-radius: 1rem;
  position: relative;
  filter: drop-shadow(0 4px 24px #ffe57318);
}

.rr555-bonustrans2__glow {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 100px;
  height: 40px;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: .22;
  background: radial-gradient(ellipse 100% 40% at 50% 60%, #ffe573 0, #f855ee 80%, transparent 100%);
  animation: glow-shimmer 2.7s ease-in-out infinite alternate;
}

@keyframes glow-shimmer {
  0% {
    opacity: .22
  }

  100% {
    opacity: .32
  }
}

/* Text & Button */
.rr555-bonustrans2__content {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem
}

.rr555-bonustrans2__title {
  font-size: 2.3rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #ffe573 20%, #f855ee 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rr555-bonustrans2__text {
  font-size: 1.09rem;
  margin: 0 auto;
  background: rgba(34, 24, 51, .12);
  padding: .9rem 1.1rem;
  border-radius: 12px;
  box-shadow: 0 3px 20px #ffe5730b;
}

.rr555-bonustrans2__btn {
  display: inline-block;
  margin-top: .7rem;
  padding: 1rem 2.3rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #21072d;
  box-shadow: 0 4px 24px #ffe5731b;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.rr555-bonustrans2__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.rr555-bonustrans2__btn:hover,
.rr555-bonustrans2__btn:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 90%);
  color: #32164e
}

.rr555-bonustrans2__btn:hover::after {
  animation: btnshine .6s forwards
}

@keyframes btnshine {
  to {
    left: 130%
  }
}

.rr555-aviatorhero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;

  overflow: hidden
}

.rr555-aviatorhero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden
}

.rr555-aviatorhero__bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45) blur(2px)
}

.rr555-aviatorhero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #881111 20%, #403304e0 80%);
  opacity: 0.96
}

.rr555-aviatorhero__flare {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(36px);
  opacity: .14;
  animation: avflare 17s ease-in-out infinite alternate
}

.rr555-aviatorhero__flare--1 {
  width: 310px;
  height: 210px;
  left: -120px;
  top: 80px;
  background: radial-gradient(circle at 60% 35%, #ffe573 0%, transparent 100%)
}

.rr555-aviatorhero__flare--2 {
  width: 190px;
  height: 150px;
  right: -80px;
  bottom: -50px;
  background: radial-gradient(circle at 40% 70%, #f855ee 0%, transparent 100%);
  animation-delay: 7s
}

@keyframes avflare {
  0% {
    opacity: .12
  }

  100% {
    opacity: .26
  }
}

/* Animated plane */
.rr555-aviatorhero__plane {
  position: absolute;
  top: 42%;
  left: -130px;
  width: 120px;
  height: 60px;
  z-index: 2;
  background: url('img/avia.svg') center/contain no-repeat;
  animation: plane-fly 12s cubic-bezier(.42, 0, .41, 1) infinite;
  pointer-events: none;
  opacity: .85;
}

@keyframes plane-fly {
  0% {
    left: -130px;
    top: 42%;
    transform: scale(1) rotate(-7deg);
  }

  30% {
    left: 35vw;
    top: 36%;
    transform: scale(1.11) rotate(-3deg);
  }

  55% {
    left: 65vw;
    top: 31%;
    transform: scale(1.09) rotate(2deg);
  }

  80% {
    left: 88vw;
    top: 38%;
    transform: scale(1.02) rotate(6deg);
  }

  100% {
    left: 110vw;
    top: 43%;
    transform: scale(.98) rotate(10deg);
  }
}

/* Content */
.rr555-aviatorhero__container {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin:  0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.2rem;
}

.rr555-aviatorhero__content {
  max-width: 750px;
  margin: 0 auto;
  padding: 3.2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rr555-aviatorhero__title {
  font-size: clamp(2.25rem, 5vw, 2.95rem);
  font-weight: 800;
  margin: 0;
  margin-bottom: 20px;
}

.rr555-aviatorhero__desc {
  font-size: 1.09rem;
  margin: 0
}

.rr555-aviatorhero__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .2s;
}

.rr555-aviatorhero__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-aviatorhero__link:hover {
  color: #f855ee
}

.rr555-aviatorhero__link:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

/* CTA Buttons */
.rr555-aviatorhero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%
}

.rr555-aviatorhero__btn {
  display: inline-block;
  font-size: 1.07rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1.1rem 2.4rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.rr555-aviatorhero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-25deg)
}

.rr555-aviatorhero__btn--main {
  background: linear-gradient(90deg, #ffe573 40%, #f855ee 100%);
  color: #2a004b;
  box-shadow: 0 4px 24px #ffe5732c
}

.rr555-aviatorhero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573
}

.rr555-aviatorhero__btn--main:hover,
.rr555-aviatorhero__btn--main:focus {
  background: linear-gradient(90deg, #f855ee 10%, #ffe573 80%);
  color: #1e1035
}

.rr555-aviatorhero__btn--ghost:hover,
.rr555-aviatorhero__btn--ghost:focus {
  background: #ffe573;
  color: #26043b;
  border-color: #f855ee
}

.rr555-aviatorhero__btn:hover::after {
  animation: aviatorsheen .7s forwards
}

@keyframes aviatorsheen {
  to {
    left: 130%
  }
}

/* Responsive layout for CTAs and images */
@media(min-width:720px) {
  .rr555-aviatorhero__ctas {
    flex-direction: row;
    justify-content: center;
  }
}

.rr555-aviatorlux {
  position: relative;
  background: linear-gradient(125deg, #881111 0%, #553e17 85%, #881111 100%);
  padding: 7rem 0 6.5rem 0;
  color: #fff;

  text-align: center;
  overflow: hidden;
}

/* Animated luxury clouds */
.rr555-aviatorlux__cloud {
  position: absolute;
  z-index: 1;
  opacity: .18;
  filter: blur(8px);
  background: radial-gradient(ellipse 70% 50% at 50% 50%, #fff 0%, #ffe57333 70%, transparent 100%);
  animation: cloud-move 23s linear infinite;
}

.rr555-aviatorlux__cloud--1 {
  width: 330px;
  height: 120px;
  top: 7vh;
  left: 10vw;
  animation-delay: 0s;
}

.rr555-aviatorlux__cloud--2 {
  width: 210px;
  height: 70px;
  top: 60vh;
  left: 6vw;
  animation-delay: 5s;
}

.rr555-aviatorlux__cloud--3 {
  width: 260px;
  height: 90px;
  top: 25vh;
  right: 7vw;
  animation-delay: 12s;
}

@keyframes cloud-move {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(80px);
  }
}

/* Sparkle stars */
.rr555-aviatorlux__stars .star {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #ffe573 0 50%, transparent 70%);
  border-radius: 50%;
  opacity: .29;
  z-index: 3;
  animation: sparkle 2.7s ease-in-out infinite alternate;
}

.star--1 {
  top: 22vh;
  left: 14vw;
  animation-delay: 0s;
}

.star--2 {
  top: 33vh;
  left: 49vw;
  animation-delay: 1.2s;
}

.star--3 {
  top: 18vh;
  right: 15vw;
  animation-delay: 0.6s;
}

.star--4 {
  bottom: 23vh;
  left: 35vw;
  animation-delay: 2s;
}

.star--5 {
  bottom: 17vh;
  right: 10vw;
  animation-delay: 1.6s;
}

@keyframes sparkle {
  0% {
    opacity: .13
  }

  100% {
    opacity: .42
  }
}

.rr555-aviatorlux__wrapper {
  position: relative;
  z-index: 5;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.9rem;
  padding: 0 1.2rem;
}

.rr555-aviatorlux__figure {
  margin: 0 auto 1.5rem auto;
  animation: imgfloat 8s ease-in-out infinite alternate;
}

@keyframes imgfloat {
  0% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(18px);
  }
}

.rr555-aviatorlux__img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 12px 48px #ffe57322, 0 0 0 4px #f855ee26;
  display: block;
}

.rr555-aviatorlux__content {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.28rem;
}

.rr555-aviatorlux__title {
  font-size: 2.85rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #ffe573 20%, #fff 60%, #f855ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rr555-aviatorlux__text {
  font-size: 1.1rem;
  margin: 0;
  background: rgba(41, 19, 70, 0.15);
  padding: .95rem 1.3rem;
  border-radius: 15px;
  box-shadow: 0 3px 20px #f855ee1c;
}

.rr555-aviatorlux__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .2s;
  padding: 0 2px;
}

.rr555-aviatorlux__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-aviatorlux__link:hover {
  color: #f855ee;
}

.rr555-aviatorlux__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-aviatorlux__btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  border-radius: 46px;
  border: none;
  font-size: 1.09rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 20%, #f855ee 90%);
  color: #2a004b;
  box-shadow: 0 4px 24px #ffe57322;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s;
}

.rr555-aviatorlux__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-aviatorlux__btn:hover,
.rr555-aviatorlux__btn:focus {
  background: linear-gradient(90deg, #f855ee 15%, #ffe573 90%);
  color: #2e124c;
}

.rr555-aviatorlux__btn:hover::after {
  animation: btnshine 0.6s forwards;
}

@keyframes btnshine {
  to {
    left: 130%
  }
}

@media (min-width:850px) {
  .rr555-aviatorlux__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 2.6rem;
  }

  .rr555-aviatorlux__figure {
    margin: 0 0 0 0;
  }

  .rr555-aviatorlux__content {
    align-items: center;
    
  }
}

.rr555-aviatorsteps {
  position: relative;
  background: linear-gradient(140deg, #881111 0%, #392067 70%, #881111 100%);
  padding: 7rem 0 6.7rem 0;
  color: #fff;

  overflow: hidden;
  text-align: center;
}

/* Neon Runway Lines */
.rr555-aviatorsteps__runway {
  position: absolute;
  left: 50%;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #ffe573cc 10%, #f855ee33 80%, transparent 100%);
  border-radius: 18px;
  transform: translateX(-50%) skewX(-8deg);
  box-shadow: 0 0 40px 8px #ffe57366;
  z-index: 1;
  opacity: .13;
  animation: runwaypulse 4.2s linear infinite alternate;
}

.rr555-aviatorsteps__runway--2 {
  left: 52.2%;
  width: 4px;
  opacity: .07;
  animation-delay: 2.2s;
}

@keyframes runwaypulse {
  0% {
    filter: blur(0px);
  }

  100% {
    filter: blur(10px);
  }
}

/* Golden floating dots */
.rr555-aviatorsteps__golden .dot {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #ffe573 30%, #fff 70%, transparent 100%);
  border-radius: 50%;
  opacity: .23;
  z-index: 2;
  animation: dotfloat 8s ease-in-out infinite alternate;
}

.dot--1 {
  top: 12vh;
  left: 18vw;
  animation-delay: 0.7s;
}

.dot--2 {
  top: 55vh;
  left: 10vw;
  animation-delay: 2.2s;
}

.dot--3 {
  top: 32vh;
  left: 47vw;
  animation-delay: 1.6s;
}

.dot--4 {
  top: 21vh;
  right: 14vw;
  animation-delay: 3.1s;
}

.dot--5 {
  bottom: 12vh;
  right: 18vw;
  animation-delay: 1.2s;
}

@keyframes dotfloat {
  0% {
    opacity: .18;
    transform: scale(1) translateY(0);
  }

  100% {
    opacity: .35;
    transform: scale(1.11) translateY(-16px);
  }
}

/* Container/Stacked Layout */
.rr555-aviatorsteps__container {
  position: relative;
  z-index: 5;
  max-width: 1190px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: 0 1.2rem;
}

.rr555-aviatorsteps__figure {
  margin: 0 auto 2.1rem auto;
  animation: imgupdown 9s ease-in-out infinite alternate;
}

@keyframes imgupdown {
  0% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(19px);
  }
}

.rr555-gamestyle__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 20px;
}

.rr555-gamestyle__card {
  background: #ffffff52;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rr555-gamestyle__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.rr555-gamestyle__card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.rr555-gamestyle__card-text {
  font-size: 1rem;
  line-height: 1.5;
}

.rr555-gamestyle__cta {
  text-align: center;
  margin: 2.5rem 0 1rem;
}

.rr555-gamestyle__btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: #ff5a5f;
  color: #ffffff;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.rr555-gamestyle__btn:hover {
  background-color: #e04848;
}

.rr555-gamestyle__figure {
  margin-top: 2rem;
  text-align: center;
}

.rr555-gamestyle__img {
  max-width: 100%;
  border-radius: 8px;
}


.rr555-aviatorsteps__img {
  width: 70%;
  border-radius: 22px;
  box-shadow: 0 12px 46px #ffe57322, 0 0 0 4px #f855ee29;
  display: block;
}

.rr555-aviatorsteps__content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.rr555-aviatorsteps__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #ffe573 20%, #fff 60%, #f855ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5em;
}

.rr555-aviatorsteps__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em 0;
  display: flex;
  flex-direction: column;
  gap: 1.13em;
  width: 100%;
}

.rr555-aviatorsteps__steps li {
  font-size: 1.08rem;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 1.1em 1.4em;
  box-shadow: 0 2px 14px #ffe5730d;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.rr555-aviatorsteps__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .2s;
  padding: 0 2px;
}

.rr555-aviatorsteps__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-aviatorsteps__link:hover {
  color: #f855ee;
}

.rr555-aviatorsteps__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-aviatorsteps__info {
  font-size: 1.04rem;
  color: #ffe573;
  margin: .5em auto 0 auto;
  background: rgba(80, 0, 70, .13);
  border-radius: 10px;
  padding: .76em 1.2em;
  box-shadow: 0 2px 10px #ffe5730b;
  max-width: 430px;
}

.rr555-aviatorsteps__btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #2a004b;
  box-shadow: 0 4px 24px #ffe57322;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.rr555-aviatorsteps__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-aviatorsteps__btn:hover,
.rr555-aviatorsteps__btn:focus {
  background: linear-gradient(90deg, #f855ee 15%, #ffe573 90%);
  color: #2e124c;
}

.rr555-aviatorsteps__btn:hover::after {
  animation: btnshine 0.6s forwards;
}

@keyframes btnshine {
  to {
    left: 130%
  }
}

/* Responsive for mobile: Stack, center text */
@media (max-width:680px) {

  .rr555-aviatorsteps__steps li {
    padding: 1.1em 0.8em;
  }

  .rr555-aviatorsteps__container {
    padding: 0 0.5rem;
  }
}

.rr555-aviatorwhy {
  position: relative;
  background: linear-gradient(140deg, #881111 0%, #372202 85%, #881111 100%);
  padding: 7rem 0 6.5rem 0;
  color: #fff;

  text-align: center;
  overflow: hidden;
}

.rr555-aviatorwhy__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 85% 65% at 52% 19%, #ffe57322 0%, #f855ee18 48%, transparent 100%);
}

.rr555-aviatorwhy__flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .16;
  pointer-events: none;
}

.rr555-aviatorwhy__flare--1 {
  width: 210px;
  height: 120px;
  left: 12vw;
  top: 13vh;
  background: radial-gradient(circle, #ffe573 0%, transparent 70%);
  animation: why-flare 11s linear infinite alternate;
}

.rr555-aviatorwhy__flare--2 {
  width: 140px;
  height: 80px;
  right: 8vw;
  bottom: 10vh;
  background: radial-gradient(circle, #f855ee 0%, transparent 80%);
  animation: why-flare 14s linear infinite alternate-reverse;
}

@keyframes why-flare {
  0% {
    opacity: .14;
  }

  100% {
    opacity: .24;
  }
}

.rr555-aviatorwhy__wrapper {
  position: relative;
  z-index: 5;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: 0 1.2rem;
}

.rr555-aviatorwhy__figure {
  margin: 0 auto 2.2rem auto;
  
  max-width: 46vw;
  animation: img-why-float 8s ease-in-out infinite alternate;
}

@keyframes img-why-float {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(13px);
  }
}

.rr555-aviatorwhy__img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 12px 48px #ffe57320, 0 0 0 3px #f855ee21;
  display: block;
}

.rr555-aviatorwhy__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  width: 100%;
}

@media (min-width:600px) {
  .rr555-aviatorwhy__cards {
    grid-template-columns: 1fr 1fr;
  }
}

.rr555-aviatorwhy__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  box-shadow: 0 2px 24px #ffe57315;
  padding: 2.3rem 1.1rem 1.4rem 1.3rem;
  gap: 1.1rem;
  transition: transform .23s, box-shadow .23s;
  position: relative;
  overflow: hidden;
  border: 1.2px solid #ffe57328;
  justify-content: flex-start;
  min-height: 138px;
  animation: card-pop 1.08s cubic-bezier(.4, 1.3, .4, 1) both;
}

.rr555-aviatorwhy__card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 6px 40px #f855ee26, 0 0 0 2px #ffe57322;
}

@keyframes card-pop {
  from {
    opacity: 0;
    transform: scale(.92) translateY(24px);
  }
}

.rr555-aviatorwhy__icon {
  flex: 0 0 auto;
  font-size: 2.3rem;
  color: #ffe573;
  margin-right: .32em;
  margin-top: .15em;
  text-shadow: 0 2px 18px #ffe57333;
  background: linear-gradient(135deg, #ffe573, #f855ee 66%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px #ffe57322);
}

.rr555-aviatorwhy__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rr555-aviatorwhy__mark {
  font-weight: 700;
  color: #ffe573;
  padding-left: 10px;
  border-left: 2px solid grey;
  display: inline-block;
  margin-bottom: .16em;
  font-size: 1.1rem;
}

.rr555-aviatorwhy__text {
  font-size: 1.07rem;
  color: #fff;
  margin: 0;
  display: inline-block;
}

.rr555-aviatorwhy__btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 10%, #f855ee 90%);
  color: #2a004b;
  box-shadow: 0 4px 24px #ffe57320;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.rr555-aviatorwhy__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-aviatorwhy__btn:hover,
.rr555-aviatorwhy__btn:focus {
  background: linear-gradient(90deg, #f855ee 15%, #ffe573 90%);
  color: #2e124c;
}

.rr555-aviatorwhy__btn:hover::after {
  animation: btnshine 0.6s forwards;
}

@keyframes btnshine {
  to {
    left: 130%
  }
}

@media (max-width:480px) {
  .rr555-aviatorwhy__figure {
    width: 130px
  }

  .rr555-aviatorwhy__cards {
    gap: 1.18rem;
  }

  .rr555-aviatorwhy__card {
    padding: 1.7rem 0.7rem 1rem 0.7rem;
  }
}

.rr555-crazyhero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden
}

/* === Stage spotlights === */
.rr555-crazyhero__spot {
  position: absolute;
  background: radial-gradient(circle at 50% 0,
      #ffe57366 0%, transparent 70%);
  opacity: .14;
  pointer-events: none;
  z-index: 2;
  transform-origin: top;
}

.rr555-crazyhero__spot--l {
  left: -20vw;
  top: -10vh;
  transform: rotate(-20deg);
}

.rr555-crazyhero__spot--r {
  right: -20vw;
  top: -10vh;
  transform: rotate(20deg);
}

/* === Confetti strips === */
.rr555-crazyhero__confetti {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none
}

.strip {
  position: absolute;
  width: 6px;
  height: 22px;
  background: #ffe573;
  border-radius: 2px;
  filter: drop-shadow(0 0 6px #ffe573aa);
  opacity: .8;
  animation: strip-fall 8s linear infinite;
}

.strip--1 {
  left: 15%;
  animation-delay: 0s;
}

.strip--2 {
  left: 42%;
  animation-delay: 1.7s;
}

.strip--3 {
  left: 68%;
  animation-delay: 3.1s;
}

.strip--4 {
  left: 83%;
  animation-delay: 5.2s;
}

.strip--5 {
  left: 55%;
  animation-delay: 6.4s;
}

@keyframes strip-fall {
  0% {
    top: -10vh;
    transform: rotate(0)
  }

  100% {
    top: 110vh;
    transform: rotate(360deg)
  }
}

/* === Background image === */
.rr555-crazyhero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden
}

.rr555-crazyhero__bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) blur(1.5px)
}

.rr555-crazyhero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #881111 0%, #881111 90%);
  opacity: .9
}

/* === Container === */
.rr555-crazyhero__container {
  position: relative;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 20px;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
align-items: center;
  width: 100%;
  padding: 3rem 1.2rem;
}

/* === Headline & copy === */
.rr555-crazyhero__title {
  font-size: clamp(2.3rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 20px;
}

.rr555-crazyhero__desc {
  font-size: 1.09rem;
  margin: 0 auto
}

.rr555-crazyhero__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .22s;
}

.rr555-crazyhero__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-crazyhero__link:hover {
  color: #f855ee
}

.rr555-crazyhero__link:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

/* === Wheel illustration === */
.rr555-crazyhero__figure {
  margin: 2.2rem auto 2.4rem;
  width: 230px;
  max-width: 55vw
}

.rr555-crazyhero__img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 10px 50px #ffe57328, 0 0 0 3px #f855ee34;
  animation: wheel-pop 1.1s cubic-bezier(.52, 1.6, .44, 1) both;
}

@keyframes wheel-pop {
  from {
    opacity: 0;
    transform: scale(.85)
  }
}

/* === Buttons === */
.rr555-crazyhero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem
}

.rr555-crazyhero__btn {
  display: inline-block;
  font-size: 1.07rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 1.05rem 2.6rem;
  border-radius: 48px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .24s, color .24s
}

.rr555-crazyhero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .21), transparent);
  transform: skewX(-25deg)
}

.rr555-crazyhero__btn--main {
  background: linear-gradient(90deg, #ffe573 35%, #f855ee 100%);
  color: #2a004b;
  box-shadow: 0 4px 24px #ffe57330
}

.rr555-crazyhero__btn--ghost {
  background: none;
  color: #fff;
  border: 2px solid #ffe573
}

.rr555-crazyhero__btn--main:hover,
.rr555-crazyhero__btn--main:focus {
  background: linear-gradient(90deg, #f855ee 15%, #ffe573 85%);
  color: #210541
}

.rr555-crazyhero__btn--ghost:hover,
.rr555-crazyhero__btn--ghost:focus {
  background: #ffe573;
  color: #28033d;
  border-color: #f855ee
}

.rr555-crazyhero__btn:hover::after {
  animation: crazy-sheen .7s forwards
}

@keyframes crazy-sheen {
  to {
    left: 130%
  }
}

@media(min-width:720px) {
  .rr555-crazyhero__ctas {
    margin-top: 20px;
    flex-direction: row;
    justify-content: center;
    gap: 1.3rem
  }

}

@media(max-width:720px) {
  .rr555-crazyhero__figure {
    width: 150px
  }
}

.rr555-crazywhy2 {
  position: relative;
  background: linear-gradient(135deg, #2f2107 0%, #881111 80%);
  padding: 6.5rem 0 6rem;
  color: #fff;

  overflow: hidden;
}

/* flares */
.rr555-crazywhy2__flare {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: .12;
  pointer-events: none;
  animation: flare-pulse 12s ease-in-out infinite alternate;
}

.rr555-crazywhy2__flare--left {
  width: 260px;
  height: 180px;
  left: -80px;
  top: 20%;
  background: radial-gradient(circle, #ffe573 0%, transparent 80%);
}

.rr555-crazywhy2__flare--right {
  width: 200px;
  height: 140px;
  right: -60px;
  bottom: 15%;
  background: radial-gradient(circle, #f855ee 0%, transparent 85%);
  animation-delay: 6s;
}

@keyframes flare-pulse {
  0% {
    opacity: .08;
  }

  100% {
    opacity: .20;
  }
}

/* wrapper */
.rr555-crazywhy2__wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
  padding: 0 1.2rem;
}

@media(min-width:900px) {
  .rr555-crazywhy2__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* visual */

.rr555-crazywhy2__figure {
  margin: 0 auto;
  animation: img-float 8s ease-in-out infinite alternate;
}

@keyframes img-float {
  0% {
    transform: translateY(-12px) scale(1);
  }

  100% {
    transform: translateY(12px) scale(1.02);
  }
}

.rr555-crazywhy2__img {
  border-radius: 22px;
  
  display: block;
}

/* content */
.rr555-crazywhy2__content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.rr555-crazywhy2__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* title */
.rr555-crazywhy2__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #ffe573 20%, #f855ee 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* text paragraphs */
.rr555-crazywhy2__text p {
  font-size: 1.08rem;
  margin: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  box-shadow: 0 2px 16px #ffe57310;
}

/* links */
.rr555-crazywhy2__link {
  color: #ffe573;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: color .23s;
}

.rr555-crazywhy2__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-crazywhy2__link:hover {
  color: #f855ee;
}

.rr555-crazywhy2__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* button */
.rr555-crazywhy2__cta {
  margin-top: 1.8rem;
}

.rr555-crazywhy2__btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  font-size: 1.07rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  border-radius: 44px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #ffe573 15%, #f855ee 90%);
  color: #2a004b;
  box-shadow: 0 4px 22px #ffe5731a;
  position: relative;
  overflow: hidden;
  transition: background .24s, color .24s;
}

.rr555-crazywhy2__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg);
}

.rr555-crazywhy2__btn:hover,
.rr555-crazywhy2__btn:focus {
  background: linear-gradient(90deg, #f855ee 15%, #ffe573 85%);
  color: #1e0f37;
}

.rr555-crazywhy2__btn:hover::after {
  animation: btn-sheen 0.6s forwards;
}

@keyframes btn-sheen {
  to {
    left: 130%;
  }
}

/* disable line-height globally in this section */
.rr555-crazywhy2,
.rr555-crazywhy2 * {
  line-height: 1 !important;
  padding: 2px;
}

.rr555-wheelinfo {
  position: relative;
  background: #881111;
  padding: 7rem 0 6.5rem;
  color: #fff;
  text-align: center;
  overflow: hidden
}

/* Aurora ribbons */
.rr555-wheelinfo__aurora {
  position: absolute;
  width: 120%;
  height: 220%;
  top: -60%;
  left: -10%;
  background: conic-gradient(from 120deg at 50% 50%, #ffe573 0 20%, #f8ee55 40%, transparent 100%);
  opacity: .08;
  filter: blur(80px);
  animation: aurora-spin 20s linear infinite;
  transform-origin: center;
}

.rr555-wheelinfo__aurora--r {
  animation-direction: reverse;
  left: auto;
  right: -10%
}

@keyframes aurora-spin {
  to {
    transform: rotate(360deg)
  }
}

/* Layout */
.rr555-wheelinfo__container {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem
}

@media(min-width:900px) {
  .rr555-wheelinfo__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: flex-start;
    gap: 2rem;
    text-align: left;
    margin-bottom: 20px;
  }
}

/* Columns */
.rr555-wheelinfo__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.rr555-wheelinfo__col--center {
  flex: 0 0 auto
}

@media(min-width:900px) {
  .rr555-wheelinfo__col--left {
    align-items: flex-end
  }

  .rr555-wheelinfo__col--right {
    align-items: center
  }
}

/* Image */
.rr555-wheelinfo__figure {
  margin: 0;
  perspective: 900px
}

.rr555-wheelinfo__img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 12px 52px #ffe57326, 0 0 0 3px #f855ee28;
}

@keyframes wheel-tilt {
  0% {
    transform: rotateY(-9deg)
  }

  100% {
    transform: rotateY(9deg)
  }
}

.rr555-bonuscards__content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Text boxes */
.rr555-wheelinfo__box {
  font-size: 1.07rem;
  background: rgba(255, 255, 255, .05);
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 3px 22px #ffe57312;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rr555-wheelinfo__mark {
  padding-left: 10px;
  border-left: 2px solid grey;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #ffe573
}

.rr555-wheelinfo__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .22s
}

.rr555-wheelinfo__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-wheelinfo__link:hover {
  color: #f855ee
}

.rr555-wheelinfo__link:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

/* CTA Button */
.rr555-wheelinfo__cta {
  margin-top: .4rem
}

.rr555-wheelinfo__btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  border-radius: 46px;
  border: none;
  cursor: pointer;
  font-size: 1.07rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 15%, #f855ee 90%);
  color: #2a004b;
  box-shadow: 0 4px 24px #ffe57320;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.rr555-wheelinfo__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.rr555-wheelinfo__btn:hover,
.rr555-wheelinfo__btn:focus {
  background: linear-gradient(90deg, #f855ee 20%, #ffe573 90%);
  color: #1e1035
}

.rr555-wheelinfo__btn:hover::after {
  animation: btn-sheen .6s forwards
}

@keyframes btn-sheen {
  to {
    left: 130%
  }
}

/* Remove line-height for precision */
.rr555-wheelinfo,
.rr555-wheelinfo * {
  line-height: 1 !important;
  padding: 2px;
}

.rr555-bonuscards {
  position: relative;
  background: #881111;
  padding: 7rem 1.2rem 6rem;
  color: #fff;
  text-align: center;
  overflow: hidden
}

/* Sparks */
.rr555-bonuscards__spark {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: .14;
  pointer-events: none;
  animation: spark-move 18s linear infinite alternate
}

.rr555-bonuscards__spark--1 {
  width: 180px;
  height: 130px;
  left: 10vw;
  top: 18vh;
  background: #ffe573
}

.rr555-bonuscards__spark--2 {
  width: 150px;
  height: 110px;
  right: 12vw;
  top: 32vh;
  background: #f855ee;
  animation-delay: 4s
}

.rr555-bonuscards__spark--3 {
  width: 200px;
  height: 140px;
  left: 45vw;
  bottom: 10vh;
  background: #ffe573;
  animation-delay: 8s
}

.rr555-install-split__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.rr555-install-split__card {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(255 255 255 / 67%);
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rr555-install-split__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.rr555-install-split__card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.rr555-install-split__card-text {
  font-size: 0.95rem;
  line-height: 1.4;
}

.rr555-install-split__help {
  margin: 1rem 0;
  font-size: 0.95rem;
}

.rr555-install-split__img-bottom {
  max-width: 100%;
  display: block;
  margin: 1rem auto;
  border-radius: 6px;
}

.rr555-install-split__btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ff5a5f;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
  margin-top: 0.5rem;
}

.rr555-install-split__btn:hover {
  background-color: #e04848;
}


@keyframes spark-move {
  0% {
    transform: scale(.9)
  }

  100% {
    transform: scale(1.15)
  }
}

/* Heading */
.rr555-bonuscards__heading {
  font-size: clamp(2.2rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 2.4rem;
  background: linear-gradient(90deg, #ffe573 20%, #f855ee 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* Grid */
.rr555-bonuscards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.6rem;
  max-width: 1100px;
  margin: 0 auto
}

/* Card */
.rr555-bonuscards__card {
  background: rgba(255, 255, 255, .05);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 38px #ffe57314;
  border: 1px solid #ffe57320;
  transition: transform .25s, box-shadow .25s;
  position: relative
}

.rr555-bonuscards__card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 46px #f855ee26, 0 0 0 2px #ffe57326
}

/* Card Image */
.rr555-bonuscards__fig {
  margin: 0;
  overflow: hidden
}

.rr555-bonuscards__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .32s
}

.rr555-bonuscards__card:hover .rr555-bonuscards__img {
  transform: scale(1.08)
}

/* Card Body */
.rr555-bonuscards__body {
  padding: 1.6rem 1.3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.rr555-bonuscards__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  align-items: center;
}

/* Mark styling */
.rr555-bonuscards__tag {
  padding-left: 10px;
  border-left: 2px solid grey;
  font-weight: 700;
  color: #ffe573;
  font-size: 1.12rem
}

.rr555-bonuscards__text {
  font-size: 1.03rem;
  margin: 0
}

/* Link inside text */
.rr555-bonuscards__link {
  color: #ffe573;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .22s
}

.rr555-bonuscards__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #ff2d6e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-bonuscards__link:hover {
  color: #f855ee
}

.rr555-bonuscards__link:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

/* CTA Button */
.rr555-bonuscards__btn {
  display: inline-block;
  
  padding: 1rem 2.8rem;
  border-radius: 48px;
  border: none;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #ffe573 15%, #f855ee 90%);
  color: #29014b;
  box-shadow: 0 4px 24px #ffe57320;
  position: relative;
  overflow: hidden;
  transition: background .23s, color .23s
}

.rr555-bonuscards__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-25deg)
}

.rr555-bonuscards__btn:hover,
.rr555-bonuscards__btn:focus {
  background: linear-gradient(90deg, #f855ee 20%, #ffe573 90%);
  color: #1e103c
}

.rr555-bonuscards__btn:hover::after {
  animation: btn-sheen .6s forwards
}

@keyframes btn-sheen {
  to {
    left: 130%
  }
}

/* Prevent line-height */
.rr555-bonuscards,
.rr555-bonuscards * {
  line-height: 1 !important;
  padding: 2px;
}

/* Container & Background */
.rr555-journey {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: #cc9634;
  color: #f5f5f5;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.rr555-journey__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Animated Waves */
.rr555-journey__wave {
  position: absolute;
  width: 160%;
  height: 120%;
  background: rgba(255,255,255,0.02);
  border-radius: 50% 50% 40% 60%;
  animation: wave-move 12s ease-in-out infinite;
}

.rr555-journey__wave--one {
  top: -30%;
  left: -40%;
  animation-delay: 0s;
}
.rr555-journey__wave--two {
  top: -40%;
  left: 20%;
  animation-delay: 6s;
}

@keyframes wave-move {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-10%, 10%) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Spark Canvas (if used) */
#journeySpark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Content Wrapper */
.rr555-journey__wrap {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.rr555-journey__header {
  text-align: center;
  margin-bottom: 40px;
}
.rr555-journey__title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}
.rr555-journey__intro {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,0.85);
}

/* Cards Grid */
.rr555-journey__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

/* Individual Card */
.rr555-journey__card {
  background: #1b1b2e;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rr555-journey__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}

/* Card Image */
.rr555-journey__card-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 16px;
}

/* Card Title & Text */
.rr555-journey__card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #ffcc00; /* Brand accent */
}
.rr555-journey__card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e0e0e0;
}

/* Inline Links */
.rr555-journey__link {
  color: #ffcc00;
  text-decoration: none;
  border-bottom: 1px dashed #ffcc00;
  transition: color 0.2s ease;
}
.rr555-journey__link:hover {
  color: #fff;
  border-bottom-style: solid;
}

/* CTA Button */
.rr555-journey__cta {
  text-align: center;
}
.rr555-journey__btn {
  display: inline-block;
  background: #ffcc00;
  color: #0f0f1a;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.rr555-journey__btn:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .rr555-journey__title {
    font-size: 2rem;
  }
  .rr555-journey__cards {
    gap: 16px;
  }
}

/* Grid container for the three feature cards */
.rr555-gamesec__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

/* Individual card styling */
.rr555-gamesec__card {
  background: #1b1b2e;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rr555-gamesec__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}

/* Card image */
.rr555-gamesec__card-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 16px;
}

/* Card headline */
.rr555-gamesec__card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #ffcc00;
}

/* Card descriptive text */
.rr555-gamesec__card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e0e0e0;
}

/* Inline links inside cards */
.rr555-gamesec__link {
  color: #ffcc00;
  text-decoration: none;
  border-bottom: 1px dashed #ffcc00;
  transition: color 0.2s ease;
}
.rr555-gamesec__link:hover {
  color: #ffffff;
  border-bottom-style: solid;
}

.imaj {
  margin-bottom: 20px;
}

/* CTA button */
.rr555-gamesec__btn {
  display: inline-block;
  background: #ffcc00;
  color: #0f0f1a;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.rr555-gamesec__btn:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

/* Section wrapper */
.rr555-standard {
  background: #881111;
  color: #f5f5f5;
  padding: 80px 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Centered container */
.rr555-standard__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Two-column layout */
.rr555-standard__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 40px;
}

/* Content column */
.rr555-standard__content {
  z-index: 1;
}

/* Section title */
.rr555-standard__title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffcc00;
}

/* Paragraph text */
.rr555-standard__text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgba(245, 245, 245, 0.9);
}

/* Inline links */
.rr555-standard__link {
  color: #ffcc00;
  text-decoration: none;
  border-bottom: 1px dashed #ffcc00;
  transition: color 0.2s ease;
}
.rr555-standard__link:hover {
  color: #ffffff;
  border-bottom-style: solid;
}

/* Call-to-action wrapper */
.rr555-standard__cta {
  margin-top: 24px;
}

/* CTA button */
.rr555-standard__btn {
  display: inline-block;
  background: #ffcc00;
  color: #0f0f1a;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.rr555-standard__btn:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

/* Illustration column */
.rr555-standard__figure {
  text-align: center;
}
.rr555-standard__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .rr555-standard {
    padding: 60px 16px;
  }
  .rr555-standard__title {
    font-size: 1.75rem;
  }
  .rr555-standard__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}




















/* ===== base ===== */
.zfooter {
  background: #2f0000;
  color: #d9d7e5;
  font-size: .95rem;
  padding: 60px 6vw 90px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* 1 ▸ logo + nav */
.zfooter__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 28px
}

.zfooter__logo img {
  width: 160px
}

.zfooter__links {
  display: flex;
  gap: 24px;
  list-style: none;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap
}

.zfooter__links a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s
}

.zfooter__links a:hover {
  color: #fff
}

.zfooter__care {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 2 ▸ legal */
.zfooter__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center
}

.zfooter__age {
  font-weight: 900;
  color: #ff8540;
  display: flex;
  align-items: center;
  gap: 6px
}

.zfooter__age-text {
  margin: 0;
  font-size: .9rem;
  color: #bcb8d2
}

.zfooter__care a {
  color: #6aa8ff;
  margin-right: 18px;
  width: 130px;
  text-decoration: none
}

.zfooter__care a:hover {
  color: #fff
}

/* 3 ▸ payments */
.zfooter__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center
}

.zfooter__payments i,
.zfooter__payments img,
.zfooter__crypto {
  font-size: 1.5rem;
  color: #ffb866;
  height: 42px;
  width: 42px;
  border-radius: 1rem;
  object-fit: contain;
  background-color: white;
  padding: 2px;
  display: flex;
  align-items: center
}

.zfooter__crypto {
  font-size: .85rem;
  font-weight: 800;
  padding: 6px 10px;
  border: 1px solid #ffb866;
  border-radius: 6px
}

/* divider (mobile only) */
.zfooter__divider {
  border: none;
  border-top: 1px solid #242235;
  display: none;
  margin: 16px 0
}

/* 4 ▸ socials */
.zfooter__social {
  display: flex;
  gap: 18px;
  justify-content: center
}

.zfooter__social a {
  color: #bcb8d2;
  font-size: 1.9rem;
  transition: color .2s
}

.zfooter__social a:hover {
  color: #ffb866
}

/* 5 ▸ closing */
.zfooter__closing {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.zfooter__closing-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fffffe;
  margin: 0
}

.zfooter__closing-text {
  margin: 0;
  color: #bcb8d2;

}

/* ===== responsive ===== */
@media(max-width:900px) {

  .zfooter__top,
  .n7gp-zones {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .zfooter__legal {
    align-items: center;
    text-align: center
  }
}

@media(max-width:768px) {

  /* center everything */
  .zfooter__payments,
  .zfooter__care {
    justify-content: center
  }



  .hero-body,
  .rr555-reload__wrapper,
  .rr555-crazywhy2__wrapper,
  .rr555-slotshowto__tablist,
  .rr555-gamestyle__grid {
    display: flex;
    flex-direction: column;
  }

  .rr555-whyus__container {
    grid-template-columns: 1fr;
  }

  .feature {
    justify-content: center;
  }

  .zfooter__divider {
    display: block
  }
}


.rr555-hotnow__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.rr555-hotnow__card {
  background: #881111;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rr555-hotnow__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

.rr555-hotnow__card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.rr555-hotnow__card-text {
  font-size: 1rem;
  line-height: 1.5;}

.rr555-hotnow__intro {
  font-size: 1rem;
  margin-top: 1rem;
}

.rr555-hotnow__cta {
  text-align: center;
  margin: 2rem 0 1rem;
}

.rr555-hotnow__btn {
  display: inline-block;
  background-color: #ff5a5f;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.rr555-hotnow__btn:hover {
  background-color: #e04848;
}

.rr555-hotnow__figure {
  margin: 2rem 0;
  text-align: center;
}

.rr555-hotnow__img {
  max-width: 100%;
  border-radius: 8px;
}


/* ========== n7lg – “Login Hero” Luxury Section ========== */



.banner {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ========== n7fixed-bonus-banner ========== */
.n7fixed-bonus-banner {
  position: fixed;

  bottom: 0;
  width: 100%;
  z-index: 1010;
  background: rgb(56 56 56 / 58%);
  color: #ffffff;

  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 20px 30px;
  border: none;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 -2px 16px #00e79a33, 0 2px 20px #0009;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
  cursor: pointer;
  user-select: none;
  z-index: 1111111111111111111111111111;
  /* Disable highlight on tap in mobile */
  -webkit-tap-highlight-color: transparent;

}

.n7fixed-bonus-banner:hover,
.n7fixed-bonus-banner:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  color: #181a10;
  transform: scale(1.01);
  box-shadow: 0 -4px 24px #ffd70055, 0 2px 30px #00e79a22;
}

@media (max-width: 767px) {
  .n7fixed-bonus-banner {
    font-size: 1.08rem;
    padding: 17px 0 15px 0;
  }
}



.prpr {
  width: 18px;
  backdrop-filter: invert(1);
  mask-image: white;
  border-radius: 100%;
}

.prpe {
  width: 18px;
  background-color: white;
  padding: 1px;
  fill: white;
  border-radius: 100%;
}

.rr555-reload__text li {
  text-align: center;
}



.gam a img {
  max-width: 70px;
}

.cirle {
  border-radius: 100%;
  background-color: red;
  color: white;
  font-size: 30px;
  padding: 12px;
}

.dnone {
  display: none;
}


.rr555-vip__text li{
  text-align: center;
}

[class*="btn"]:not([class*="banner"],[class*="--ghost"],[class*="--outline"]) {
  background: linear-gradient(125deg, #881111 0%, #3f324e 100%);
  color: #fff;
  border: none;
  border-radius: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.7em 2.4em;
  box-shadow: 0 2px 24px #0e60c744, 0 1.5px 4.5px #2a4660c9;
  filter: drop-shadow(0 1px 10px #a0d9ff50);
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.22s cubic-bezier(.18,.78,.33,1.12),
    transform 0.18s cubic-bezier(.33,1.2,.62,1.07),
    background 0.28s;
  z-index: 1;
}
[class*="btn"]:not([class*="banner"],[class*="--ghost"],[class*="--outline"]):hover,
[class*="btn"]:not([class*="banner"],[class*="--ghost"],[class*="--outline"]):focus {
  background: linear-gradient(163deg,rgba(19, 107, 44, 1) 0%, rgba(0, 148, 17, 1) 100%);
  color: #fff;
  box-shadow: 0 8px 44px #216bff77, 0 2px 16px #7dd2f3b0;
  transform: scale(1.09) translateY(-2px);
}

[class*="btn"]:not([class*="banner"],[class*="--ghost"],[class*="--outline"]):active {
  background: linear-gradient(107deg, #2b5fc9 10%, #5bb5ff 90%);
  transform: scale(0.98) translateY(2px);
  box-shadow: 0 2px 10px #1850a660;
}

/* Ripple effect on click */
[class*="btn"]:not([class*="banner"],[class*="--ghost"],[class*="--outline"])::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  left: 50%;
  top: 50%;
  background: rgba(255,255,255,0.21);
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.22s, transform 0.6s cubic-bezier(.35,2.05,.45,.97);
}

[class*="btn"]:not([class*="banner"],[class*="--ghost"],[class*="--outline"]):active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(16);
  transition: opacity 0.22s, transform 0.36s cubic-bezier(.32,2.2,.55,.99);
}


[class*="btn--ghost"], [class*="btn--outline"] {
  background: transparent;
  color: #34a4e5;
  border: 2.2px solid;
  border-image: linear-gradient(97deg, #63e2ff 10%, #3b7cff 90%) 1;
  border-radius: 16px;
  font-weight: 600;
  padding: 0.7em 2.1em;
  letter-spacing: 0.06em;
  box-shadow: 0 1.5px 12px #0098fa13;
  transition:
    color 0.23s,
    border-image 0.6s,
    background 0.2s,
    box-shadow 0.18s cubic-bezier(.38,1.4,.44,1.06),
    transform 0.16s cubic-bezier(.37,1.14,.54,1.01);
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: ghost-rainbow-move 5s linear infinite;
}
@keyframes ghost-rainbow-move {
  0%   { border-image-source: linear-gradient(98deg, #63e2ff 10%, #3b7cff 90%); }
  50%  { border-image-source: linear-gradient(272deg, #7dcbfc 40%, #f9f5fb 80%, #3b7cff 100%); }
  100% { border-image-source: linear-gradient(98deg, #63e2ff 10%, #3b7cff 90%); }
}

[class*="btn--ghost"]:hover, [class*="btn--outline"]:hover {
  color: #216bff;
  background: rgba(86, 195, 255, 0.09);
  box-shadow: 0 6px 22px #2bb6ff38;
  transform: translateY(-2px) scale(1.07);
}
[class*="btn--ghost"]:active, [class*="btn--outline"]:active {
  color: #1e385e;
  background: rgba(47, 93, 158, 0.13);
  transform: scale(0.97) translateY(2px);
}


[class*="btn--ghost"] {
  background: #000;
  color: #fff;
  border: none;
  animation: 
    ghost-float 4s ease-in-out infinite,
    ghost-glow  3s ease-in-out infinite, outline-draw 2s ease-in-out infinite alternate;
  transition: transform .3s, background .3s;
}
[class*="btn--ghost"]:hover {
  background: #222;
  transform: translateY(-3px) scale(1.05);
}


[class*="btn--filled"], [class*="btn--main"] {
  background: linear-gradient(95deg, #e7a7fd 0%, #63e2ff 100%);
  color: #171a22;
  border: none;
  border-radius: 1.25em;
  font-weight: 700;
  letter-spacing: 0.045em;
  padding: 0.7em 2.2em;
  box-shadow: 0 2px 22px #63e2ff33, 0 1.5px 8px #a7e8fd77;
  position: relative;
  overflow: hidden;
  transition: 
    background 0.22s, 
    color 0.18s, 
    box-shadow 0.21s cubic-bezier(.3,1.22,.58,1.08),
    transform 0.13s;
  animation: filled-glowpulse 2.6s infinite;
}

@keyframes filled-glowpulse {
  0%, 100% { box-shadow: 0 2px 22px #63e2ff33, 0 1.5px 8px #a7e8fd77;}
  50%      { box-shadow: 0 6px 32px #63e2ff99, 0 4px 24px #e7a7fd44;}
}

[class*="btn--filled"]:hover, [class*="btn--filled"]:focus {
  background: linear-gradient(108deg, #e7a7fd 10%, #bff3fd 90%);
  color: #21262d;
  box-shadow: 0 10px 44px #a7e8fd77, 0 3px 22px #e7a7fd55;
  transform: scale(1.07) translateY(-3px);
}
[class*="btn--filled"]:active {
  background: linear-gradient(93deg, #e7a7fd 30%, #63e2ff 85%);
  color: #222;
  transform: scale(0.98) translateY(2px);
  box-shadow: 0 2px 8px #63e2ff33;
}



/* ─ Outline Buttons ──────────────────────────────────────────────────────── */
/* 1) Border “draw” */
@keyframes outline-draw {
  0% { box-shadow: inset 0 0 0 0 #fff; }
  100% { box-shadow: inset 0 0 0 2px #fff; }
}
/* 2) Text shimmer */
@keyframes text-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

[class*="btn--outline"] {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-weight: 700;
  border: none;
  box-shadow: inset 0 0 0 2px transparent;
  animation: outline-draw 2s ease-in-out infinite alternate;
  transition: color .3s, box-shadow .3s;
}
/* shimmer overlay */
[class*="btn--outline"]::before {
  content: "";
  position: absolute; top:0; left:0; right:0; bottom:0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  background-size: 200% 100%;
  animation: text-shimmer 4s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}
[class*="btn--outline"]:hover {
  background: #fff;
  color: #000;
  box-shadow: inset 0 0 0 2px #fff, 0 0 8px rgba(255,255,255,0.6);
}

[class*="btn--ghost"]:hover,[class*="btn--outline"]:hover {
  background: black;
  color: white;
  border: none;
}

[class*="btn--filled"] {
  background: #ffe573;
  font-weight: 700;
  color: black;
}


[class*="btn"]:not([class*="wrap"]),
[class*="button"]:not([class*="buttons"]) {
  padding: 20px 30px;
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}



.ze77-appfocus__subtitle {
  color: white;
}

h1[class*="title"]:not([class*="subtitle"]) {
  font-size: 36px;
  line-height: 1;
}

h2 {
  font-size: 36px !important;
  margin: 0 !important;
  margin-bottom: 20px !important;
}

header {
  margin: 0 !important;
}

[class*="content"]:not([class*="hero"]) {
  text-align: center;
  gap: 1rem !important;
}


[class*="heading"],
[class*="text"] {
  text-align: center;
}

[class*="actions"] {
  text-align: center;
  justify-content: center;
}

p {
  font-size: 18px !important;
  line-height: 1 !important;
  margin: 0 !important;
  margin-bottom: 20px !important;
}

@media (max-width: 768px) {

  h1[class*="title"]:not([class*="subtitle"]) {
    font-size: 36px;
  }

  h2 {
    font-size: 36px;
  }


  section[class*="hero"] {

    padding-top: 50px !important;
}


  [class*="btn"]:not([class*="wrap"]),
  [class*="button"]:not([class*="buttons"]) {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    font-weight: 700;
  }

  [class*="cta"] {
  gap: 0;
  margin-top: 11px;
}




}

/* Сетка карточек: 1 колонка на мобилке, 2 колонки ≥800px */
.rr555-slotsnew__cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem auto;
  width: 100%;
}
@media (min-width: 800px) {
  .rr555-slotsnew__cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Оформление самой карточки */
.rr555-slotsnew__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: 0 7px 38px rgba(255, 204, 34, 0.16);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .24s, box-shadow .28s;
}

.rr555-slotsnew__card:hover {
  box-shadow: 0 15px 54px rgba(255, 204, 34, 0.32), 0 0 0 2px rgba(255, 204, 34, 0.73);
  transform: translateY(-8px) scale(1.03);
}

/* Заголовок карточки */
.rr555-slotsnew__card-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Текст под заголовком */
.rr555-slotsnew__card-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* Ссылка внутри карточки */
.rr555-slotsnew__link {
  color: #ffcc42;
  text-decoration: underline;
}


[class*="_link"] {
  color: orange;
}

  [class*="cta"] {
  margin-top: 0; }

 [class*="_link"]:hover { 
color: #ff3366;
  }

.banner {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}




@media (max-width: 768px) {

  .livebet299__frame {
    display: none;
  }

  .luxhdr__logo-img {
    height: 30px;
  }


  .rr555-casinohero__content, .rr555-apphero__content {
    padding: 0;
  }
}

.slots-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
 
.slots-body .rr555-slotshowto__desc {
  padding: 10px;
  border: 1px solid white;
  border-radius: 2rem;
}


main {
  flex: 1;
  /* Этот блок занимает всё доступное пространство */
  padding-top: 75px;
}

@media (max-width: 768px) {

  section {
    padding: 20px !important;
  }

  .rr555-hero__title {
    margin-top: 0;
  }

  .bee999-slotpromos__img,
  .bee999-sportsimplified__sportcard img,
  .bee999-confidence__img,
  .bee999-localbd__flag img,
  .bee999-skillplay__img,
  .bee999-appbonus__img,
  .bee999-crashbet__img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
  }

  .lux-header__login-btn,
  .bee999-bonuscalendar__calendarvisual,
  .bee999-bonuscalendar__calendarvisual img {
    width: auto !important;
  }

  .bee999-localbd__gameimg,
  .bee999-bonuscalendar__calendarvisual,
  .bee999-bonuscalendar__calendarvisual img {
    height: auto;
  }

  .ze77-tools__bubbles,
  .bee999-bonuscalendar-btn,
  .mobileaccess-8iii__list li,
  .fast-8iii__list li,
  .bee999-mobileperf__features,
  .bee999-topslots__features,
  .smart-8iii__list li,
  .bee999-bet__badges,
  .crash-8iii__feat,
  .bee999-loginaccess__features,
  .bee999-loginperks__features {
    justify-content: center
  }

  .ze77-focusedgames__img {
    max-width: 100%;
  }

  .n7bt-imgcol,
  .crash-8iii__visual,
  .rewards-8iii__ticket,
  .pay-8iii__visual,
  .slotsPromo-8iii__visual,
  .loyalty-8iii__visual,
  .banking-roadmap__card img,
  .n7bt-content {
    flex: none;
    max-width: 100%;
  }

  main {
    padding-top: 50px;
  }

  .cv666-luxehero__cta-row,
  .n777-why__container,
  .n777-highlights__container,
  .ze77-applite__actions,
  .n7wl-grid,
  .n7dk-wrapper,.rr555-gameshero__container,
  .n7lp-container,
  .n7gr-grid,
  .sportcards299__spinner,  .slots-body ,.rr555-loginhero__container,.rr555-bonushero__container,.rr555-aviatorhero__container,.rr555-crazyhero__container,
.rr555-casinohero__container,.rr555-slotshero__container,
  .rr555-install-split__wrapper,
  .n7ct-wrap,
  .bonuscal-8iii__flex,
  .ze77-hero__actions,.rr555-action__cards,
  .rr555-wheelinfo__container,
  .n7bt-inner,.rr555-hero__ctas,
  .nx7l-actions,
  .bee999-allgames__actions,
  .ze77-games__actions,
  .ze77-slots__actions {
    display: flex;
    flex-direction: column;

  }

  .rr555-elevate__grid, .rr555-bet-hero__container {
    display: flex;
    flex-direction: column-reverse;
  }

  .rr555-slotshero__content,.rr555-aviatorhero__content,.rr555-crazyhero__container,.rr555-aviatorhero__container,.rr555-bonushero__content,.rr555-bonushero__container,.rr555-apphero__container,.rr555-loginhero__content, .rr555-gameshero__content, .rr555-bet-hero__content {
    padding: 0;
  }


  .rr555-casinohero__title,.rr555-crazyhero__title,.rr555-crazyhero__desc,.rr555-aviatorhero__title,.rr555-aviatorhero__desc,.rr555-bonushero__title,.rr555-bonushero__desc,.rr555-apphero__desc,.rr555-loginhero__title,.rr555-loginhero__desc,.rr555-bet-hero__title,.rr555-bet-hero__header,.rr555-gameshero__title,.rr555-gameshero__header,.rr555-gameshero__content,.rr555-slotshero__header,.rr555-slotshero__title, .rr555-casinohero__header {
    margin: 0;
    margin-bottom: 0.5em;
  }

  .rr555-apphero__desc {
    margin: 0;
  }

  .rr555-categories__container, .rr555-whyus__container, .rr555-welcome__cube-face {
    padding: 0;
  }


  [class*="actions"],.rr555-aviatorhero__content,.rr555-bonushero__content,.rr555-apphero__content,.rr555-loginhero__content, .rr555-slotshero__content, .rr555-gameshero__content {
    gap: 0;
  }

  .hero-body {
    flex-direction: column-reverse;
  }

}

.rr555-recovery__figure {
  margin-bottom: 20px !important;
}

@media (max-width: 505px) {
.rr555-cardsec__container,.rr555-casinohero__container,.rr555-slotshero__container,.rr555-gameshero__container,.rr555-bet-hero__container,.rr555-loginhero__container,.rr555-crazywhy2__wrapper,.rr555-aviatorlux__wrapper,.rr555-aviatorsteps__container,.rr555-aviatorwhy__wrapper,.rr555-reload__wrapper,.rr555-vip__card,.rr555-sportsbet__container,.rr555-sportsbet__container,.rr555-sports-cards__container,.rr555-livebet__container,.rr555-logincards__container,.rr555-awaits__card,.rr555-experience__container,.rr555-gamestyle__container,.rr555-hotnow__container, .rr555-action__container, .rr555-slotscats__container, .rr555-slotshowto__container, .rr555-slotsnew__container {
  padding: 0;
}

.rr555-awaits__card, .rr555-welcome__cube-face, .rr555-vip__card {
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  border: none  ;
}

.rr555-awaits__body {
  gap: 0;
}

.rr555-vip__btn, .rr555-aviatorwhy__btn {
  margin: 0 !important;
}

}

    .rr555-aviatorlux__content {
    gap: 0 !important;
  }

  figure {
    margin: 0 !important;
  }

.n7fixed-bonus-banner {

  margin-bottom: 0 !important;
}


html,
body {
  height: 100%;

  display: flex;
  flex-direction: column;
}

/* Основной контейнер, который растягивается */


/* Футер всегда внизу */
footer {


  text-align: center;
  padding: 20px;
  font-size: 16px;
}

.lux-btn--login {
  padding: 14px;
  padding: 8px 18px;
}

.luxhdr__actions {
  gap: 10px !important;
}

.sideacc299__content-title {
  text-align: left;
}

.rr555-crazywhy2__wrapper, .rr555-wheelinfo, .rr555-bonuscards {
  padding: 60px 10px !important;
}