html {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: 'Marcellus';
  src: local('Marcellus'),
    url('fonts/Marcellus-Regular.ttf') format('truetype');
  font-display: normal;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "Marcellus", sans-serif;
  font-weight: 400;

  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: #133300;
  color: #ccff66;
  box-shadow: 0 2px 14px rgba(2,10,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: 65px;

  border-radius: 12px;
  margin-right: 12px;
  padding: 2px;
}

.luxhdr__brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: #44cc00;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.luxhdr__nav {
  flex: 1;
  margin-left: 48px;
}

.luxhdr__nav-list {
  display: flex;
  gap: 14px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.luxhdr__nav-link {
  color: #ccff66;
  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(68,204,0);
  border-bottom: 2.5px solid rgb(68,204,0);
}

.luxhdr__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.luxhdr__drm {
  background: #44cc00;
  color: #020a00;
  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(68,204,0,0.08);
  animation:
    glow-pulse-const 1.8s infinite alternate ease-in-out,
    scale-pulse 2.5s infinite ease-in-out;
}

.luxhdr__drm--login:hover {
  background: #ccff66;
  color: #44cc00;
}

.luxhdr__lang-switch {
  display: flex;
  align-items: center;
  color: #ccff66;
  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(31,102,0);
  color: #ccff66;
}

.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: #44cc00;
  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: #020a00;
    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(2,10,0,0.18);
    z-index: 500;
  }

  .luxhdr__nav--open {
    transform: translateY(0);
  }

  .luxhdr__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .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: #44cc00;
  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: #081500;
  color: #ccff66;
  text-align: center;
  /* ⇢ keeps everything centred at all sizes */
  --accent: #44cc00;
  --btn-hover: #44cc00;
}

/* 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(68,204,0,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 {
  font: 800 clamp(1.8rem, 5vw + 0.5rem, 3.2rem)/1.15 "Poppins", sans-serif;
  margin-bottom: 1.2rem;
}

.rr555-hero__tagline {

  font: 400 1rem/1.6 "Inter", sans-serif;
  letter-spacing: 0.01em;
}

/* 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.2em;
  width: 100%;
  height: 2px;
  background: currentColor;
  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(2,10,0,0.55);
}

.rr555-hero__img {
  display: block;
  width: 100%;
  height: auto;
}

/* Buttons */
.rr555-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
}

.rr555-hero__btn {
  position: relative;
  padding: 0.95rem 2.3rem;
  border-radius: 40px;
  font: 700 0.95rem/1 "Inter", sans-serif;
  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: #ccff66;
}

.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: #ccff66;
  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(204,255,102,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: #020a00;
  /* dark base */
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
}

/* ───── 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%,
      rgba(68,204,0,0.34),
      transparent 60%);
  animation: rr555-spin 22s linear infinite;
  filter: blur(60px);
}

.rr555-elevate__bg-grid {
  background-image: repeating-linear-gradient(45deg,
      rgba(204,255,102,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 {
  max-width: 700px;
  margin: 0 auto 2.8rem;
}

/* Inline links */
.rr555-elevate__link {
  color: #44cc00;
  /* accent pink */
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.rr555-elevate__link::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: currentColor;
  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 {
  max-width: 460px;
  margin: 0 auto;
}

.rr555-elevate__img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(2,10,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(204,255,102,0.04);
  backdrop-filter: blur(3px);
  border-radius: 6px;
  width: max-content;
  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;
}

/* CTA button */
.rr555-elevate__cta {
  margin-top: 3.2rem;
}

.rr555-elevate__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.6rem;
  background: #44cc00;
  /* accent pink */
  color: #ccff66;
  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: #44cc00;
}

/* 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(204,255,102,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: #020a00;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
}

/* 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%, rgba(68,204,0,.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: #44cc00;
  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;
  width: max-content;
  margin: 0 auto;
  background: rgba(204,255,102,.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: #44cc00;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.rr555-trust__link::before {
  content: "";
  position: absolute;
  height: 2px;
  background: currentColor;
  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 {
  max-width: 470px;
  margin: 0 auto;
}

.rr555-trust__img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(2,10,0,.6);
}

/* CTA */
.rr555-trust__cta {
  margin-top: 3.4rem;
}

.rr555-trust__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.8rem;
  background: #44cc00;
  color: #ccff66;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 50px;
  overflow: hidden;
  transition: background .3s ease;
}

.rr555-trust__btn:hover {
  background: #44cc00;
}

/* sheen sweep */
.rr555-trust__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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: #020a00;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
}

/* 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(68,204,0,.25), transparent 70%);
  animation: journey-pulse 18s ease-in-out infinite;
}

.rr555-journey__wave--two {
  background: radial-gradient(ellipse at 70% 70%, rgba(68,204,0,.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 {
  max-width: 700px;
  margin: 0 auto 2.8rem;
}

/* Grid */
.rr555-journey__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

/* Features */
.rr555-journey__features {
  display: flex;
  flex-direction: column;
}

.rr555-journey__row {
  display: flex;
  flex-direction: column;
  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(204,255,102,.05);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  width: max-content;
  margin: 0 auto;
  animation: journey-slide .8s ease both;
}

@keyframes journey-slide {
  from {
    transform: translateX(-26px);
    opacity: 0;
  }
}

.rr555-journey__text {
  max-width: 620px;
  margin: 0 auto;
  margin-bottom: 30px;
}

/* Links inside square brackets */
.rr555-journey__link {
  color: #44cc00;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.rr555-journey__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  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 {
  max-width: 480px;
  margin: 0 auto;
}

.rr555-journey__img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(2,10,0,.6);
}

/* CTA */
.rr555-journey__cta {
  margin-top: 3.4rem;
}

.rr555-journey__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.8rem;
  background: #44cc00;
  color: #ccff66;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 50px;
  overflow: hidden;
  transition: background .3s ease;
}

.rr555-journey__btn:hover {
  background: #44cc00;
}

/* sheen */
.rr555-journey__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.5), transparent);
  transform: skewX(-25deg);
}

.rr555-journey__btn:hover::after {
  animation: journey-sheen .8s forwards;
}

@keyframes journey-sheen {
  to {
    left: 130%;
  }
}


/* ───── jeetbuz Game Sections (no line-height) ───── */
.rr555-gamesec {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem 4rem 1rem;
  background: #020a00;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
}

/* 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(68,204,0,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(68,204,0,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;
}

/* Header */
.rr555-gamesec__title {
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 2rem;
}

.rr555-gamesec__intro {
  max-width: 650px;
  margin: 0 auto 1rem;
}

/* Inline links */
.rr555-gamesec__link {
  color: #44cc00;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.rr555-gamesec__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  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 2.6rem;
  align-items: flex-start;
  justify-items: center;
}

