/* ═══════════════════════════════════════════════════
   RITZA RAFFLES — Landing Page Styles
   Clean · Trustworthy · Investor-Ready
   ═══════════════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0b2545;
  --navy-mid:  #163d6a;
  --navy-lt:   #1e5799;
  --gold:      #e8a000;
  --gold-l:    #f0b429;
  --gold-pale: #fef9ec;
  --green:     #059669;
  --purple:    #7c3aed;
  --red:       #dc2626;
  --bg:        #f8f9fb;
  --white:     #ffffff;
  --gray-100:  #f1f4f8;
  --gray-200:  #e2e8f0;
  --gray-400:  #94a3b8;
  --gray-600:  #475569;
  --gray-800:  #1e293b;
  --text:      #1a2535;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow:    0 4px 20px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --transition: .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.2; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared Buttons ─────────────────────────────── */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--navy);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid var(--navy);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-solid:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: transparent;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--navy); background: var(--gray-100); }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: var(--gold-l);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(240,180,41,.35);
}
.btn-hero-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,180,41,.45); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 30px;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.35);
  transition: var(--transition);
  cursor: pointer;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }

/* ── Section Shared ─────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin: 12px 0 16px;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid #f3d97a;
}

/* ── NAV ────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold-l); }

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
  margin-left: auto;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, var(--navy) 0%, #0f3460 55%, #163d6a 100%);
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(240,180,41,.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 64px;
}

.hero-text { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(240,180,41,.15);
  border: 1px solid rgba(240,180,41,.3);
  color: var(--gold-l);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.03em;
}
.hero h1 span { color: var(--gold-l); }

.hero-text > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* ── Hero Card Stack ────────────────────────────── */
.hero-visual { position: relative; z-index: 1; }

.hero-card-stack {
  position: relative;
  height: 360px;
}

.hc {
  position: absolute;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.hc-back {
  top: 0;
  right: 140px;
  transform: rotate(-6deg);
  opacity: .5;
  z-index: 1;
}
.hc-mid {
  top: 30px;
  right: 60px;
  transform: rotate(2deg);
  opacity: .8;
  z-index: 2;
}
.hc-front {
  top: 70px;
  right: 0;
  z-index: 3;
  border: 2px solid var(--gold-l);
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hc-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hc-prize {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.hc-value {
  font-size: .82rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 14px;
}
.hc-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 6px;
}
.hc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--gold-l));
  border-radius: 100px;
}
.hc-meta {
  font-size: .78rem;
  color: var(--gray-400);
}

.hc-winner-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.hc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold-l));
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hc-winner-name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.hc-winner-loc  { font-size: .78rem; color: var(--gray-400); }
.hc-prize-won   { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.hc-prize-val   { font-size: .8rem; color: var(--gray-400); }

/* ── STATS ───────────────────────────────────────── */
.stats-section {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 48px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 8px 24px;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.stat-lbl {
  font-size: .85rem;
  color: var(--gray-600);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ── HOW IT WORKS ────────────────────────────────── */
.how-section {
  padding: 100px 0;
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: transparent;
}

.step-num {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 900;
  color: var(--gray-200);
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}
.step-icon-wrap.navy   { background: var(--navy); }
.step-icon-wrap.gold   { background: var(--gold-l); color: var(--navy); }
.step-icon-wrap.purple { background: var(--purple); }
.step-icon-wrap.green  { background: var(--green); }

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── LIVE RAFFLES PREVIEW ────────────────────────── */
.raffles-preview-section {
  padding: 100px 0;
  background: var(--white);
}

.raffles-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rp-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}
.rp-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }

.rp-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.rp-body { padding: 20px; }

.rp-hot {
  display: inline-block;
  padding: 3px 10px;
  background: #fff3e0;
  color: #e65100;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 10px;
}

.rp-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.rp-val {
  font-size: .82rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 14px;
}

.rp-bar-wrap { margin-bottom: 16px; }
.rp-bar-bg {
  height: 6px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 6px;
}
.rp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--gold-l));
  border-radius: 100px;
  transition: width .8s ease;
}
.rp-bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--gray-400);
}

