/* ════════════════════════════════════════════════════════════
   RANKING PAGE v3 — VIP Leaderboard (reference match)
   huanha.shop  |  ranking.css
════════════════════════════════════════════════════════════ */

/* ── Page wrapper ─────────────────────────────────────────── */
.rk-page {
  padding: 0 0 80px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* ── Page bg stars ────────────────────────────────────────── */
.rk-stars {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.rk-star {
  position: absolute; border-radius: 50%;
  background: #fff;
  animation: rkStarTwinkle linear infinite;
}
@keyframes rkStarTwinkle {
  0%,100% { opacity: .15; transform: scale(.8); }
  50%      { opacity: .7;  transform: scale(1.3); }
}

/* ══════════════════════════════════════════════════════
   HERO HEADER
══════════════════════════════════════════════════════ */
.rk-hero {
  padding: 28px 20px 22px;
  position: relative;
  overflow: hidden;
}
.rk-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,215,0,.10) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 30% 50%, rgba(108,92,231,.07) 0%, transparent 60%);
  pointer-events: none;
}
.rk-hero-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  position: relative; z-index: 1;
}
.rk-hero-left { display: flex; align-items: center; gap: 14px; }
.rk-hero-icon {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(108,92,231,.25), rgba(255,215,0,.12));
  border: 1.5px solid rgba(255,215,0,.3);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(255,215,0,.2), 0 4px 16px rgba(0,0,0,.4);
  font-size: 1.8rem; position: relative;
  animation: rkIconFloat 3s ease-in-out infinite;
}
@keyframes rkIconFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-3px) rotate(2deg); }
}
.rk-hero-text {}
.rk-hero-title {
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -.01em;
}
.rk-hero-title-main {
  background: linear-gradient(135deg, #fff 10%, #ffd700 50%, #ffb300 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rk-hero-title-vip {
  background: linear-gradient(135deg, #a29bfe, #6c5ce7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.rk-hero-sub {
  font-size: .78rem; color: rgba(240,242,248,.4);
  margin-top: 4px; display: flex; align-items: center; gap: 5px;
}
.rk-hero-right {}
.rk-live-badge {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 14px 7px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  font-size: .65rem; font-weight: 700; color: rgba(240,242,248,.4);
  letter-spacing: .07em; text-transform: uppercase; gap: 4px;
  text-align: center;
}
.rk-live-dot-wrap {
  display: flex; align-items: center; gap: 5px;
  font-size: .7rem; font-weight: 700; color: #00e676;
}
.rk-live-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #00e676; box-shadow: 0 0 8px rgba(0,230,118,.9);
  animation: rkLivePulse 1.8s ease-in-out infinite;
}
@keyframes rkLivePulse {
  0%,100% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px rgba(0,230,118,.9); }
  50%      { transform: scale(1.6); opacity: .7; box-shadow: 0 0 14px rgba(0,230,118,.5); }
}

/* ══════════════════════════════════════════════════════
   VIP TIERS — 4-col grid
══════════════════════════════════════════════════════ */
.rk-tiers-wrap {
  padding: 0 16px 22px;
}
.rk-tiers-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(240,242,248,.35);
  margin-bottom: 14px;
}
.rk-tiers-label i { color: #ffd700; font-size: .78rem; }
.rk-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 540px) {
  .rk-tiers-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Tier card */
.rk-tier-card {
  border-radius: 18px;
  border: 1.5px solid;
  padding: 18px 10px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform .22s cubic-bezier(.34,1.4,.64,1), box-shadow .22s;
}
.rk-tier-card::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity .22s;
}
.rk-tier-card:hover { transform: translateY(-5px) scale(1.02); }
.rk-tier-card:hover::before { opacity: 1; }

/* Shimmer top line */
.rk-tier-card::after {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1.5px;
  opacity: .5; border-radius: 2px;
}

/* Bronze */
.rk-tier-card.bronze {
  background: linear-gradient(160deg, rgba(42,18,8,.9), rgba(28,14,6,.9));
  border-color: rgba(205,127,50,.4);
  box-shadow: inset 0 1px 0 rgba(240,160,50,.12), 0 2px 12px rgba(0,0,0,.4);
}
.rk-tier-card.bronze::before { background: radial-gradient(ellipse at 50% 0%, rgba(205,127,50,.18), transparent 65%); }
.rk-tier-card.bronze::after  { background: linear-gradient(90deg, transparent, rgba(205,127,50,.8), transparent); }
.rk-tier-card.bronze:hover   { box-shadow: 0 10px 36px rgba(205,127,50,.35), inset 0 1px 0 rgba(240,160,50,.15); }

