.rr-live-page {
  --rr-blue: #1857ef;
  --rr-blue-dark: #0d2f8f;
  --rr-ink: #10204a;
  --rr-muted: #5d6780;
  --rr-line: #dfe7fb;
  --rr-soft: #f4f7ff;
  --rr-green: #0a9b68;
  --rr-orange: #e56e14;
  color: var(--rr-ink);
  background: #fff;
}

.rr-live-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.6rem, 9vw, 7.4rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: linear-gradient(135deg, #f1f6ff 0%, #fff 48%, #f4f0ff 100%);
}

.rr-live-hero::before,
.rr-live-hero::after {
  position: absolute;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  content: "";
  filter: blur(2px);
  opacity: .22;
  animation: rr-float 8s ease-in-out infinite;
}

.rr-live-hero::before {
  top: -14rem;
  right: -7rem;
  background: #6747ff;
}

.rr-live-hero::after {
  bottom: -18rem;
  left: -8rem;
  background: #2d8cff;
  animation-delay: -4s;
}

.rr-live-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.rr-live-eyebrow,
.rr-live-status {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .48rem .75rem;
  border: 1px solid rgba(24, 87, 239, .16);
  border-radius: 999px;
  color: var(--rr-blue);
  background: rgba(255, 255, 255, .82);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.rr-live-eyebrow::before {
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: #16bf7f;
  box-shadow: 0 0 0 .28rem rgba(22, 191, 127, .13);
  content: "";
}

.rr-live-hero h1 {
  max-width: 820px;
  margin: 1.2rem 0 .9rem;
  color: #10204a;
  font-size: clamp(2.35rem, 6vw, 4.65rem);
  line-height: .99;
  letter-spacing: -.055em;
}

.rr-live-hero__lead {
  max-width: 720px;
  margin: 0;
  color: #53617c;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.72;
}

.rr-live-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.2rem;
  margin-top: 1.4rem;
  color: #5f6b84;
  font-size: .87rem;
}

.rr-live-meta span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.rr-live-meta span::before {
  color: var(--rr-blue);
  content: "✓";
  font-weight: 900;
}

.rr-live-section {
  padding: clamp(3.4rem, 7vw, 5.6rem) 0;
}

.rr-live-section--soft {
  background: var(--rr-soft);
}

.rr-live-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.rr-live-heading h2 {
  margin: 0;
  color: var(--rr-ink);
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.rr-live-heading p {
  max-width: 650px;
  margin: .65rem 0 0;
  color: var(--rr-muted);
  line-height: 1.65;
}

.rr-live-count {
  flex: 0 0 auto;
  padding: .65rem .9rem;
  border: 1px solid var(--rr-line);
  border-radius: .8rem;
  color: var(--rr-blue);
  background: #fff;
  font-weight: 800;
}

.rr-reward-grid,
.rr-event-grid,
.rr-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.rr-reward-card,
.rr-event-card,
.rr-related-card,
.rr-editorial-card,
.rr-empty-card,
.rr-source-card {
  border: 1px solid var(--rr-line);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 14px 42px rgba(31, 62, 134, .08);
}

.rr-reward-card,
.rr-event-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.rr-reward-card::before,
.rr-event-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: .28rem;
  background: linear-gradient(#286bff, #7048f6);
  content: "";
}

.rr-reward-card:hover,
.rr-event-card:hover,
.rr-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 87, 239, .34);
  box-shadow: 0 20px 48px rgba(31, 62, 134, .14);
}

.rr-reward-card__top,
.rr-event-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .8rem;
}