.rp-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.rp-cost { font-size: .82rem; color: var(--gray-600); font-weight: 500; }

.btn-enter-preview {
  display: inline-flex;
  padding: 8px 18px;
  background: var(--navy);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
}
.btn-enter-preview:hover { background: var(--navy-mid); transform: translateX(2px); }

/* ── IMPACT ──────────────────────────────────────── */
.impact-section {
  padding: 100px 0;
  background: var(--bg);
}

.impact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.impact-text .section-tag { margin-bottom: 20px; display: inline-block; }

.impact-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}
.impact-text > p {
  font-size: .97rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 32px;
}

.impact-list { margin-bottom: 36px; display: flex; flex-direction: column; gap: 20px; }

.impact-li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.impact-li-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.impact-li strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.impact-li span {
  font-size: .85rem;
  color: var(--gray-600);
}

.impact-cards { display: flex; flex-direction: column; gap: 20px; }

.kid-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.kid-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.kid-photo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: relative;
}
.pp-soccer { background: linear-gradient(135deg, #0b2545, #1e5799); }
.pp-music  { background: linear-gradient(135deg, #4c1d95, #7c3aed); }

.kid-emoji { font-size: 2.4rem; }
.kid-tag {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.12);
  padding: 4px 12px;
  border-radius: 100px;
}

.kid-card > p {
  padding: 16px 20px 8px;
  font-size: .9rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.6;
}
.kid-funded {
  display: block;
  padding: 0 20px 16px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
}

/* ── WINNERS ─────────────────────────────────────── */
.winners-section {
  padding: 100px 0;
  background: var(--white);
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.w-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}
.w-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }

.w-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}

.w-body { padding: 20px; }

.w-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.w-loc { font-size: .78rem; color: var(--gray-400); font-weight: 400; }

.w-prize {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.w-quote {
  font-size: .87rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 3px solid var(--gray-200);
}

.w-meta { font-size: .76rem; color: var(--gray-400); }

/* ── CTA SECTION ─────────────────────────────────── */
.cta-section {
  padding: 80px 0;
  background: var(--bg);
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #0f3460 100%);
  border-radius: 24px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(240,180,41,.08);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-box > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  position: relative; z-index: 1;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-trust span {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-top {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-brand { max-width: 280px; }

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.footer-logo span { color: var(--gold-l); }

.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 60px;
  margin-left: auto;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links strong {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text > p { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: flex; justify-content: center; }
  .hero-card-stack { width: 340px; height: 320px; }
  .hc-back  { right: 120px; }
  .hc-mid   { right: 50px; }
  .hc-front { right: 0; top: 60px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-split { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 200;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 1.3rem;
  }
  .nav-links.open a { color: var(--navy); font-size: 1.2rem; }
  .nav-actions .btn-outline { display: none; }
  .nav-burger { display: block; }

  .hero { padding: 60px 0 80px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-card-stack { display: none; }

  .stats-grid { gap: 0; }
  .stat-item { min-width: 140px; padding: 8px 16px; }
  .stat-num { font-size: 1.8rem; }
  .stat-divider { display: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .raffles-preview-grid { grid-template-columns: 1fr; }
  .winners-grid { grid-template-columns: 1fr; }

  .cta-box { padding: 48px 24px; }

  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; margin-left: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-badge { font-size: .72rem; }
  .btn-hero-primary, .btn-hero-ghost { padding: 14px 22px; font-size: .95rem; }
  .stat-item { min-width: 120px; }
  .stat-num { font-size: 1.5rem; }
}

/* ── Scroll-in fade animation ───────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.steps-grid .step-card:nth-child(2) { transition-delay: .08s; }
.steps-grid .step-card:nth-child(3) { transition-delay: .16s; }
.steps-grid .step-card:nth-child(4) { transition-delay: .24s; }

.raffles-preview-grid .rp-card:nth-child(2) { transition-delay: .1s; }
.raffles-preview-grid .rp-card:nth-child(3) { transition-delay: .2s; }

.winners-grid .w-card:nth-child(2) { transition-delay: .1s; }
.winners-grid .w-card:nth-child(3) { transition-delay: .2s; }