/* Game boxes */
.rr555-gamesec__box {
  background: rgba(204,255,102,0.035);
  border-radius: 14px;
  box-shadow: 0 4px 22px rgba(2,10,0,0.16);
  padding: 2.1rem 1.2rem 1.5rem 1.2rem;
  max-width: 410px;
  min-width: 0;
  margin: 0 auto;
  display: flex;
  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(204,255,102,0.07);
  backdrop-filter: blur(3px);
  border-radius: 5px;
  width: max-content;
  margin: 0 auto;
}

.rr555-gamesec__desc {
  max-width: 350px;
  margin: 0 auto;
}

/* Illustration */
.rr555-gamesec__figure {
  max-width: 440px;
  margin: 0 auto;
}

.rr555-gamesec__img {
  width: 100%;
  display: block;
  border-radius: 17px;
  box-shadow: 0 10px 30px rgba(2,10,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: #44cc00;
  color: #ccff66;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 50px;
  overflow: hidden;
  transition: background .3s ease;
}

.rr555-gamesec__btn:hover {
  background: #44cc00;
}

.rr555-gamesec__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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 1fr 1fr;
    grid-template-areas:
      "box1 box2 box3 figure";
      align-items: center;
  }

  .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;
    align-self: stretch;
  }
}

@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, #081500 0%, #133300 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  overflow: hidden;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
}

/* 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;
  gap: 1.8rem;
}

.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 #ccff66;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(204,255,102,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;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .rr555-cardsec__grid {
    grid-template-columns: 1fr 1fr;
  }
}



/* Individual card */
.rr555-cardsec__card {
  background: rgba(19,51,0,0.93);
  border-radius: 20px;
  box-shadow: 0 7px 28px #ae70ff2a;
  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 #ae70ff3a, 0 0 0 2px #6a19c980;
}

/* Icon on top of card */
.rr555-cardsec__card-ico {
  font-size: 2.3rem;
  color: #ccff66;
  background: rgba(204,255,102,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 #ae70ff21;
  animation: cardsec-icopulse 2.8s infinite alternate;
}

@keyframes cardsec-icopulse {
  0% {
    box-shadow: 0 3px 10px #ae70ff21;
  }

  100% {
    box-shadow: 0 7px 24px #ae70ff38;
  }
}

/* Card tag line (for angle brackets) */
.rr555-cardsec__card-tag {
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid #ccff66;
  font-weight: 700;
  font-size: 1.01rem;
  background: rgba(204,255,102,0.10);
  border-radius: 6px;
  width: max-content;
  margin: 0 auto 0.22em auto;
  gap: .5em;
  color: #ccff66;
}

.rr555-cardsec__card-text {
  max-width: 280px;
  font-size: 1.01rem;
  margin: 0 auto;
}

/* Bracketed links */
.rr555-cardsec__link {
  color: #ccff66;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.rr555-cardsec__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  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 #ae70ff24;
  display: block;
}

.rr555-cardsec__cta {
  margin-top: .3rem;
}

.rr555-cardsec__btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.6rem;
  background: #ccff66;
  color: #1f6600;
  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 #ae70ff25;
}

.rr555-cardsec__btn:hover {
  background: #ccff66;
  color: #1f6600;
}

.rr555-cardsec__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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, #081500 0%, #081500 100%);
  position: relative;
  padding: 6rem 0 4.5rem 0;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
  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(204,255,102,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__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: rgba(19,51,0,0.91);
  border-radius: 18px;
  box-shadow: 0 4px 18px #ae70ff25;
  overflow: hidden;
  transition: box-shadow .25s;
}

.rr555-faq__q {
  width: 100%;
  border: none;
  background: none;
  color: #ccff66;
  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: #ccff66;
  background: rgba(204,255,102,0.06);
}

.rr555-faq__a {
  display: none;
  padding: 0 1.8rem 1.5rem 3.5rem;
  color: #ccff66;
  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: #ccff66;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.rr555-faq__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  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: #ccff66;
  color: #1f6600;
  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 #ae70ff1a;
  position: relative;
  overflow: hidden;
}

.rr555-faq__btn:hover {
  background: #ccff66;
  color: #133300;
}

.rr555-faq__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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: #ccff66;
  font-family: "Inter", sans-serif;
  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, #32065cbb 20%, #26043baa 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%, #44cc00 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%, #44cc00 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;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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__title {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 0.6em 0;
  letter-spacing: -.01em;
  line-height: 1.16;
}

.rr555-casinohero__desc {
  font-size: 1.09rem;

  margin: 0 auto;
}

.rr555-casinohero__link {
  color: #44cc00;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-casinohero__link:hover,
.rr555-casinohero__link:focus {
  color: #44cc00;
}

.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: #44cc00;
  color: #133300;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.rr555-casinohero__btn--main {
  background: linear-gradient(90deg, #44cc00 40%, #44cc00 100%);
  color: #133300;
}

.rr555-casinohero__btn--ghost {
  background: none;
  color: #ccff66;
  border: 2px solid #44cc00;
  box-shadow: none;
}

.rr555-casinohero__btn--main:hover,
.rr555-casinohero__btn--main:focus {
  background: linear-gradient(90deg, #44cc00 10%, #44cc00 80%);
  color: #133300;
}

.rr555-casinohero__btn--ghost:hover,
.rr555-casinohero__btn--ghost:focus {
  background: #44cc00;
  color: #133300;
  border-color: #44cc00;
}

.rr555-casinohero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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, #081500 0%, #020a00 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
  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%, #ccff66 65%, #44cc00 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, #44cc00 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 0.5em 0;
}

.rr555-action__desc {
  font-size: 1.08rem;
  max-width: 600px;
  margin: 0 auto;
}

.rr555-action__link {
  color: #44cc00;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-action__link:hover {
  color: #44cc00;
}

.rr555-action__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.rr555-action__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
  margin-bottom: 1.6rem;
}

.rr555-action__block {
  background: rgba(204,255,102,0.06);
  border-radius: 18px;
  box-shadow: 0 5px 28px #f855ee22;
  padding: 2.1rem 1.5rem 1.4rem 1.5rem;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  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 #44cc00;
  font-weight: 700;
  font-size: 1.01rem;
  background: rgba(68,204,0,0.13);
  border-radius: 6px;
  width: max-content;
  margin: 0 auto 0.19em auto;
  gap: .5em;
}

.rr555-action__block-text {
  font-size: 1.01rem;
  max-width: 430px;
  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, #44cc00 10%, #44cc00 90%);
  color: #081500;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.rr555-action__btn:hover,
.rr555-action__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #44cc00 90%);
  color: #1f6600;
}

.rr555-action__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.18), transparent);
  transform: skewX(-25deg);
}

.rr555-action__btn:hover::after {
  animation: rr555-btnsheen .7s forwards;
}

@keyframes rr555-btnsheen {
  to {
    left: 130%;
  }
}

@media (min-width: 700px) {
  .rr555-action__cards {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }

  
}


.rr555-categories {
  background: linear-gradient(115deg, #133300 0%, #020a00 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
  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, #44cc00 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__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: 2.2rem;
  margin: 0 auto 2.8rem auto;
  justify-items: center;
}

@media (min-width: 800px) {
  .rr555-categories__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.8rem;
  }
}