/* Silver */
.rk-tier-card.silver {
  background: linear-gradient(160deg, rgba(20,24,34,.9), rgba(14,18,26,.9));
  border-color: rgba(190,210,230,.3);
  box-shadow: inset 0 1px 0 rgba(200,220,240,.08), 0 2px 12px rgba(0,0,0,.4);
}
.rk-tier-card.silver::before { background: radial-gradient(ellipse at 50% 0%, rgba(190,210,230,.14), transparent 65%); }
.rk-tier-card.silver::after  { background: linear-gradient(90deg, transparent, rgba(190,210,230,.7), transparent); }
.rk-tier-card.silver:hover   { box-shadow: 0 10px 36px rgba(190,210,230,.22), inset 0 1px 0 rgba(200,220,240,.1); }

/* Gold */
.rk-tier-card.gold {
  background: linear-gradient(160deg, rgba(40,30,4,.95), rgba(28,20,4,.9));
  border-color: rgba(255,215,0,.45);
  box-shadow: inset 0 1px 0 rgba(255,240,80,.15), 0 2px 14px rgba(0,0,0,.5);
}
.rk-tier-card.gold::before { background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,.2), transparent 65%); }
.rk-tier-card.gold::after  { background: linear-gradient(90deg, transparent, rgba(255,215,0,.9), transparent); }
.rk-tier-card.gold:hover   { box-shadow: 0 10px 40px rgba(255,215,0,.4), inset 0 1px 0 rgba(255,240,80,.18); }

/* Diamond */
.rk-tier-card.diamond {
  background: linear-gradient(160deg, rgba(6,14,40,.95), rgba(4,10,30,.9));
  border-color: rgba(100,180,255,.4);
  box-shadow: inset 0 1px 0 rgba(168,237,255,.1), 0 2px 14px rgba(0,0,0,.5);
}
.rk-tier-card.diamond::before { background: radial-gradient(ellipse at 50% 0%, rgba(100,180,255,.2), transparent 65%); }
.rk-tier-card.diamond::after  { background: linear-gradient(90deg, transparent, rgba(100,200,255,.8), transparent); }
.rk-tier-card.diamond:hover   { box-shadow: 0 10px 40px rgba(80,160,255,.35), inset 0 1px 0 rgba(168,237,255,.15); }

/* Icon inside tier card */
.rk-tier-icon {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-size: 2.2rem;
  line-height: 1;
}
/* Make vs-wrap larger inside tier cards */
.rk-tier-icon .vs-wrap { width: 3.6em; height: 3.6em; font-size: 1em; }

