/* ================================================================
   CYLIM87 — Revamp Design System
   Modern esports / creator hub layer (loaded after app.css)
   ================================================================ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --bg:           #08080f;
  --bg-surface:   #0f0f1a;
  --bg-card:      rgba(255, 255, 255, 0.04);
  --border:       rgba(255, 255, 255, 0.08);
  --border-hover: rgba(60, 188, 28, 0.4);
  --green:        #3cbc1c;
  --green-dim:    rgba(60, 188, 28, 0.12);
  --purple:       #8b5cf6;
  --purple-dim:   rgba(139, 92, 246, 0.12);
  --cyan:         #22d3ee;
  --cyan-dim:     rgba(34, 211, 238, 0.1);
  --gold:         #f59e0b;
  --gold-dim:     rgba(245, 158, 11, 0.12);
  --text:         #f8fafc;
  --muted:        #94a3b8;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.25s ease;
}

/* ── Base Overrides ─────────────────────────────────────────── */
html, body {
  background: var(--bg) !important;
  overflow-x: hidden;
}

/* ── HERO ───────────────────────────────────────────────────── */
.rv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.rv-hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('../../images/me-bk.jpg') center / cover no-repeat;
  filter: brightness(0.25) saturate(1.2);
  transform: scale(1.05);
}

.rv-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 0%,   rgba(139,92,246,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 0%   60%,  rgba(60,188,28,.12)  0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 80%,  rgba(34,211,238,.09) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(8,8,15,.3) 0%, rgba(8,8,15,.75) 60%, rgba(8,8,15,1) 100%);
}

.rv-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.rv-hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 0 100px;
  width: 100%;
}

/* Badge */
.rv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid var(--green);
  border-radius: 100px;
  color: var(--green);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown .6s ease both;
}

.rv-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* Title */
.rv-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3.2rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 20px;
  animation: fadeInUp .7s ease .1s both;
}

.rv-hero-title .gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tagline */
.rv-hero-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(14px, 2vw, 17px);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeInUp .7s ease .2s both;
}

/* Role chips */
.rv-hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  animation: fadeInUp .7s ease .25s both;
}

.rv-role-chip {
  padding: 7px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--transition), color var(--transition);
  cursor: default;
}

.rv-role-chip:hover {
  border-color: var(--green);
  color: var(--green);
}

/* Stats row */
.rv-hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  animation: fadeInUp .7s ease .3s both;
}

.rv-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.rv-stat + .rv-stat::before {
  content: '';
  position: absolute;
  left: -24px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--border);
}

.rv-stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.rv-stat-num em {
  color: var(--green);
  font-style: normal;
}

.rv-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* CTA */
.rv-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .7s ease .35s both;
}

/* Scroll hint */
.rv-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
  animation: fadeInUp 1s ease .9s both;
}

.rv-scroll-hint i { animation: bounce-y 1.6s ease-in-out infinite; }

/* ── PILLAR STRIP ──────────────────────────────────────────── */
.rv-pillars {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rv-pillars-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.rv-pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
  cursor: default;
}

.rv-pillar:last-child { border-right: none; }
.rv-pillar:hover { background: var(--bg-card); }

.rv-pillar-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.rv-pillar:hover .rv-pillar-icon { transform: scale(1.1); }

.rv-pillar-icon.green  { background: var(--green-dim);  color: var(--green);  }
.rv-pillar-icon.purple { background: var(--purple-dim); color: var(--purple); }
.rv-pillar-icon.cyan   { background: var(--cyan-dim);   color: var(--cyan);   }
.rv-pillar-icon.gold   { background: var(--gold-dim);   color: var(--gold);   }

.rv-pillar-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 3px;
}

.rv-pillar-text span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* ── SECTION COMMONS ───────────────────────────────────────── */
.rv-section        { padding: 96px 0; background: var(--bg); }
.rv-section-alt    { padding: 96px 0; background: var(--bg-surface); }

.rv-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.rv-section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.rv-section-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ── FEATURE CARDS ─────────────────────────────────────────── */
.rv-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.rv-feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.rv-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--clr) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.rv-feature-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--clr-rgb), .08) 0%, transparent 70%);
  transition: opacity var(--transition);
}

.rv-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--clr);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.rv-feature-card:hover::before { opacity: 1; }