.rr555-categories__card {
  background: rgba(204,255,102,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 {
height: 300px;
width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 22px #ffcc4261;
  background: #133300;
  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(68,204,0,0.08);
  border-radius: 6px;
  width: max-content;
  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: #44cc00;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-categories__link:hover {
  color: #44cc00;
}

.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, #44cc00 10%, #44cc00 90%);
  color: #081500;
  position: relative;
  overflow: hidden;
}

.rr555-categories__btn:hover,
.rr555-categories__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #44cc00 90%);
  color: #1f6600;
}

.rr555-categories__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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, #081500 0%, #081500 100%);
  padding: 0;
  color: #ccff66;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

.rr555-whyus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.2rem 5rem 1.2rem;
  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, #44cc00 0%, #1f6600 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, #ccff66 0%, #ccff66 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: #44cc00;
  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;
  
  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 0.5em 0;
}

.rr555-whyus__descwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.rr555-whyus__desc {
  font-size: 1.08rem;
  max-width: 520px;
  margin: 0 auto;
}

.rr555-whyus__link {
  color: #44cc00;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-whyus__link:hover {
  color: #44cc00;
}

.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, #44cc00 10%, #44cc00 90%);
  color: #081500;
  position: relative;
  overflow: hidden;
}

.rr555-whyus__btn:hover,
.rr555-whyus__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #44cc00 90%);
  color: #1f6600;
}

.rr555-whyus__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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: #ccff66;
  font-size: 1rem;
  max-width: 470px;
  opacity: .86;
}

@media (max-width: 900px) {
  .rr555-whyus__container {
    flex-direction: column;
    gap: 3.7rem;
    padding: 4.5rem 1.2rem 3.5rem 1.2rem;
  }

  .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: #ccff66;
  font-family: "Inter", sans-serif;
  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, #3e037a99 25%, #180836bb 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%, #ccff66 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%, #44cc00 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;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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__title {
  font-size: 2.7rem;
  font-weight: 800;
  margin: 0 0 0.5em 0;
  letter-spacing: -.01em;
}

.rr555-slotshero__desc {
  font-size: 1.09rem;
  
  margin: 0 auto;
}

.rr555-slotshero__link {
  color: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-slotshero__link:hover,
.rr555-slotshero__link:focus {
  color: #44cc00;
}

.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: #ccff66;
  color: #1f6600;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.rr555-slotshero__btn--main {
  background: linear-gradient(90deg, #ccff66 40%, #44cc00 100%);
  color: #1f6600;
}

.rr555-slotshero__btn--ghost {
  background: none;
  color: #ccff66;
  border: 2px solid #ccff66;
  box-shadow: none;
}

.rr555-slotshero__btn--main:hover,
.rr555-slotshero__btn--main:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 80%);
  color: #133300;
}

.rr555-slotshero__btn--ghost:hover,
.rr555-slotshero__btn--ghost:focus {
  background: #ccff66;
  color: #133300;
  border-color: #44cc00;
}

.rr555-slotshero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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, #133300 0%, #081500 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
  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, #ccff66 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__title {
  font-size: clamp(2.1rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 1.1em 0;
}

.rr555-slotscats__desc {
  font-size: 1.08rem;
  max-width: 570px;
  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 1fr 1fr;
    gap: 2.3rem;
  }
}

.rr555-slotscats__card {
  background: rgba(204,255,102,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;
  max-width: 270px;
  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 {
  width: 90%;
  height: 90%;
  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(204,255,102,0.12);
  border-radius: 6px;
  width: max-content;
  margin: 0 auto .3em auto;
  gap: .5em;
}

.rr555-slotscats__card-text {
  font-size: 1.01rem;
  max-width: 260px;
  margin: 0 auto;
  text-align: center;
}

.rr555-slotscats__link {
  color: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-slotscats__link:hover {
  color: #44cc00;
}

.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  position: relative;
  overflow: hidden;
}

.rr555-slotscats__btn:hover,
.rr555-slotscats__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600;
}

.rr555-slotscats__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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, #1f6600 0%, #081500 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
  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, #ccff66 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__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(204,255,102,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: #ccff66;
  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, #ccff66 10%, #44cc00 90%);
  color: #1f6600;
  box-shadow: 0 2px 12px #ffe5734d;
}

.rr555-slotshowto__tab:not(.rr555-slotshowto__tab--active):hover {
  background: rgba(204,255,102,0.11);
  color: #44cc00;
}

.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: #133300;
  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: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-slotshowto__link:hover {
  color: #44cc00;
}

.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  position: relative;
  overflow: hidden;
}

.rr555-slotshowto__btn:hover,
.rr555-slotshowto__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600;
}

.rr555-slotshowto__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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, #1f6600 0%, #081500 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #ccff66;
  font-family: "Inter", sans-serif;
  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, #ccff66 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, #ccff66 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, #ccff66 30%, #44cc00 100%);
  color: #133300;
  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: #44cc00;
  color: #ccff66;
  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: 1.5rem;
  align-items: center;
}

.rr555-slotsnew__desc {
  font-size: 1.08rem;
  margin: 0 auto;
}

.rr555-slotsnew__highlight {
  color: #ccff66;
  font-weight: 700;
  background: rgba(204,255,102,0.11);
  padding: 0 .3em;
  border-radius: 6px;
}

.rr555-slotsnew__divider {
  width: 36px;
  height: 4px;
  margin: .6em auto;
  background: linear-gradient(90deg, #ccff66 10%, #44cc00 90%);
  border-radius: 4px;
  opacity: .7;
}

.rr555-slotsnew__link {
  color: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-slotsnew__link:hover {
  color: #44cc00;
}

.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  position: relative;
  overflow: hidden;
}

.rr555-slotsnew__btn:hover,
.rr555-slotsnew__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600;
}

.rr555-slotsnew__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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: #ccff66;
  font-family: "Inter", sans-serif;
  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, #4c0573bb 20%, #12063fbb 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%, #ccff66 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%, #44cc00 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%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.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;
}


.rr555-gameshero__title {
  font-size: clamp(2.2rem, 5vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 0.5em 0;
  letter-spacing: -.01em;
}

.rr555-gameshero__desc {
  font-size: 1.09rem;
  max-width: 570px;
  margin: 0 auto;
}

.rr555-gameshero__link {
  color: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-gameshero__link:hover,
.rr555-gameshero__link:focus {
  color: #44cc00;
}

.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: #ccff66;
  color: #1f6600;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.rr555-gameshero__btn--main {
  background: linear-gradient(90deg, #ccff66 40%, #44cc00 100%);
  color: #1f6600;
}

.rr555-gameshero__btn--ghost {
  background: none;
  color: #ccff66;
  border: 2px solid #ccff66;
  box-shadow: none;
}

.rr555-gameshero__btn--main:hover,
.rr555-gameshero__btn--main:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 80%);
  color: #133300;
}