.rr-reward-amount {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.rr-reward-amount__icon {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  border-radius: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #2368ff, #6944f5);
  box-shadow: 0 9px 22px rgba(46, 91, 229, .25);
  font-size: 1.45rem;
}

.rr-reward-amount strong {
  display: block;
  color: var(--rr-ink);
  font-size: 1.28rem;
  letter-spacing: -.02em;
}

.rr-reward-amount small {
  color: var(--rr-muted);
  font-size: .78rem;
}

.rr-live-status {
  padding: .34rem .56rem;
  border-color: rgba(10, 155, 104, .18);
  color: var(--rr-green);
  background: #ecfbf5;
  font-size: .64rem;
}

.rr-live-status--soon {
  border-color: rgba(229, 110, 20, .2);
  color: var(--rr-orange);
  background: #fff5e9;
}

.rr-reward-card__time,
.rr-event-card__time {
  margin: 1.15rem 0;
  padding: .75rem .85rem;
  border-radius: .85rem;
  color: #53617c;
  background: var(--rr-soft);
  font-size: .84rem;
  line-height: 1.45;
}

.rr-claim-button {
  display: inline-flex;
  width: 100%;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: .9rem;
  color: #fff;
  background: linear-gradient(135deg, #1857ef, #6643ee);
  box-shadow: 0 10px 24px rgba(24, 87, 239, .22);
  font-weight: 850;
  text-decoration: none;
  transition: filter .2s ease, transform .2s ease;
}

.rr-claim-button:hover {
  color: #fff;
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.rr-event-card h3 {
  margin: .9rem 0 .3rem;
  color: var(--rr-ink);
  font-size: 1.1rem;
  line-height: 1.25;
}

.rr-event-card__type {
  color: var(--rr-blue);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.rr-event-card__state {
  display: inline-flex;
  padding: .35rem .55rem;
  border-radius: 999px;
  color: var(--rr-blue);
  background: #edf3ff;
  font-size: .68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.rr-event-card__state--active {
  color: var(--rr-green);
  background: #eafaf4;
}

.rr-empty-card,
.rr-source-card {
  grid-column: 1 / -1;
  padding: clamp(1.4rem, 4vw, 2.2rem);
}

.rr-empty-card {
  text-align: center;
}

.rr-empty-card__icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 1.2rem;
  background: var(--rr-soft);
  font-size: 1.8rem;
}

.rr-empty-card h3,
.rr-source-card h2 {
  margin: 0 0 .55rem;
  color: var(--rr-ink);
}

.rr-empty-card p,
.rr-source-card p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--rr-muted);
  line-height: 1.65;
}

.rr-source-card p {
  margin: 0;
}

.rr-source-card a {
  color: var(--rr-blue);
  font-weight: 750;
}

.rr-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
}

.rr-editorial-card {
  padding: clamp(1.35rem, 4vw, 2.1rem);
}

.rr-editorial-card h2,
.rr-editorial-card h3 {
  color: var(--rr-ink);
  letter-spacing: -.025em;
}

.rr-editorial-card h2 {
  margin-top: 0;
}

.rr-editorial-card p,
.rr-editorial-card li {
  color: var(--rr-muted);
  line-height: 1.72;
}

.rr-editorial-card li + li {
  margin-top: .55rem;
}

.rr-faq-list {
  display: grid;
  gap: .72rem;
}

.rr-faq-list details {
  border: 1px solid var(--rr-line);
  border-radius: 1rem;
  background: #fff;
}

.rr-faq-list summary {
  padding: 1rem 1.15rem;
  color: var(--rr-ink);
  cursor: pointer;
  font-weight: 800;
}

.rr-faq-list details p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  color: var(--rr-muted);
  line-height: 1.65;
}

.rr-related-card {
  display: flex;
  min-height: 11rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.rr-related-card span {
  font-size: 1.35rem;
}

.rr-related-card h3 {
  margin: .75rem 0 .45rem;
  color: var(--rr-ink);
  line-height: 1.25;
}

.rr-related-card b {
  color: var(--rr-blue);
  font-size: .84rem;
}

.rr-disclaimer {
  margin-top: 1.2rem;
  color: #747e94;
  font-size: .76rem;
  line-height: 1.6;
}

.rr-motion-ready [data-live-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

.rr-motion-ready [data-live-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1);
}

@keyframes rr-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 16px, 0); }
}

@media (max-width: 900px) {
  .rr-reward-grid,
  .rr-event-grid,
  .rr-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rr-editorial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .rr-live-heading { align-items: flex-start; flex-direction: column; }
  .rr-reward-grid,
  .rr-event-grid,
  .rr-related-grid { grid-template-columns: 1fr; }
  .rr-live-hero h1 { font-size: clamp(2.35rem, 13vw, 3.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  .rr-live-hero::before,
  .rr-live-hero::after { animation: none; }
  .rr-reward-card,
  .rr-event-card,
  .rr-related-card,
  .rr-claim-button,
  .rr-motion-ready [data-live-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