/* Per-card color variables */
.rv-feature-card[data-color="green"]  { --clr: var(--green);  --clr-rgb: 60,188,28;   }
.rv-feature-card[data-color="cyan"]   { --clr: var(--cyan);   --clr-rgb: 34,211,238;  }
.rv-feature-card[data-color="purple"] { --clr: var(--purple); --clr-rgb: 139,92,246;  }
.rv-feature-card[data-color="gold"]   { --clr: var(--gold);   --clr-rgb: 245,158,11;  }

.rv-feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.rv-feature-card[data-color="green"]  .rv-feature-icon { background: var(--green-dim);  color: var(--green);  }
.rv-feature-card[data-color="cyan"]   .rv-feature-icon { background: var(--cyan-dim);   color: var(--cyan);   }
.rv-feature-card[data-color="purple"] .rv-feature-icon { background: var(--purple-dim); color: var(--purple); }
.rv-feature-card[data-color="gold"]   .rv-feature-icon { background: var(--gold-dim);   color: var(--gold);   }

.rv-feature-card h4 {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.rv-feature-card p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.rv-about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.rv-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.rv-profile-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.rv-profile-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.rv-profile-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg-surface), transparent);
  pointer-events: none;
}

.rv-profile-tags {
  padding: 20px 24px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rv-tag {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.rv-tag-green  { background: var(--green-dim);  color: var(--green);  border: 1px solid rgba(60,188,28,.3);   }
.rv-tag-purple { background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(139,92,246,.3);  }
.rv-tag-cyan   { background: var(--cyan-dim);   color: var(--cyan);   border: 1px solid rgba(34,211,238,.3);  }
.rv-tag-gold   { background: var(--gold-dim);   color: var(--gold);   border: 1px solid rgba(245,158,11,.3);  }

.rv-about-body h2 {
  font-family: 'Orbitron', sans-serif !important;
  font-size: clamp(1.6rem, 3vw, 2.3rem) !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  line-height: 1.2 !important;
  margin-bottom: 24px;
}

.rv-about-body p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.rv-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.rv-mini-stat {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--transition);
}

.rv-mini-stat:hover { border-color: var(--green-dim); }

.rv-mini-stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.rv-mini-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}

.rv-about-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── ACHIEVEMENTS ──────────────────────────────────────────── */
.rv-achievements {
  padding: 96px 0;
  background: var(--bg);
}

.rv-achievements-header {
  margin-bottom: 48px;
}

.rv-tournament-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rv-tournament-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color var(--transition), transform var(--transition);
  overflow: hidden;
}

.rv-tournament-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.rv-tournament-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.rv-tournament-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

.rv-tournament-meta {
  min-width: 0;
}

.rv-tournament-meta h4 {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  line-height: 1.4 !important;
  margin: 0 0 6px !important;
}

.rv-tournament-meta span {
  font-size: 11px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--green);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rv-results-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rv-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color var(--transition);
}

.rv-result-row:hover { border-color: var(--border); }