.rr555-gameshero__btn--ghost:hover,
.rr555-gameshero__btn--ghost:focus {
  background: #ccff66;
  color: #133300;
  border-color: #44cc00;
}

.rr555-gameshero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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, #1f6600 0%, #081500 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #ccff66;
  font-family: "Inter", sans-serif;
  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, #ccff66 0%, transparent 100%);
  animation-delay: 0s;
}

.rr555-experience__shape--2 {
  width: 160px;
  height: 90px;
  right: -38px;
  bottom: 8%;
  background: radial-gradient(circle, #44cc00 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, #ccff66 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 {
  flex: 0 0 340px;
  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, #ccff66 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, #ccff66 10%, #44cc00 90%);
  color: #133300;
  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 {
  flex: 1 1 400px;
  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;
}

.rr555-experience__descbox {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.rr555-experience__desc {
  font-size: 1.08rem;
  max-width: 440px;
  margin: 0 auto;
}

.rr555-experience__link {
  color: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-experience__link:hover {
  color: #44cc00;
}

.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  position: relative;
  overflow: hidden;
}

.rr555-experience__btn:hover,
.rr555-experience__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600;
}

.rr555-experience__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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: 3.5rem;
  }

  .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, #1f6600 0%, #081500 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
  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, #ccff66 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__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(204,255,102,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: #133300;
  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(204,255,102,0.12);
  border-radius: 6px;
  width: max-content;
  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: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-gamestyle__link:hover {
  color: #44cc00;
}

.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  position: relative;
  overflow: hidden;
}

.rr555-gamestyle__btn:hover,
.rr555-gamestyle__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600;
}

.rr555-gamestyle__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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, #081500 0%, #133300 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
  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, #ccff66 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__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 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.4rem;
  }
}

.rr555-hotnow__card {
  background: rgba(204,255,102,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;
  width: max-content;
  margin: 0 auto .3em auto;
}

.rr555-hotnow__card-text {
  font-size: 1.03rem;

  margin: 0 auto;
  text-align: center;
}

.rr555-hotnow__link {
  color: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-hotnow__link:hover {
  color: #44cc00;
}

.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  position: relative;
  overflow: hidden;
}

.rr555-hotnow__btn:hover,
.rr555-hotnow__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600;
}

.rr555-hotnow__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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: #ccff66;
  font-family: "Inter", sans-serif;
  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, #2d0344cc 0%, #12043dcb 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%, #ccff66 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%, #44cc00 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%;

  display: flex;
  align-items: center;
  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__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: #ccff66;
  color: #1f6600;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.rr555-bet-hero__btn--main {
  background: linear-gradient(90deg, #ccff66 40%, #44cc00 100%);
  color: #1f6600;
}

.rr555-bet-hero__btn--ghost {
  background: none;
  color: #ccff66;
  border: 2px solid #ccff66;
  box-shadow: none;
}

.rr555-bet-hero__btn--main:hover,
.rr555-bet-hero__btn--main:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 80%);
  color: #133300;
}

.rr555-bet-hero__btn--ghost:hover,
.rr555-bet-hero__btn--ghost:focus {
  background: #ccff66;
  color: #133300;
  border-color: #44cc00;
}

.rr555-bet-hero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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, #1f6600 0%, #081500 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #ccff66;
  font-family: "Inter", sans-serif;
  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, #ccff66 0%, transparent 100%);
  animation-delay: 0s;
}

.rr555-sportsbet__flare--right {
  width: 120px;
  height: 80px;
  right: -33px;
  bottom: 8%;
  background: radial-gradient(circle, #44cc00 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, #ccff66 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 0.5em 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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  position: relative;
  overflow: hidden;
}

.rr555-sportsbet__btn:hover,
.rr555-sportsbet__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600;
}

.rr555-sportsbet__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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: 3.3rem;
  }

  .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, #081500 0%, #1f6600 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
  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, #ccff66 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__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 1fr;
    gap: 2.2rem;
  }
}

.rr555-sports-cards__card {
  background: rgba(204,255,102,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: #081500;
  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(204,255,102,0.12);
  border-radius: 6px;
  width: max-content;
  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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  position: relative;
  overflow: hidden;
}

.rr555-sports-cards__btn:hover,
.rr555-sports-cards__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600;
}

.rr555-sports-cards__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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, #133300 0%, #1f6600 100%);
  position: relative;
  padding: 5.5rem 0 5rem 0;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
  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, #ccff66 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, #ccff66 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__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(204,255,102,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: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-livebet__link:hover {
  color: #44cc00;
}

.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  position: relative;
  overflow: hidden;
}

.rr555-livebet__btn:hover,
.rr555-livebet__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600;
}

.rr555-livebet__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(204,255,102,.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: #ccff66;
  font-family: "Inter", sans-serif;
  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, #3e037acc 20%, #15053dcc 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%, #ccff66 0%, transparent 100%);
}

.rr555-loginhero__flare--2 {
  width: 230px;
  height: 180px;
  right: -90px;
  bottom: -10px;
  background: radial-gradient(circle at 40% 65%, #44cc00 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%;

  display: flex;
  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;
  gap: 2.2rem;
}

/* ----- Text ----- */
.rr555-loginhero__title {
  font-size: clamp(2.2rem, 5vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 1.1em 0;
}

.rr555-loginhero__desc {
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto
}

.rr555-loginhero__link {
  color: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-loginhero__link:hover {
  color: #44cc00
}

.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(204,255,102,.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, #ccff66 40%, #44cc00 100%);
  color: #1f6600;
  box-shadow: 0 3px 20px #ffe5732a;
}

.rr555-loginhero__btn--main:hover {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 80%);
  color: #133300;
}

/* ghost */
.rr555-loginhero__btn--ghost {
  background: none;
  color: #ccff66;
  border: 2px solid #ccff66;
  box-shadow: none;
}

.rr555-loginhero__btn--ghost:hover {
  background: #ccff66;
  color: #133300;
  border-color: #44cc00;
}

/* ----- 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, #133300 0%, #1f6600 100%);
  position: relative;
  padding: 6rem 0 5rem 0;
  color: #ccff66;
  text-align: center;
  font-family: "Inter", sans-serif;
  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, #ccff66 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;
  margin: 0 auto;
}

/* ===== 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(204,255,102,.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: #ccff66;
}

/* ===== 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(204,255,102,.12);
  border-radius: 6px;
  font-size: 1.09rem;
}

.rr555-logincards__link {
  display: inline-block;
  color: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1);
}

.rr555-logincards__link:hover {
  color: #44cc00
}

.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  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(204,255,102,.22), transparent);
  transform: skewX(-25deg);
}

.rr555-logincards__btn:hover,
.rr555-logincards__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600;
}

.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: #020a00;
  color: #ccff66;
  font-family: "Inter", sans-serif;
  text-align: center;
  overflow: hidden;
  display: flex;
  justify-content: center
}

/* neon grid BG */
.rr555-awaits__gridmask {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 96%, rgba(204,255,102,.05) 100%),
    linear-gradient(transparent 96%, rgba(204,255,102,.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: #ccff66;
  opacity: .85;
  filter: drop-shadow(0 0 6px #ccff66);
  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(204,255,102,.03);
  border: 1px solid rgba(204,255,102,.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;
  margin-bottom: 20px;
}

.rr555-awaits__text {
  font-size: 1.07rem;
  margin: 0
}

/* links */
.rr555-awaits__link {
  display: inline-block;
  color: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-awaits__link:hover {
  color: #44cc00
}

.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  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(204,255,102,.25), transparent);
  transform: skewX(-25deg)
}

.rr555-awaits__btn:hover,
.rr555-awaits__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600
}

.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: auto 1fr;
    align-items: center;
    padding: 3rem 3rem
  }

  .rr555-awaits__fig {
    width: 260px
  }
}

@media(max-width:480px) {
  .rr555-awaits__fig {
    width: 130px
  }
}

.rr555-recovery {
  background: #081500;
  position: relative;
  padding: 6rem 0 5.2rem;
  color: #ccff66;
  font-family: "Inter", sans-serif;
  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, #ccff66 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;
  gap: 1rem
}

/* 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
}

@media(min-width:800px) {
  .rr555-recovery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.3rem
  }
}

/* card */
.rr555-recovery__card {
  background: rgba(204,255,102,.04);
  border-radius: 20px;
  padding: 2rem 1.2rem 1.6rem;
  width: 100%;
  max-width: 250px;
  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: #ccff66;
  box-shadow: 0 4px 20px #ffe57335
}

/* tag + text */
.rr555-recovery__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  font-size: 1.04rem;
  max-width: 220px;
  margin: 0 auto
}

