.rb-flame .rb-flame__arena {
  position: relative;
  max-width: 36rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 1.6rem;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, #7f1d1d 0%, var(--rb-card) 55%, #0f172a 100%);
  border: 1px solid color-mix(in srgb, #f97316 45%, rgba(255, 255, 255, 0.15));
  box-shadow: 0 0 60px rgba(249, 115, 22, 0.2);
}
.rb-flame .rb-flame__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(251, 191, 36, 0.35), transparent 55%);
  animation: rb-flame-bg 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes rb-flame-bg {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.rb-flame .rb-flame__flames {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 55%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.15rem;
  pointer-events: none;
  opacity: 0.85;
}
.rb-flame .rb-flame__f {
  width: 28%;
  max-width: 100px;
  height: 100%;
  border-radius: 50% 50% 20% 20% / 70% 70% 30% 30%;
  background: linear-gradient(180deg, #fef08a 0%, #f97316 40%, #dc2626 85%, transparent 100%);
  filter: blur(0.5px);
  animation: rb-flame-flicker 0.8s ease-in-out infinite alternate;
  transform-origin: bottom center;
}
.rb-flame .rb-flame__f--1 { animation-delay: 0s; }
.rb-flame .rb-flame__f--2 { animation-delay: 0.15s; }
.rb-flame .rb-flame__f--3 { animation-delay: 0.3s; }
@keyframes rb-flame-flicker {
  from { transform: scale(0.94, 0.88); filter: blur(0.5px) brightness(1); }
  to { transform: scale(1.06, 1.1); filter: blur(1px) brightness(1.18); }
}
.rb-flame .rb-flame__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.rb-flame .rb-flame__num {
  display: block;
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--rb-text);
  text-shadow:
    0 0 20px #f97316,
    0 0 40px rgba(251, 191, 36, 0.6);
}
.rb-flame .rb-flame__unit {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fed7aa;
}
.rb-flame .rb-flame__mult {
  display: inline-block;
  margin: 0.85rem 0 0.65rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #1c1917;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.5);
}
.rb-flame .rb-flame__sub {
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--rb-muted);
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}