.rv-result-game {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rv-result-game img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.rv-result-game span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.rv-result-rank {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.rv-result-rank a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.rv-result-rank a:hover { color: var(--green); }
.rv-result-rank.rv-rank-champion { padding: 8px; border-radius: 8px; }
.rv-card-updated { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--muted); text-align: right; margin: 12px 0 0; opacity: 0.55; letter-spacing: .02em; }
.rv-card-updated i { margin-right: 5px; }

.rv-tournament-card--ucg { border-color: rgba(34,211,238,.25); }
.rv-tournament-card--ucg:hover { border-color: var(--cyan) !important; box-shadow: 0 20px 60px rgba(34,211,238,.15) !important; }
.rv-result-rank--dual { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.rv-rank-stat { font-family: 'Orbitron', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .05em; display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 8px; }
.rv-rank-champion { color: var(--gold); background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3); }
.rv-rank-runnerup { color: #94a3b8; background: rgba(148,163,184,.08); border: 1px solid rgba(148,163,184,.2); }
.rv-rank-label { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-left: 4px; }

.rv-tournament-card--judge { border-color: rgba(139,92,246,.25); }
.rv-tournament-card--judge:hover { border-color: var(--purple) !important; box-shadow: 0 20px 60px rgba(139,92,246,.15) !important; }
.rv-judge-showcase { display: flex; align-items: center; gap: 24px; padding-top: 8px; }
.rv-judge-img { width: 175px; flex-shrink: 0; filter: drop-shadow(0 4px 20px rgba(139,92,246,.4)); }
.rv-judge-label { display: flex; flex-direction: column; gap: 10px; }
.rv-judge-badge { display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--purple); background: rgba(139,92,246,.12); border: 1px solid rgba(139,92,246,.3); border-radius: 8px; padding: 6px 14px; width: fit-content; }
.rv-judge-badge i { font-size: 12px; }
.rv-judge-label p { font-family: 'Open Sans', sans-serif; font-size: 13px; color: var(--muted); line-height: 1.7; margin: 0; }
.rv-judge-games { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rv-judge-games img { height: 50px; opacity: 0.85; }

/* ── YOUTUBE ───────────────────────────────────────────────── */
.rv-youtube {
  padding: 96px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rv-youtube-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: center;
}

.rv-youtube-info .rv-section-title { margin-bottom: 16px; }

.rv-youtube-info p {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 36px;
}

.rv-yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #ff0000;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
}

.rv-yt-btn:hover {
  opacity: .88;
  transform: translateY(-2px);
  color: #fff;
}

.rv-iframe-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  padding: 2px;
  background: linear-gradient(135deg, var(--green), var(--purple), var(--cyan));
}

.rv-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: calc(var(--radius-lg) - 2px);
}

/* ── BLOG ──────────────────────────────────────────────────── */
.rv-blog {
  padding: 96px 0;
  background: var(--bg);
}

.rv-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.rv-blog-header .rv-section-desc { margin-bottom: 0; }

/* ── BLOG CTA ──────────────────────────────────────────────── */
.rv-blog-cta-wrap {
  text-align: center;
  padding: 8px 0 8px;
}

.rv-blog-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

.rv-blog-launch-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 15px !important;
  padding: 16px 40px !important;
}

.rv-blog-btn-disabled {
  pointer-events: none !important;
  opacity: 0.4 !important;
  cursor: not-allowed !important;
}

.rv-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  transition: background var(--transition), box-shadow var(--transition);
}

.rv-status-checking {
  background: var(--gold);
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.rv-status-live {
  background: var(--green);
  animation: pulse-live 2s ease-in-out infinite;
}

.rv-status-offline {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.25);
}

.rv-blog-status-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  transition: color var(--transition);
}

.rv-status-label-live    { color: var(--green) !important; }
.rv-status-label-offline { color: #ef4444 !important; }

/* ── BLOG POSTS GRID ───────────────────────────────────────── */
.rv-blog-posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
.rv-blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: border-color var(--transition), box-shadow var(--transition); }
.rv-blog-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(245,158,11,.12); }
.rv-blog-card-date { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.rv-blog-card-title { font-family: 'Orbitron', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.55; margin: 0; }
.rv-blog-card-excerpt { font-family: 'Open Sans', sans-serif; font-size: 13px; color: var(--muted); line-height: 1.75; margin: 0; flex: 1; }
.rv-blog-card-link { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; transition: gap var(--transition); }
.rv-blog-card-link:hover { gap: 10px; color: var(--gold); }
.rv-blog-posts-footer { text-align: center; padding-top: 8px; }

/* ── CONNECT CTA ───────────────────────────────────────────── */
.rv-connect {
  padding: 96px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rv-connect::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(60,188,28,.06) 0%, transparent 70%);
  pointer-events: none;
}

.rv-connect-inner { position: relative; }

.rv-connect-title {
  font-family: 'Orbitron', sans-serif !important;
  font-size: clamp(1.6rem, 3vw, 2.6rem) !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  margin-bottom: 16px;
}

.rv-connect-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.rv-social-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.rv-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.rv-social-btn img {
  width: 18px; height: 18px;
  object-fit: contain;
}

.rv-social-btn:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--bg) !important;
}

.rv-footer-body {
  padding: 64px 0 56px;
  border-top: 1px solid var(--border);
}

.rv-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.rv-footer-logo {
  max-width: 110px;
  display: block;
  margin-bottom: 20px;
}