.rr555-recovery__tag {
  padding-left: 10px;
  border-left: 2px solid grey;
  display: flex;
  align-items: center;
  font-weight: 700;
  background: rgba(204,255,102,.12);
  border-radius: 6px;
  font-size: 1.09rem
}

/* links */
.rr555-recovery__link {
  color: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-recovery__link:hover {
  color: #44cc00
}

.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  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(204,255,102,.22), transparent);
  transform: skewX(-25deg)
}

.rr555-recovery__btn:hover,
.rr555-recovery__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600
}

.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: #ccff66;
  font-family: "Inter", sans-serif;
  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, #46118acc 20%, #16053fcc 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%, #ccff66 0%, transparent 100%)
}

.rr555-apphero__glow--2 {
  width: 220px;
  height: 180px;
  right: -90px;
  bottom: -10px;
  background: radial-gradient(circle at 40% 70%, #44cc00 0%, transparent 100%);
  animation-delay: 4s
}

@keyframes apphero-glow {
  0% {
    opacity: .12
  }

  100% {
    opacity: .25
  }
}

/* === container === */
.rr555-apphero__container {
  position: relative;
  z-index: 5;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem
}

.rr555-apphero__content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem
}

/* === 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: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-apphero__link:hover {
  color: #44cc00
}

.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(204,255,102,.18), transparent);
  transform: skewX(-25deg)
}

.rr555-apphero__btn--main {
  background: linear-gradient(90deg, #ccff66 40%, #44cc00 100%);
  color: #1f6600;
  box-shadow: 0 4px 24px #ffe5732c
}

.rr555-apphero__btn--ghost {
  background: none;
  color: #ccff66;
  border: 2px solid #ccff66
}

.rr555-apphero__btn--main:hover,
.rr555-apphero__btn--main:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 80%);
  color: #133300
}

.rr555-apphero__btn--ghost:hover,
.rr555-apphero__btn--ghost:focus {
  background: #ccff66;
  color: #133300;
  border-color: #44cc00
}

.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-appcards {
  background: #081500;
  position: relative;
  padding: 6rem 0 5.2rem;
  color: #ccff66;
  font-family: "Inter", sans-serif;
  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, #ccff66 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;
  gap: 1rem
}

/* 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
}

@media(min-width:880px) {
  .rr555-appcards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem
  }
}

/* Card */
.rr555-appcards__card {
  background: rgba(204,255,102,.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: #ccff66;
  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: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-appcards__link:hover {
  color: #44cc00
}

.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  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(204,255,102,.22), transparent);
  transform: skewX(-25deg)
}

.rr555-appcards__btn:hover,
.rr555-appcards__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600
}

.rr555-appcards__btn:hover::after {
  animation: appcards-sheen .6s forwards
}

@keyframes appcards-sheen {
  to {
    left: 130%
  }
}

.rr555-appfeatures {
  background: #081500;
  position: relative;
  padding: 6rem 0 5rem;
  color: #ccff66;
  font-family: "Inter", sans-serif;
  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: #ccff66;
  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: 1rem
}

@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: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-appfeatures__link:hover {
  color: #44cc00
}

.rr555-appfeatures__link:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

/* ===== Illustration ===== */
.rr555-appfeatures__figure {
  margin: 0;
  width: 200px;
  max-width: 55vw;
  perspective: 900px
}

.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  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(204,255,102,.22), transparent);
  transform: skewX(-25deg)
}

.rr555-appfeatures__btn:hover,
.rr555-appfeatures__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600
}

.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: #020a00;
  position: relative;
  padding: 6.5rem 0 6rem;
  color: #ccff66;
  font-family: "Inter", sans-serif
}

.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, #44cc00 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: 100%;
  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: #ccff66;
  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: 0.8rem
}

@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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  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(204,255,102,.22), transparent);
  transform: skewX(-25deg)
}

.rr555-install-split__btn:hover,
.rr555-install-split__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600
}

.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: #ccff66;
  font-family: "Inter", sans-serif;
  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, #560f96cc 20%, #160440cc 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%, #ccff66 0%, transparent 100%)
}