.rk-tier-name {
  font-size: .78rem; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 8px;
}
.rk-tier-card.bronze  .rk-tier-name { color: #e8902a; }
.rk-tier-card.silver  .rk-tier-name { color: #c8d8e8; }
.rk-tier-card.gold    .rk-tier-name { color: #ffd700; }
.rk-tier-card.diamond .rk-tier-name { color: #8ecfff; }

.rk-tier-disc {
  font-size: 1.4rem; font-weight: 900; line-height: 1; margin-bottom: 2px;
}
.rk-tier-card.bronze  .rk-tier-disc { color: #f0a040; text-shadow: 0 0 12px rgba(205,127,50,.7); }
.rk-tier-card.silver  .rk-tier-disc { color: #d0e4f0; text-shadow: 0 0 10px rgba(190,210,230,.5); }
.rk-tier-card.gold    .rk-tier-disc { color: #ffd700; text-shadow: 0 0 14px rgba(255,215,0,.8); }
.rk-tier-card.diamond .rk-tier-disc { color: #a8edff; text-shadow: 0 0 14px rgba(100,200,255,.8); }

.rk-tier-disc-label {
  font-size: .62rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; display: block; margin-top: 2px;
}
.rk-tier-card.bronze  .rk-tier-disc-label { color: rgba(240,160,64,.55); }
.rk-tier-card.silver  .rk-tier-disc-label { color: rgba(200,216,232,.45); }
.rk-tier-card.gold    .rk-tier-disc-label { color: rgba(255,215,0,.55); }
.rk-tier-card.diamond .rk-tier-disc-label { color: rgba(168,237,255,.5); }

/* ══════════════════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════════════════ */
.rk-section {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  margin: 0 16px 18px;
  overflow: hidden;
  position: relative;
}
.rk-section-hdr {
  padding: 14px 18px 12px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.rk-section-hdr::before {
  content: ''; position: absolute; bottom: 0; left: 18px; right: 18px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,.15), transparent);
}
.rk-section-hdr-icon {
  width: 30px; height: 30px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}
.rk-section-hdr-icon.gold-icon   { background: rgba(255,215,0,.12);  border: 1px solid rgba(255,215,0,.25); }
.rk-section-hdr-icon.purple-icon { background: rgba(108,92,231,.14); border: 1px solid rgba(108,92,231,.28); }
.rk-section-title {
  font-size: .8rem; font-weight: 800;
  color: rgba(240,242,248,.8); letter-spacing: .05em;
  text-transform: uppercase; flex: 1;
}
.rk-section-link {
  font-size: .74rem; font-weight: 700; color: #a29bfe;
  text-decoration: none; display: flex; align-items: center; gap: 4px;
  transition: color .15s;
}
.rk-section-link:hover { color: #c4b5fd; }
.rk-section-count {
  font-size: .72rem; font-weight: 700; color: rgba(240,242,248,.3);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  padding: 2px 9px; border-radius: 10px;
}

/* ══════════════════════════════════════════════════════
   PODIUM (top 3)
══════════════════════════════════════════════════════ */
.rk-podium {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 12px; padding: 36px 18px 0;
  position: relative;
}
/* BG glow under podium */
.rk-podium::before {
  content: ''; position: absolute; bottom: 0; left: 10%; right: 10%;
  height: 120px; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(255,215,0,.12), transparent 70%);
}

.rk-pod {
  flex: 1; max-width: 210px;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}

/* Pod card */
.rk-pod-card {
  border-radius: 20px;
  padding: 20px 12px 16px;
  text-align: center;
  width: 100%; position: relative;
  transition: transform .22s cubic-bezier(.34,1.4,.64,1);
  overflow: visible;
}
.rk-pod-card:hover { transform: translateY(-6px); }

/* #1 gold card */
.rk-pod-1 .rk-pod-card {
  background: linear-gradient(160deg, rgba(50,36,4,.96), rgba(32,22,4,.92));
  border: 1.5px solid rgba(255,215,0,.5);
  box-shadow:
    0 0 0 1px rgba(255,215,0,.15),
    0 8px 40px rgba(255,215,0,.28),
    0 20px 60px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,240,80,.2);
}
/* #2 silver card */
.rk-pod-2 .rk-pod-card {
  background: linear-gradient(160deg, rgba(18,22,34,.96), rgba(12,16,26,.92));
  border: 1.5px solid rgba(190,210,230,.3);
  box-shadow:
    0 6px 28px rgba(190,210,230,.12),
    0 16px 40px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(200,220,240,.08);
}
/* #3 bronze card */
.rk-pod-3 .rk-pod-card {
  background: linear-gradient(160deg, rgba(28,14,4,.96), rgba(18,10,4,.92));
  border: 1.5px solid rgba(205,127,50,.32);
  box-shadow:
    0 6px 24px rgba(205,127,50,.14),
    0 14px 36px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(240,160,50,.08);
}

/* Rank number badge */
.rk-pod-rank {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 900; z-index: 2;
  font-style: italic;
}
.rk-pod-1 .rk-pod-rank {
  background: linear-gradient(135deg,#ffd700,#ff9500);
  color: #2a1400;
  box-shadow: 0 0 0 2px rgba(255,215,0,.25), 0 4px 16px rgba(255,180,0,.6);
  font-size: .8rem; width: 32px; height: 32px;
}
.rk-pod-2 .rk-pod-rank {
  background: linear-gradient(135deg,#e0e8f0,#8898b8);
  color: #1a2030;
  box-shadow: 0 0 0 2px rgba(190,210,230,.2), 0 3px 10px rgba(150,180,210,.3);
}
.rk-pod-3 .rk-pod-rank {
  background: linear-gradient(135deg,#e8a040,#8b4513);
  color: #fff3e0;
  box-shadow: 0 0 0 2px rgba(205,127,50,.2), 0 3px 10px rgba(160,80,20,.35);
}

/* Avatar circle */
.rk-pod-av {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; margin: 10px auto 9px;
  text-transform: uppercase;
  position: relative; z-index: 1;
  border: 2.5px solid transparent;
}
.rk-pod-1 .rk-pod-av {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a0a00;
  border-color: rgba(255,215,0,.5);
  box-shadow: 0 0 0 4px rgba(255,215,0,.1), 0 6px 20px rgba(255,180,0,.5);
}
.rk-pod-2 .rk-pod-av {
  background: linear-gradient(135deg, #c8d4e4, #7888aa);
  color: #1a2030;
  border-color: rgba(190,210,230,.3);
  box-shadow: 0 4px 14px rgba(160,180,220,.25);
}
.rk-pod-3 .rk-pod-av {
  background: linear-gradient(135deg, #e0a04a, #8b4513);
  color: #fff3e0;
  border-color: rgba(205,127,50,.3);
  box-shadow: 0 4px 14px rgba(160,80,20,.3);
}

/* Pod username */
.rk-pod-name {
  font-size: .8rem; font-weight: 700; color: #f0f2f8;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 150px; margin: 0 auto 4px; line-height: 1.3;
}
.rk-pod-1 .rk-pod-name { font-size: .84rem; color: #fff; }

/* Pod deposit */
.rk-pod-deposit {
  font-size: .78rem; font-weight: 800; margin-bottom: 4px;
}
.rk-pod-1 .rk-pod-deposit { color: #ffd700; font-size: .9rem; }
.rk-pod-2 .rk-pod-deposit { color: rgba(190,210,230,.75); }
.rk-pod-3 .rk-pod-deposit { color: rgba(205,150,80,.8); }

/* VIP icon in pod */
.rk-pod-vip { margin-top: 3px; font-size: .85rem; }
.rk-pod-vip .vs-wrap { width: 1.6em; height: 1.6em; }

/* Platform pillars */
.rk-pod-platform {
  width: 100%; border-radius: 0 0 12px 12px;
  margin-top: 0; position: relative;
}
.rk-pod-1 .rk-pod-platform {
  height: 90px;
  background: linear-gradient(180deg,rgba(255,215,0,.25) 0%,rgba(255,180,0,.08) 50%,rgba(255,150,0,.02) 100%);
  border-left: 1px solid rgba(255,215,0,.2); border-right: 1px solid rgba(255,215,0,.2);
}
.rk-pod-2 .rk-pod-platform {
  height: 62px;
  background: linear-gradient(180deg,rgba(190,210,230,.15) 0%,rgba(160,180,210,.04) 100%);
  border-left: 1px solid rgba(190,210,230,.12); border-right: 1px solid rgba(190,210,230,.12);
}
.rk-pod-3 .rk-pod-platform {
  height: 44px;
  background: linear-gradient(180deg,rgba(205,127,50,.16) 0%,rgba(160,80,20,.04) 100%);
  border-left: 1px solid rgba(205,127,50,.14); border-right: 1px solid rgba(205,127,50,.14);
}

/* Platform inner glow line */
.rk-pod-1 .rk-pod-platform::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,.7), transparent);
}
.rk-pod-2 .rk-pod-platform::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(190,210,230,.5), transparent);
}
.rk-pod-3 .rk-pod-platform::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(205,127,50,.45), transparent);
}

/* ── Electric sparks for #1 ──────────────────────────────── */
.rk-sparks {
  position: absolute; inset: -20px;
  pointer-events: none; z-index: 0; overflow: visible;
}
.rk-spark {
  position: absolute; border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(255,215,0,.9);
  animation: rkSparkFly var(--dur,1.5s) ease-in-out var(--delay,0s) infinite;
}
@keyframes rkSparkFly {
  0%   { opacity:0; transform:translate(0,0) scale(0); }
  10%  { opacity:1; }
  80%  { opacity:.7; }
  100% { opacity:0; transform:translate(var(--sx,0px),var(--sy,0px)) scale(.25); }
}
.rk-bolt {
  position: absolute; width: 2px;
  background: linear-gradient(to bottom, transparent, #ffd700, rgba(255,255,255,.9), #ffd700, transparent);
  border-radius: 2px;
  animation: rkBolt var(--dur,1.2s) ease-in-out var(--delay,0s) infinite;
  box-shadow: 0 0 8px rgba(255,215,0,.8), 0 0 18px rgba(255,215,0,.35);
}
@keyframes rkBolt {
  0%,100% { opacity:0; transform:rotate(var(--rot,0deg)) scaleY(0); }
  15%,85% { opacity:0; }
  50%     { opacity:1; transform:rotate(var(--rot,0deg)) scaleY(1); }
}

/* ══════════════════════════════════════════════════════
   FULL LEADERBOARD TABLE
══════════════════════════════════════════════════════ */
.rk-list { padding: 8px 14px 14px; }

.rk-list-thead {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 10px 10px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 6px;
}
.rk-list-thead span {
  font-size: .64rem; font-weight: 700;
  color: rgba(240,242,248,.28);
  letter-spacing: .08em; text-transform: uppercase;
}

.rk-list-row {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 10px;
  border-radius: 14px;
  transition: background .15s;
  position: relative;
  margin-bottom: 2px;
}
.rk-list-row:hover { background: rgba(255,255,255,.05); }

/* Top 3 row accents */
.rk-list-row.rk-top1 {
  background: rgba(255,215,0,.05);
  border: 1px solid rgba(255,215,0,.14);
}
.rk-list-row.rk-top1:hover { background: rgba(255,215,0,.09); }
.rk-list-row.rk-top2 {
  background: rgba(190,210,230,.04);
  border: 1px solid rgba(190,210,230,.1);
}
.rk-list-row.rk-top3 {
  background: rgba(205,127,50,.04);
  border: 1px solid rgba(205,127,50,.1);
}
/* Me row */
.rk-list-row.rk-me {
  background: rgba(108,92,231,.08);
  border: 1.5px solid rgba(108,92,231,.22) !important;
}

/* Rank number / medal */
.rk-lr-rank {
  width: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.rk-lr-rank-num {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .73rem; font-weight: 900;
  border: 1.5px solid;
}
.rk-list-row.rk-top1 .rk-lr-rank-num {
  background: rgba(255,215,0,.15); color: #ffd700;
  border-color: rgba(255,215,0,.45);
  box-shadow: 0 0 10px rgba(255,215,0,.3);
}
.rk-list-row.rk-top2 .rk-lr-rank-num {
  background: rgba(190,210,230,.1); color: #c8d8e8;
  border-color: rgba(190,210,230,.3);
}
.rk-list-row.rk-top3 .rk-lr-rank-num {
  background: rgba(205,127,50,.12); color: #e8902a;
  border-color: rgba(205,127,50,.35);
}
.rk-list-row:not(.rk-top1):not(.rk-top2):not(.rk-top3) .rk-lr-rank-num {
  background: rgba(255,255,255,.04); color: rgba(240,242,248,.3);
  border-color: rgba(255,255,255,.08);
  font-size: .68rem;
}

/* Avatar */
.rk-lr-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .92rem; font-weight: 800;
  flex-shrink: 0; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.1);
}

/* Name/join */
.rk-lr-info { flex: 1; min-width: 0; }
.rk-lr-name {
  font-size: .84rem; font-weight: 700; color: #e8eaf0;
  display: flex; align-items: center; gap: 5px; flex-wrap: wrap;
}
.rk-lr-join { font-size: .67rem; color: rgba(240,242,248,.28); margin-top: 1px; }

/* VIP col */
.rk-lr-vip {
  flex-shrink: 0; font-size: .74rem; font-weight: 700;
  display: flex; align-items: center; gap: 5px; min-width: 84px;
}
.rk-lr-vip .vs-wrap { width: 1.7em; height: 1.7em; }

/* Deposit */
.rk-lr-dep {
  flex-shrink: 0; text-align: right; min-width: 74px;
  font-size: .82rem; font-weight: 800; color: #00e676;
}
.rk-list-row.rk-top1 .rk-lr-dep { color: #ffd700; }

/* Discount tag */
.rk-lr-disc { flex-shrink: 0; width: 46px; text-align: right; }
.rk-disc-tag {
  display: inline-block; padding: 3px 8px; border-radius: 20px;
  font-size: .7rem; font-weight: 800; border: 1px solid; letter-spacing: .02em;
}
.rk-disc-tag.bronze  { background:rgba(205,127,50,.12); color:#e8902a; border-color:rgba(205,127,50,.35); }
.rk-disc-tag.silver  { background:rgba(190,210,230,.1);  color:#c8d8e8; border-color:rgba(190,210,230,.3); }
.rk-disc-tag.gold    { background:rgba(255,215,0,.12);   color:#ffd700; border-color:rgba(255,215,0,.35); }
.rk-disc-tag.diamond { background:rgba(100,200,255,.1);  color:#a8edff; border-color:rgba(100,200,255,.32); }

/* Me tag */
.rk-me-tag {
  display: inline-flex; align-items: center;
  padding: 1px 7px; border-radius: 7px;
  background: rgba(108,92,231,.22); color: #a29bfe;
  font-size: .6rem; font-weight: 700;
  border: 1px solid rgba(108,92,231,.32);
  white-space: nowrap;
}

/* ── Load more button ────────────────────────────────────── */
.rk-load-more-wrap { padding: 14px 14px 4px; text-align: center; }
.rk-load-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 28px;
  background: rgba(108,92,231,.14);
  border: 1.5px solid rgba(108,92,231,.3);
  border-radius: 14px;
  color: #a29bfe; font-size: .84rem; font-weight: 700;
  cursor: pointer; transition: background .18s, border-color .18s, transform .18s;
  letter-spacing: .02em;
}
.rk-load-more-btn:hover {
  background: rgba(108,92,231,.24); border-color: rgba(108,92,231,.5);
  transform: translateY(-1px);
}

/* ── My position (outside top 50) ────────────────────────── */
.rk-my-pos {
  margin: 10px 14px 4px;
  padding: 13px 15px;
  background: rgba(108,92,231,.08);
  border: 1.5px solid rgba(108,92,231,.22);
  border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
}
.rk-my-pos-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg,#4a3fc7,#6c5ce7);
  display: flex; align-items: center; justify-content: center;
  font-size: .92rem; font-weight: 900; color: #fff;
  text-transform: uppercase; flex-shrink: 0;
}
.rk-my-pos-info { flex: 1; }
.rk-my-pos-name { font-size: .82rem; font-weight: 700; color: #e8eaf0; display: flex; align-items: center; gap: 6px; }
.rk-my-pos-sub  { font-size: .7rem; color: rgba(240,242,248,.35); margin-top: 2px; }
.rk-my-pos-right { text-align: right; }
.rk-my-pos-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 4px; font-size: .72rem; font-weight: 700;
  color: #a29bfe; text-decoration: none;
  padding: 5px 11px; border-radius: 9px;
  background: rgba(108,92,231,.15); border: 1px solid rgba(108,92,231,.25);
  transition: background .15s;
}
.rk-my-pos-link:hover { background: rgba(108,92,231,.28); }

/* ── Empty state ─────────────────────────────────────────── */
.rk-empty {
  text-align: center; padding: 64px 24px;
  color: rgba(240,242,248,.28);
}
.rk-empty i { font-size: 2.8rem; display: block; margin-bottom: 14px; opacity: .35; }

/* ── Entrance animation ──────────────────────────────────── */
.rk-tier-card, .rk-section, .rk-pod {
  animation: rkFadeUp .45s cubic-bezier(.34,1.1,.64,1) both;
}
.rk-tier-card:nth-child(1) { animation-delay: .05s; }
.rk-tier-card:nth-child(2) { animation-delay: .10s; }
.rk-tier-card:nth-child(3) { animation-delay: .15s; }
.rk-tier-card:nth-child(4) { animation-delay: .20s; }
@keyframes rkFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .rk-page { padding: 0 0 56px; }
  .rk-hero { padding: 18px 16px 16px; }
  .rk-hero-icon { width: 46px; height: 46px; font-size: 1.5rem; }
  .rk-section { margin: 0 10px 14px; border-radius: 18px; }
  .rk-tiers-wrap { padding: 0 10px 18px; }
  .rk-podium { gap: 8px; padding: 28px 10px 0; }
  .rk-pod-card { padding: 16px 8px 12px; border-radius: 16px; }
  .rk-pod-av { width: 42px; height: 42px; font-size: 1.15rem; }
  .rk-pod-1 .rk-pod-platform { height: 72px; }
  .rk-pod-2 .rk-pod-platform { height: 48px; }
  .rk-pod-3 .rk-pod-platform { height: 34px; }
  .rk-lr-disc { display: none; }
  .rk-lr-vip  { min-width: 0; }
  .rk-lr-vip span { display: none; }
  .rk-col-disc { display: none; }
  .rk-list-row { padding: 9px 6px; gap: 7px; }
  .rk-lr-dep  { min-width: 62px; font-size: .76rem; }
  .rk-load-more-btn { width: 100%; justify-content: center; }
}
@media (max-width: 380px) {
  .rk-tiers-grid { gap: 7px; }
  .rk-tier-card { padding: 13px 7px 10px; border-radius: 14px; }
  .rk-tier-disc { font-size: 1.2rem; }
  .rk-pod-name { font-size: .72rem; }
}
/* Column header widths */
.rk-col-vip  { flex-shrink: 0; min-width: 84px; }
.rk-col-dep  { flex-shrink: 0; min-width: 74px; text-align: right; }
.rk-col-disc { flex-shrink: 0; width: 46px; text-align: right; }