.rv-footer-brand p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 360px;
  margin: 0;
}

.rv-footer-heading {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: var(--text) !important;
  margin-bottom: 24px !important;
}

.rv-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rv-footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.rv-footer-contact-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}

.rv-footer-contact-list li a:hover,
.rv-footer-contact-list li a:hover span { color: var(--green); }

.rv-footer-contact-list li i {
  color: var(--green);
  font-size: 15px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.rv-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  text-align: center;
}

.rv-footer-bottom span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
}

.rv-footer-bottom a {
  color: var(--green);
  text-decoration: none;
  transition: opacity var(--transition);
}

.rv-footer-bottom a:hover { opacity: .75; }

/* ── IMAGE SLIDER (footer) ─────────────────────────────────── */
footer .image-slider {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.65); }
}

@keyframes bounce-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(60,188,28,.7); }
  50%       { box-shadow: 0 0 0 8px rgba(60,188,28,0); }
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .rv-features-grid { grid-template-columns: repeat(2, 1fr); }

  .rv-pillars-inner { grid-template-columns: repeat(2, 1fr); }
  .rv-pillar:nth-child(2) { border-right: none; }
  .rv-pillar:nth-child(3) { border-right: 1px solid var(--border); }
  .rv-pillar { border-bottom: 1px solid var(--border); }
  .rv-pillar:nth-child(3),
  .rv-pillar:nth-child(4) { border-bottom: none; }

  .rv-youtube-inner { grid-template-columns: 1fr; gap: 40px; }
  .rv-about-grid { grid-template-columns: 320px 1fr; gap: 48px; }
}

@media (max-width: 991px) {
  .rv-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .rv-profile-card { max-width: 380px; margin: 0 auto; }
  .rv-tournament-grid { grid-template-columns: 1fr; }
  .rv-hero-stats { gap: 28px; }
  .rv-blog-header { flex-direction: column; align-items: flex-start; }
  .rv-section, .rv-section-alt { padding: 72px 0; }
  .rv-achievements { padding: 72px 0; }
  .rv-youtube { padding: 72px 0; }
  .rv-blog { padding: 72px 0; }
  .rv-connect { padding: 72px 0; }
  .rv-blog-posts-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 767px) {
  .rv-hero-title { letter-spacing: -.01em; }
  .rv-hero-stats { gap: 20px; flex-wrap: wrap; }
  .rv-stat + .rv-stat::before { display: none; }
  .rv-section, .rv-section-alt { padding: 56px 0; }
  .rv-achievements, .rv-youtube, .rv-blog, .rv-connect { padding: 56px 0; }
  .rv-about-stats { gap: 12px; }
  .rv-mini-stat-num { font-size: 18px; }
  .rv-footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .rv-footer-body { padding: 48px 0 40px; }
}

@media (max-width: 575px) {
  .container { padding-left: 24px; padding-right: 24px; }

  .rv-pillars-inner { grid-template-columns: 1fr; }
  .rv-pillar { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .rv-pillar:last-child { border-bottom: none !important; }
  .rv-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .rv-hero-cta { flex-direction: column; }
  .rv-hero-roles { gap: 8px; }
  .rv-social-row { gap: 10px; }
  .rv-hero-content { padding: 100px 8px 80px; }
  .rv-about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .rv-mini-stat { padding: 16px 8px; }
  .rv-mini-stat-label { font-size: 9px; }

  /* Achievements mobile */
  .rv-tournament-logo { width: 52px; height: 52px; }
  .rv-tournament-card--ucg .rv-tournament-logo { width: 140px !important; height: auto !important; }
  .rv-tournament-card--ucg .rv-tournament-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .rv-tournament-meta h4 { font-size: 13px; }
  .rv-result-rank { font-size: 15px; }
  .rv-result-game span { font-size: 11px; }
  .rv-result-game img { height: 36px; }
  .rv-rank-stat { font-size: 10px; padding: 4px 9px; }
  .rv-judge-showcase { flex-direction: column; align-items: center; text-align: center; }
  .rv-judge-img { width: 96px; }
  .rv-judge-label { align-items: center; }
  .rv-judge-games { justify-content: center; }

  /* Blog posts mobile */
  .rv-blog-posts-grid { grid-template-columns: 1fr; gap: 16px; }
}