.rr555-bonushero__flare--2 {
  width: 220px;
  height: 170px;
  right: -80px;
  bottom: -40px;
  background: radial-gradient(circle at 40% 70%, #44cc00 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%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 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;
}

.rr555-bonushero__desc {
  font-size: 1.09rem;
  margin: 0;
  margin-bottom: 20px;
}

/* === 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(204,255,102,.18), transparent);
  transform: skewX(-25deg)
}

.rr555-bonushero__btn--main {
  background: linear-gradient(90deg, #ccff66 40%, #44cc00 100%);
  color: #1f6600;
  box-shadow: 0 4px 24px #ffe5732c
}

.rr555-bonushero__btn--ghost {
  background: none;
  color: #ccff66;
  border: 2px solid #ccff66
}

.rr555-bonushero__btn--main:hover,
.rr555-bonushero__btn--main:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 80%);
  color: #133300
}

.rr555-bonushero__btn--ghost:hover,
.rr555-bonushero__btn--ghost:focus {
  background: #ccff66;
  color: #133300;
  border-color: #44cc00
}

.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: #020a00;
  color: #ccff66;
  font-family: "Inter", sans-serif;
  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: #ccff66;
  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, #ccff66 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, #44cc00 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 {
  width: 90%;
  max-width: 720px;
  padding: 3rem 1.6rem;
  background: rgba(204,255,102,.06);
  border: 1px solid rgba(204,255,102,.15);
  border-radius: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 42px #ffe5731a;
  transform-style: preserve-3d;
  animation: cube-tilt 16s ease-in-out infinite alternate
}

@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: 1.6rem
}

.rr555-welcome__text {
  font-size: 1.07rem;
  margin: 0;
  max-width: 520px
}

.rr555-welcome__link {
  color: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-welcome__link:hover {
  color: #44cc00
}

.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  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(204,255,102,.25), transparent);
  transform: skewX(-25deg)
}

.rr555-welcome__btn:hover,
.rr555-welcome__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600
}

.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: #020a00;
  position: relative;
  padding: 6.5rem 0 6rem;
  color: #ccff66;
  font-family: "Inter", sans-serif;
  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, #ccff66 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, #44cc00 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: 0.8rem
}

@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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  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(204,255,102,.22), transparent);
  transform: skewX(-25deg)
}

.rr555-reload__btn:hover,
.rr555-reload__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600
}

.rr555-reload__btn:hover::after {
  animation: btnSwipe .6s forwards
}

@keyframes btnSwipe {
  to {
    left: 130%
  }
}

.rr555-vip {
  background: #020a00;
  position: relative;
  padding: 7rem 1rem 6.5rem;
  color: #ccff66;
  font-family: "Inter", sans-serif;
  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: 100%;
  border-radius: 24px;
  display: block;
  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: 760px;
  margin: 0 auto;
  background: rgba(204,255,102,.05);
  border: 1px solid rgba(204,255,102,.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;
  max-width: 540px
}

/* === 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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  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(204,255,102,.25), transparent);
  transform: skewX(-25deg)
}

.rr555-vip__btn:hover,
.rr555-vip__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600
}

.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, #1f6600 0, #020a00 100%);
  position: relative;
  padding: 7.5rem 0 6.5rem;
  color: #ccff66;
  font-family: "Inter", sans-serif;
  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: #ccff66;
  animation-delay: 1s;
}

.rr555-bonustrans2__icon--clock {
  right: 13vw;
  top: 22vh;
  color: #44cc00;
  animation-delay: 3.3s;
}

.rr555-bonustrans2__icon--shield {
  left: 50vw;
  bottom: 7vh;
  color: #ccff66;
  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, #ccff66, #44cc00 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(204,255,102,.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%, #ccff66 0, #44cc00 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: 0.5rem
}

.rr555-bonustrans2__title {
  font-size: 2.3rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #ccff66 20%, #44cc00 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(19,51,0,.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, #ccff66 10%, #44cc00 90%);
  color: #081500;
  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(204,255,102,.22), transparent);
  transform: skewX(-25deg)
}

.rr555-bonustrans2__btn:hover,
.rr555-bonustrans2__btn:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 90%);
  color: #1f6600
}

.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: #ccff66;
  font-family: "Inter", sans-serif;
  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, #1f6600 20%, #160440e0 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%, #ccff66 0%, transparent 100%)
}

.rr555-aviatorhero__flare--2 {
  width: 190px;
  height: 150px;
  right: -80px;
  bottom: -50px;
  background: radial-gradient(circle at 40% 70%, #44cc00 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;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 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
}

.rr555-aviatorhero__desc {
  font-size: 1.09rem;
  margin: 0;
  margin-bottom: 20px;
}

.rr555-aviatorhero__link {
  color: #ccff66;
  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: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.42, .08, .62, 1)
}

.rr555-aviatorhero__link:hover {
  color: #44cc00
}

.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(204,255,102,.18), transparent);
  transform: skewX(-25deg)
}

.rr555-aviatorhero__btn--main {
  background: linear-gradient(90deg, #ccff66 40%, #44cc00 100%);
  color: #133300;
  box-shadow: 0 4px 24px #ffe5732c
}

.rr555-aviatorhero__btn--ghost {
  background: none;
  color: #ccff66;
  border: 2px solid #ccff66
}

.rr555-aviatorhero__btn--main:hover,
.rr555-aviatorhero__btn--main:focus {
  background: linear-gradient(90deg, #44cc00 10%, #ccff66 80%);
  color: #133300
}

.rr555-aviatorhero__btn--ghost:hover,
.rr555-aviatorhero__btn--ghost:focus {
  background: #ccff66;
  color: #133300;
  border-color: #44cc00
}

.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;
    gap: 2.2rem
  }
}
.rr555-aviatorlux {
  position: relative;
  background: linear-gradient(125deg, #133300 0%, #1f6600 85%, #1f6600 100%);
  padding: 7rem 0 6.5rem 0;
  color: #ccff66;
  font-family: "Inter",sans-serif;
  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%, #ccff66 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,#ccff66 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,#ccff66 20%,#ccff66 60%,#44cc00 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rr555-aviatorlux__text {
  font-size: 1.1rem;
  margin: 0;
  background:rgba(31,102,0,0.15);
  padding: .95rem 1.3rem;
  border-radius: 15px;
  box-shadow: 0 3px 20px #f855ee1c;
}

.rr555-aviatorlux__link {
  color:#ccff66;
  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:currentColor;
  transform:scaleX(0);transform-origin:right;
  transition:transform .3s cubic-bezier(.42,.08,.62,1);
}
.rr555-aviatorlux__link:hover { color:#44cc00; }
.rr555-aviatorlux__link:hover::before{ transform:scaleX(1);transform-origin:left;}

.rr555-aviatorlux__btn {
  display:inline-block;
  margin-top:1.6rem;
  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,#ccff66 20%,#44cc00 90%);
  color:#133300;
  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(204,255,102,.22),transparent);
  transform:skewX(-25deg);
}
.rr555-aviatorlux__btn:hover,
.rr555-aviatorlux__btn:focus {
  background:linear-gradient(90deg,#44cc00 15%,#ccff66 90%);
  color:#1f6600;
}
.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:flex-start;
    gap:4.6rem;
  }
  .rr555-aviatorlux__figure {margin: 0 0 0 0;}
  .rr555-aviatorlux__content {align-items: center;}
}

.rr555-aviatorsteps {
  position: relative;
  background: linear-gradient(140deg, #081500 0%, #1f6600 70%, #133300 100%);
  padding: 7rem 0 6.7rem 0;
  color: #ccff66;
  font-family: "Inter",sans-serif;
  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, #ccff66 30%, #ccff66 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-aviatorsteps__img {
  width: 100%; 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;
  padding: 5px;
  background: linear-gradient(90deg,#ccff66 20%,#ccff66 60%,#44cc00 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.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(204,255,102,0.09);
  border-radius: 12px; padding: 1.1em 1.4em;
  box-shadow:0 2px 14px #ffe5730d;
  text-align:center;
  margin: 0 auto;
}
.rr555-aviatorsteps__link {
  color: #ccff66; 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:currentColor;
  transform:scaleX(0);transform-origin:right;
  transition:transform .3s cubic-bezier(.42,.08,.62,1);
}
.rr555-aviatorsteps__link:hover { color:#44cc00; }
.rr555-aviatorsteps__link:hover::before{ transform:scaleX(1);transform-origin:left;}
.rr555-aviatorsteps__info {
  font-size:1.04rem; color:#ccff66; margin:.5em auto 0 auto; background:rgba(19,51,0,.13);
  border-radius: 10px; padding: .76em 1.2em; box-shadow:0 2px 10px #ffe5730b;
  max-width: 430px;
}
.rr555-aviatorsteps__btn {
  display:inline-block; margin-top:1.5rem; 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,#ccff66 10%,#44cc00 90%); color:#133300;
  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(204,255,102,.22),transparent);
  transform:skewX(-25deg);
}
.rr555-aviatorsteps__btn:hover,
.rr555-aviatorsteps__btn:focus {
  background:linear-gradient(90deg,#44cc00 15%,#ccff66 90%);
  color:#1f6600;
}
.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, #1f6600 0%, #081500 85%, #133300 100%);
  padding: 7rem 0 6.5rem 0;
  color: #ccff66;
  font-family: "Inter",sans-serif;
  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, #ccff66 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, #44cc00 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; width: 195px; 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%;
  max-width: 860px;
}
@media (min-width:600px) {
  .rr555-aviatorwhy__cards { grid-template-columns: 1fr 1fr; }
}
.rr555-aviatorwhy__card {
  display: flex; align-items: center; background:rgba(204,255,102,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: #ccff66;
  margin-right:.32em;
  margin-top:.15em;
  text-shadow:0 2px 18px #ffe57333;
  background:linear-gradient(135deg,#ccff66,#44cc00 66%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  filter:drop-shadow(0 0 12px #ffe57322);
}
.rr555-aviatorwhy__info {}
.rr555-aviatorwhy__mark {
  font-weight: 700;
  color:#ccff66;
  padding-left:10px;
  border-left:2px solid grey;
  
  margin-bottom:.16em;
  font-size:1.1rem;
}
.rr555-aviatorwhy__text {
  font-size:1.07rem;color:#ccff66;
  margin:0;
}

.rr555-aviatorwhy__btn {
  display:inline-block; margin-top:2.2rem; 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,#ccff66 10%,#44cc00 90%); color:#133300;
  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(204,255,102,.22),transparent);
  transform:skewX(-25deg);
}
.rr555-aviatorwhy__btn:hover,
.rr555-aviatorwhy__btn:focus {
  background:linear-gradient(90deg,#44cc00 15%,#ccff66 90%);
  color:#1f6600;
}
.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; flex-direction: column; }
}

.rr555-crazyhero{
  position:relative;display:flex;align-items:center;justify-content:center;
  color:#ccff66;font-family:"Inter",sans-serif;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:#ccff66;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,#1f6600 0%,#081500 90%);
  opacity:.9
}

/* === Container === */
.rr555-crazyhero__container{
  position:relative;z-index:5;max-width:1080px;width:100%;padding:2.2rem;
}

/* === Headline & copy === */
.rr555-crazyhero__title{
  font-size:clamp(2.3rem,5vw,3rem);font-weight:800;margin:0 0 1.05em;
}
.rr555-crazyhero__desc{font-size:1.09rem;max-width:620px;margin:0 auto}
.rr555-crazyhero__link{
  color:#ccff66;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:currentColor;
  transform:scaleX(0);transform-origin:right;transition:transform .3s cubic-bezier(.42,.08,.62,1);
}
.rr555-crazyhero__link:hover{color:#44cc00}
.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(204,255,102,.21),transparent);
  transform:skewX(-25deg)
}
.rr555-crazyhero__btn--main{
  background:linear-gradient(90deg,#ccff66 35%,#44cc00 100%);color:#133300;
  box-shadow:0 4px 24px #ffe57330
}
.rr555-crazyhero__btn--ghost{
  background:none;color:#ccff66;border:2px solid #ccff66
}
.rr555-crazyhero__btn--main:hover,
.rr555-crazyhero__btn--main:focus{
  background:linear-gradient(90deg,#44cc00 15%,#ccff66 85%);color:#133300
}
.rr555-crazyhero__btn--ghost:hover,
.rr555-crazyhero__btn--ghost:focus{
  background:#ccff66;color:#133300;border-color:#44cc00
}
.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, #081500 0%, #1f6600 80%);
  padding: 6.5rem 0 6rem;
  color: #ccff66;
  font-family: "Inter", sans-serif;
  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, #ccff66 0%, transparent 80%);
}
.rr555-crazywhy2__flare--right {
  width: 200px; height: 140px;
  right: -60px; bottom: 15%;
  background: radial-gradient(circle, #44cc00 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;
  box-shadow: 0 10px 42px #ffe57322, 0 0 0 3px #f855ee20;
  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, #ccff66 20%, #44cc00 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(204,255,102,0.04);
  border-radius: 12px;
  box-shadow: 0 2px 16px #ffe57310;
}

/* links */
.rr555-crazywhy2__link {
  color: #ccff66; 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: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s cubic-bezier(.42,.08,.62,1);
}
.rr555-crazywhy2__link:hover {
  color: #44cc00;
}
.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, #ccff66 15%, #44cc00 90%);
  color: #133300; 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(204,255,102,.22), transparent);
  transform: skewX(-25deg);
}
.rr555-crazywhy2__btn:hover,
.rr555-crazywhy2__btn:focus {
  background: linear-gradient(90deg, #44cc00 15%, #ccff66 85%);
  color: #133300;
}
.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: normal !important;
}

.rr555-wheelinfo{
  position:relative;background:#081500;padding:7rem 0 6.5rem;color:#ccff66;
  font-family:"Inter",sans-serif;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%,#ccff66 0 20%,#44cc00 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; gap:2rem;text-align:left; margin-top: 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;
  animation:wheel-tilt 12s ease-in-out infinite alternate
}
@keyframes wheel-tilt{0%{transform:rotateY(-9deg)}100%{transform:rotateY(9deg)}}

/* Text boxes */
.rr555-wheelinfo__box{
  font-size:1.07rem;background:rgba(204,255,102,.05);padding:1.2rem 1.4rem;border-radius:16px;
  box-shadow:0 3px 22px #ffe57312;margin:0;text-align: center;
}
.rr555-wheelinfo__mark{
  padding-left:10px;border-left:2px solid grey;display:flex;align-items:center;
  font-weight:700;color:#ccff66
}
.rr555-wheelinfo__link{
  color:#ccff66;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:currentColor;
  transform:scaleX(0);transform-origin:right;transition:transform .3s cubic-bezier(.42,.08,.62,1)
}
.rr555-wheelinfo__link:hover{color:#44cc00}
.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,#ccff66 15%,#44cc00 90%);color:#133300;
  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(204,255,102,.22),transparent);
  transform:skewX(-25deg)
}
.rr555-wheelinfo__btn:hover,.rr555-wheelinfo__btn:focus{
  background:linear-gradient(90deg,#44cc00 20%,#ccff66 90%);color:#133300
}
.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:normal!important}

.rr555-bonuscards{
  position:relative;background:#081500;padding:7rem 1.2rem 6rem;color:#ccff66;
  font-family:"Inter",sans-serif;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:#ccff66}
.rr555-bonuscards__spark--2{width:150px;height:110px;right:12vw;top:32vh;background:#44cc00;animation-delay:4s}
.rr555-bonuscards__spark--3{width:200px;height:140px;left:45vw;bottom:10vh;background:#ccff66;animation-delay:8s}
@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 1rem;
  background:linear-gradient(90deg,#ccff66 20%,#44cc00 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(204,255,102,.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:#ccff66;font-size:1.12rem
}
.rr555-bonuscards__text{font-size:1.03rem;margin:0}

/* Link inside text */
.rr555-bonuscards__link{
  color:#ccff66;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:currentColor;
  transform:scaleX(0);transform-origin:right;transition:transform .3s cubic-bezier(.42,.08,.62,1)
}
.rr555-bonuscards__link:hover{color:#44cc00}
.rr555-bonuscards__link:hover::before{transform:scaleX(1);transform-origin:left}

/* CTA Button */
.rr555-bonuscards__btn{
  display:inline-block;margin-top:3rem;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,#ccff66 15%,#44cc00 90%);color:#133300;
  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(204,255,102,.22),transparent);
  transform:skewX(-25deg)
}
.rr555-bonuscards__btn:hover,.rr555-bonuscards__btn:focus{
  background:linear-gradient(90deg,#44cc00 20%,#ccff66 90%);color:#133300
}
.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:normal!important}























/* ===== base ===== */
.zfooter {
  background: #133300;
  color: #ccff66;
  font-size: .95rem;
  padding: 60px 6vw 120px;
  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: #ccff66;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s
}

.zfooter__links a:hover {
  color: #ccff66
}

.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: #44cc00;
  display: flex;
  align-items: center;
  gap: 6px
}

.zfooter__age-text {
  margin: 0;
  font-size: .9rem;
  color: #ccff66
}

.zfooter__care a {
  color: #44cc00;
  margin-right: 18px;
  width: 130px;
  text-decoration: none
}

.zfooter__care a:hover {
  color: #ccff66
}

/* 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: #44cc00;
  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 #44cc00;
  border-radius: 6px
}

/* divider (mobile only) */
.zfooter__divider {
  border: none;
  border-top: 1px solid #1f6600;
  display: none;
  margin: 16px 0
}

/* 4 ▸ socials */
.zfooter__social {
  display: flex;
  gap: 18px;
  justify-content: center
}

.zfooter__social a {
  color: #ccff66;
  font-size: 1.9rem;
  transition: color .2s
}

.zfooter__social a:hover {
  color: #44cc00
}

/* 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: #ccff66;
  margin: 0
}

.zfooter__closing-text {
  margin: 0;
  color: #ccff66;

}

/* ===== 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-bonuscards__grid,.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
  }
}

/* ========== 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: #ccff66;
  font-family: "Inter", Arial, sans-serif;
  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(204,255,102,0.96);
  color: #081500;
  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;
  }

  .rr555-crazyhero__desc {
    margin-bottom: 15px;
  }
}



.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%;
}



.gam a img {
  max-width: 70px;
}

.cirle {
  border-radius: 100%;
  background-color: red;
  color: white;
  font-size: 30px;
  padding: 12px;
}

.dnone {
  display: none;
}




[class*="btn"]:not([class*="wrap"]),
[class*="button"]:not([class*="buttons"]) {
  padding: 20px 30px;
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
  animation:
    glow-pulse-const 2s infinite alternate ease-in-out,
    scale-pulse 2s infinite ease-in-out;
}

@keyframes scale-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes glow-pulse-const {
  0% {
    box-shadow:
      0 0 6px rgba(68,204,0,0.5),
      0 0 12px rgba(68,204,0,0.3);
  }

  50% {
    box-shadow:
      0 0 12px rgba(68,204,0,0.8),
      0 0 24px rgba(68,204,0,0.6);
  }

  100% {
    box-shadow:
      0 0 8px rgba(68,204,0,0.6),
      0 0 16px rgba(68,204,0,0.4);
  }
}

.ze77-appfocus__subtitle {
  color: white;
}

h1[class*="title"]:not([class*="subtitle"]) {
  font-size: 2.5em;
  line-height: 1;
      margin-top: 3rem;
  margin-bottom: 25px;
}

h2[class*="title"] {
  line-height: 1;
  margin-bottom: 20px;
}

[class*="content"] {
  text-align: center;
}

[class*="heading"],
[class*="text"] {
  text-align: center;
}

[class*="actions"] {
  text-align: center;
  justify-content: center;
}

@media (max-width: 768px) {

  h1[class*="title"]:not([class*="subtitle"]) {
    font-size: 2.4em;
    margin-top: 0;
    line-height: 1;
  }

  h1[class*="title"]:not([class*="subtitle"]) {
  font-size: 2.5em;
  line-height: 1;
  margin-bottom: 25px;
}

.rr555-casinohero__content,.rr555-bet-hero__content,.rr555-bonushero__content,.rr555-loginhero__content,.rr555-apphero__content, .rr555-aviatorhero__content, .rr555-slotshero__content,  .rr555-gameshero__content {
  padding: 10px;
}

  [class*="btn"]:not([class*="wrap"]),
  [class*="button"]:not([class*="buttons"]) {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    animation:
      glow-pulse-const 1.8s infinite alternate ease-in-out,
      scale-pulse 2.5s infinite ease-in-out;
  }

}

.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: 50px;
  }
}

@media (max-width: 768px) {

  section {
    padding: 20px !important;
  }

  .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%;
  }

  .cv666-luxehero__cta-row,
  .n777-why__container,
  .n777-highlights__container,
  .ze77-applite__actions,
  .n7wl-grid,
  .n7dk-wrapper,
  .n7lp-container,
  .n7gr-grid,
  .sportcards299__spinner,.rr555-install-split__wrapper,
  .n7ct-wrap,
  .bonuscal-8iii__flex,
  .ze77-hero__actions,.rr555-wheelinfo__container,
  .n7bt-inner,
  .nx7l-actions,
  .bee999-allgames__actions,
  .ze77-games__actions,
  .ze77-slots__actions {
    display: flex;
    flex-direction: column;

  }

  [class*="actions"], [class*="cta"] {
    gap: 0;
  }

  [class*="container"] {

    padding: 5px;
  }
}

@media (max-width: 505px) {}



.n7fixed-bonus-banner {

  margin-bottom: 0 !important;
}


html,
body {
  height: 100%;

  display: flex;
  flex-direction: column;
}

/* Основной контейнер, который растягивается */
main {
  flex: 1;
  /* Этот блок занимает всё доступное пространство */
  padding-top: 57px;
}

/* Футер всегда внизу */
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;
}