@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #020817;
  --bg-secondary: #0a0f1e;
  --bg-card: rgba(255,255,255,0.03);
  --accent: #3b82f6;
  --accent-2: #8b5cf6;
  --accent-glow: #06b6d4;
  --neon: #00f5ff;
  --gold: #f59e0b;
  --white: #ffffff;
  --text-muted: #94a3b8;
  --border: rgba(59,130,246,0.2);
  --border-bright: rgba(59,130,246,0.5);
  --radius: 16px;
  --container: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(160deg, #0b0b1e 0%, #050510 50%, #030308 100%);
  background-attachment: fixed;
  color: #e2e8f0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(59,130,246,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(139,92,246,0.10) 0%, transparent 50%),
    repeating-linear-gradient(90deg, rgba(59,130,246,0.04) 0, rgba(59,130,246,0.04) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(59,130,246,0.04) 0, rgba(59,130,246,0.04) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.7);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.85), 0 0 0 8px rgba(37,211,102,0.15); }
}

@media (max-width: 640px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 16px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ── SOCIAL SIDEBAR ── */
.social-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(11,11,30,0.8);
  border: 1px solid rgba(59,130,246,0.25);
  color: #b45309;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(245,158,11,0.1);
  position: relative;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.social-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #d97706, #f59e0b, #fbbf24);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.social-icon:hover {
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(245,158,11,0.45), 0 0 20px rgba(217,119,6,0.3);
}

.social-icon:hover::after { opacity: 1; }
.social-icon:hover svg { transform: scale(1.15); }

.social-line {
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(245,158,11,0.6), transparent);
  margin-top: 4px;
  border-radius: 2px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(2,8,23,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── HERO ── */
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  background-color: #050510;
  background-image: linear-gradient(to bottom, #0b0b1e, #050510, #030308);
  overflow: hidden;
  color: white;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212,175,55,0.1) 0%, rgba(60,100,220,0.08) 35%, transparent 65%);
  pointer-events: none;
}

.hero-bg-radial {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 50%);
  pointer-events: none;
}

.hero-beam {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 96px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.15), rgba(100,160,255,0.1), transparent);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.hero-float {
  position: absolute;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  z-index: 3;
  line-height: 1.6;
}
.hero-float span { display: block; font-size: 12px; color: rgba(212,175,55,0.75); }

.hero-nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
}
.hero-nav-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #d4af37, #6ab0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-nav-links {
  display: flex;
  gap: 28px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.hero-nav-links a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.hero-nav-links a:hover { color: #d4af37; }
.hero-nav-btns { display: flex; gap: 16px; align-items: center; font-size: 14px; }
.hero-nav-btns a { color: rgba(255,255,255,0.8); }
.hero-nav-cta {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.1);
  color: #d4af37 !important;
  font-weight: 600;
  transition: background 0.2s;
}
.hero-nav-cta:hover { background: rgba(212,175,55,0.2) !important; }

.hero-main {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px 0;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 32px;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(212,175,55,0.25);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  transition: border-color 0.2s, color 0.2s;
}
.hero-badge:hover { border-color: rgba(212,175,55,0.5); color: #d4af37; }

.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0;
}
.hero-h1-sub {
  background: linear-gradient(135deg, #d4af37, #f0d060, #6ab0ff);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shine 4s linear infinite;
  font-style: italic;
}

.hero-p {
  margin-top: 24px;
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  line-height: 1.7;
}

.hero-cta-btn {
  display: inline-block;
  margin-top: 36px;
  padding: 16px 40px;
  border-radius: 50px;
  background: #ffffff;
  color: #050510;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 40px rgba(212,175,55,0.25);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  text-decoration: none;
}
.hero-cta-btn:hover {
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #050510;
  transform: scale(1.05);
  box-shadow: 0 12px 50px rgba(212,175,55,0.45);
}

.hero-planet {
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1300px, 120vw);
  height: 520px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(to bottom, rgba(15,20,50,0.85), #050510);
  border-top: 2px solid rgba(212,175,55,0.6);
  box-shadow: 0 -30px 100px rgba(212,175,55,0.2), 0 -50px 150px rgba(212,175,55,0.1);
  pointer-events: none;
  z-index: 1;
}

.hero-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  width: min(100%, 1000px);
  margin: 56px auto 0;
  padding: 0 24px 80px;
}

.hero-card {
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.5);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 16px rgba(212,175,55,0.15);
}

/* Floating label styles */
.hero-float { line-height: 1.4; }
.hf-coin {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2px;
}
.hero-float span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #d4af37;
}
.hero-float small {
  display: block;
  font-size: 11px;
}
.hf-up { color: #22c55e !important; }
.hf-down { color: #ef4444 !important; }

.hcc-img-wrap {
  position: relative;
  width: 100%;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}
.hcc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hcc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(5,5,16,0.85) 100%);
}

/* Crypto cards */
.hero-card-crypto {
  padding: 20px 18px;
  height: auto !important;
  transform: none !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-card-tilt-left.hero-card-crypto { transform: rotate(-4deg) !important; }
.hero-card-tilt-right.hero-card-crypto { transform: rotate(4deg) !important; }

.hcc-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hcc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hcc-sub { font-size: 11px; color: rgba(255,255,255,0.4); }
.hcc-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.hcc-badge-blue  { background: rgba(0,170,228,0.15); color: #00aae4; border: 1px solid rgba(0,170,228,0.3); }
.hcc-badge-gold  { background: rgba(212,175,55,0.15); color: #d4af37; border: 1px solid rgba(212,175,55,0.3); }
.hcc-badge-purple{ background: rgba(98,126,234,0.15); color: #627eea; border: 1px solid rgba(98,126,234,0.3); }

.hcc-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hcc-change { font-size: 12px; font-weight: 600; }
.hcc-up   { color: #22c55e; }
.hcc-down { color: #ef4444; }

.hcc-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin: 2px 0;
}
.hcc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #6ab0ff);
  border-radius: 2px;
}
.hcc-desc { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.5; }
.hcc-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 4px 0; }

.hero-card-center {
  padding: 32px 28px;
  border-color: rgba(212,175,55,0.2);
  box-shadow: 0 0 50px rgba(212,175,55,0.07), 0 8px 40px rgba(0,0,0,0.5);
}

.hero-card-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-card-stat span { font-size: 20px; color: #d4af37; }

.hero-card-label { font-size: 16px; color: #d4af37; font-weight: 500; margin-bottom: 12px; }
.hero-card-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 20px; }

.hero-card-mini-row { display: flex; gap: 10px; }

.hero-card-mini {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 14px;
  padding: 10px 8px;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.hero-card-mini span {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #6ab0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3px;
}

.hero-wrapper .ticker-wrap {
  position: relative;
  z-index: 5;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.hero-wrapper .ticker-item { color: rgba(255,255,255,0.7); }
.hero-wrapper .ticker-price { color: rgba(255,255,255,0.9); }

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

@media (max-width: 900px) {
  .hero-nav-links { display: none; }
  .hero-nav { padding: 20px 24px; }
}
@media (max-width: 768px) {
  .hero-float { display: none; }
  .hero-cards { grid-template-columns: 1fr; padding: 0 16px 60px; }
  .hero-card-tilt-left, .hero-card-tilt-right { display: none; }
  .hero-planet { bottom: 120px; height: 300px; }
}
@media (max-width: 480px) {
  .hero-main { padding: 40px 16px 0; }
  .hero-card-stat { font-size: 38px; }
  .hero-cta-btn { font-size: 14px; padding: 14px 28px; }
}

/* ── VIDEO FRAME ── */
.video-frame {
  width: min(100%, 820px);
  margin: 0 auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(245,158,11,0.5);
  box-shadow: 0 0 60px rgba(245,158,11,0.2), 0 8px 40px rgba(0,0,0,0.1);
  position: relative;
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(251,191,36,0.5), rgba(245,158,11,0.4), rgba(253,230,138,0.5));
  z-index: -1;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: #050510;
  position: relative;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CTA BUTTON ── */
.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.glow-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 48px;
  background: linear-gradient(135deg, #d97706, #f59e0b, #fbbf24);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  color: #1c1917;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(245,158,11,0.45), 0 4px 20px rgba(0,0,0,0.12);
  min-width: 320px;
  max-width: 100%;
  box-sizing: border-box;
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}

.glow-btn:hover::before { left: 100%; }

.glow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(245,158,11,0.65), 0 8px 30px rgba(0,0,0,0.15);
}

.glow-btn span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #1c1917;
}

.glow-btn small {
  font-size: 11px;
  color: rgba(28,25,23,0.65);
  font-weight: 400;
}

.ref-link {
  font-size: 13px;
  color: #b45309;
  word-break: break-all;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.ref-link:hover { opacity: 1; }

/* ── SECTION DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  margin: 0;
}

/* ── MARQUEE TICKER ── */
.ticker-wrap {
  background: #050510;
  border-top: 1px solid rgba(245,158,11,0.25);
  border-bottom: 1px solid rgba(245,158,11,0.25);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
}

.ticker-item .up { color: #16a34a; }
.ticker-item .down { color: #ef4444; }
.ticker-price { color: #ffffff; font-weight: 700; margin-left: 4px; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── MAIN CONTENT ── */
.main-section {
  padding: 100px 0 0;
  background: transparent;
  position: relative;
}

.main-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #e2e8f0;
}

.section-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── CRYPTO SECTION ── */
.crypto-section {
  border-radius: 28px;
  padding: 56px 40px 48px;
  margin-bottom: 48px;
  background: linear-gradient(160deg, #0d0d20 0%, #050510 50%, #030308 100%);
  border: 2px solid rgba(59,130,246,0.3);
  box-shadow: 0 0 60px rgba(59,130,246,0.15), 0 8px 40px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.grad {
  background: linear-gradient(135deg, #f7931a, #627eea, #00aae4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crypto-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.crypto-card {
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(245,158,11,0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  background: linear-gradient(135deg, rgba(11,11,30,0.9) 0%, rgba(5,5,16,0.95) 50%, rgba(3,3,8,1) 100%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.crypto-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  border-radius: 20px;
}

.btc-card { border-color: rgba(247,147,26,0.3); }
.btc-card::before { background: radial-gradient(circle at top left, #f7931a, transparent 70%); }
.eth-card { border-color: rgba(98,126,234,0.3); }
.eth-card::before { background: radial-gradient(circle at top left, #627eea, transparent 70%); }
.xrp-card { border-color: rgba(0,170,228,0.35); box-shadow: 0 0 30px rgba(0,170,228,0.08); }
.xrp-card::before { background: radial-gradient(circle at top left, #00aae4, transparent 70%); }

.crypto-card:hover {
  transform: translateY(-6px);
}
.btc-card:hover { box-shadow: 0 20px 50px rgba(247,147,26,0.15); }
.eth-card:hover { box-shadow: 0 20px 50px rgba(98,126,234,0.15); }
.xrp-card:hover { box-shadow: 0 20px 50px rgba(0,170,228,0.2); }

.crypto-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.crypto-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.crypto-logo svg { width: 100%; height: 100%; }

.crypto-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.crypto-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1c1917;
}

.crypto-ticker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 20px;
  width: fit-content;
}

.btc-ticker { background: rgba(247,147,26,0.15); color: #f7931a; }
.eth-ticker { background: rgba(98,126,234,0.15); color: #627eea; }
.xrp-ticker { background: rgba(0,170,228,0.15); color: #00aae4; }

.crypto-live-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(247,147,26,0.12);
  color: #f7931a;
  border: 1px solid rgba(247,147,26,0.25);
  white-space: nowrap;
}

.eth-badge { background: rgba(98,126,234,0.12); color: #627eea; border-color: rgba(98,126,234,0.25); }
.xrp-badge { background: rgba(0,170,228,0.12); color: #00aae4; border-color: rgba(0,170,228,0.3); }

.crypto-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.crypto-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.crypto-section .crypto-name { color: #fff !important; }
.crypto-section .crypto-desc { color: rgba(255,255,255,0.65); }
.crypto-section .fact-val { color: #e2e8f0; }
.crypto-section .fact-lbl { color: rgba(255,255,255,0.4); }
.crypto-section .crypto-facts { border-top: 1px solid rgba(255,255,255,0.08); }

.crypto-change {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.crypto-change.up { background: rgba(34,197,94,0.12); color: #22c55e; }
.crypto-change.down { background: rgba(239,68,68,0.12); color: #ef4444; }

.crypto-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: #44403c;
  margin-bottom: 20px;
}

.crypto-desc strong { color: #92400e; }

.crypto-facts {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}

.fact {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.fact:last-child { border-right: none; }

.fact-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 2px;
}

.fact-lbl {
  display: block;
  font-size: 10px;
  color: #78716c;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* XRP Future */
.xrp-future {
  background: linear-gradient(160deg, #0d0d20 0%, #050510 60%, #030308 100%);
  border: 2px solid rgba(59,130,246,0.3);
  border-radius: 24px;
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 80px), 1100px);
  margin: 0 auto 80px;
  box-shadow: 0 8px 32px rgba(59,130,246,0.15);
}

.xrp-future::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6, #3b82f6);
}

.xrp-future-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}

.xrp-future-icon {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
}

.xrp-future-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #92400e;
  margin-bottom: 6px;
  line-height: 1.2;
}

.xrp-future-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.xrp-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.xrp-reason {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(180,83,9,0.25);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.xrp-reason:hover {
  border-color: rgba(180,83,9,0.5);
  box-shadow: 0 4px 16px rgba(245,158,11,0.2);
}

.reason-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: rgba(0,170,228,0.25);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.reason-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.reason-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.reason-body strong { color: #60a5fa; }

.xrp-profit-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(11,11,30,0.7);
  border: 2px solid rgba(59,130,246,0.3);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.xrp-profit-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.xrp-profit-box p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.xrp-profit-box strong { color: #60a5fa; }

/* ── BANNER CARD ── */
.banner-card {
  background: linear-gradient(160deg, #0d0d20 0%, #050510 50%, #030308 100%);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(59,130,246,0.1), 0 8px 32px rgba(0,0,0,0.5);
}

.banner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6, #3b82f6);
  pointer-events: none;
}

.banner-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff, var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── INTRO GRID ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.intro-copy h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #fff;
}

.intro-copy h3 {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.intro-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.intro-copy ul {
  padding-left: 0;
  list-style: none;
  margin: 16px 0;
}

.intro-copy ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.intro-copy ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.intro-copy strong { color: #fff; }

.intro-image-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 60px rgba(59,130,246,0.15);
  position: relative;
}

.intro-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,8,23,0.4), transparent 50%);
  pointer-events: none;
}

.intro-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  display: block;
}

/* ── GLASS CARD ── */
.glass-card {
  background: linear-gradient(160deg, #0d0d20 0%, #050510 60%, #030308 100%);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.glass-card p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.glass-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.glass-card ul li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid rgba(59,130,246,0.1);
}

.glass-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

.glass-card strong { color: #60a5fa; }

.strong-line {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #60a5fa !important;
  background: rgba(59,130,246,0.1);
  border-left: 4px solid #3b82f6;
  padding: 12px 16px !important;
  border-radius: 0 8px 8px 0;
  margin-top: 8px;
}

/* ── BENEFITS GRID ── */
.benefits { margin-bottom: 80px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: linear-gradient(160deg, #0d0d20 0%, #050510 60%, #030308 100%);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.benefit-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(139,92,246,0.2));
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.benefit-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ── WHO SECTION ── */
.who-section {
  background: linear-gradient(160deg, #0d0d20 0%, #050510 60%, #030308 100%);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.who-section h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 24px;
}

.who-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.who-section ul li {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  padding: 14px 20px 14px 52px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 10px;
  position: relative;
}

.who-section ul li::before {
  content: '⚡';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* ── FINAL SECTION ── */
.final-section {
  background: transparent;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.final-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,0.08), transparent 70%);
  pointer-events: none;
}

.final-content { text-align: center; position: relative; z-index: 1; }

.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.final-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.final-section h2 .accent { color: var(--accent); }

.final-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.final-video {
  width: min(100%, 800px);
  margin: 0 auto 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 60px rgba(59,130,246,0.15);
}

.final-video .video-placeholder { aspect-ratio: 16/9; background: #050d1a; }

.final-btn {
  min-width: 360px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, var(--gold), #d97706);
  box-shadow: 0 0 40px rgba(245,158,11,0.3);
}

.final-btn:hover {
  box-shadow: 0 0 60px rgba(245,158,11,0.5);
}

.final-graphic {
  width: min(100%, 480px);
  margin: 0 auto 48px;
  filter: drop-shadow(0 0 30px rgba(59,130,246,0.3));
}

.closing-box {
  width: min(100%, 760px);
  margin: 0 auto 60px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.closing-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon), var(--accent-2));
}

.closing-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.closing-box p:last-child { margin-bottom: 0; }
.closing-box strong { color: #fff; }

/* ── QR SECTION ── */
.qr-section {
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.qr-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.qr-card {
  position: relative;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 60px rgba(59,130,246,0.2), 0 0 120px rgba(59,130,246,0.06);
}

.qr-card canvas {
  display: block;
  border-radius: 8px;
}

.qr-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), var(--neon), var(--accent-2), var(--accent));
  background-size: 300% 300%;
  animation: qr-border-spin 4s linear infinite;
  z-index: -1;
  opacity: 0.7;
}

@keyframes qr-border-spin {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.qr-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--neon);
  border-style: solid;
}
.qr-tl { top: 8px; left: 8px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.qr-tr { top: 8px; right: 8px; border-width: 3px 3px 0 0; border-radius: 0 4px 0 0; }
.qr-bl { bottom: 8px; left: 8px; border-width: 0 0 3px 3px; border-radius: 0 0 0 4px; }
.qr-br { bottom: 8px; right: 8px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }

.qr-user-id {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  padding: 10px 24px;
}

.qr-user-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.qr-user-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qr-hint {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 320px;
  text-align: center;
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(59,130,246,0.2);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: linear-gradient(160deg, #0d0d20 0%, #050510 100%);
}

.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-dot {
  color: rgba(180,83,9,0.4);
  font-size: 14px;
}

.footer-divider {
  display: none;
}

.footer a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer a:hover { color: #b45309; }

.footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

@media (max-width: 640px) {
  .footer { gap: 12px; }
  .footer-divider { display: none; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */

/* Large screens 1280px+ — already default */

/* Tablet landscape 1100px */
@media (max-width: 1100px) {
  .social-sidebar { display: none; }
}

/* Tablet 900px */
@media (max-width: 900px) {
  .crypto-cards { grid-template-columns: 1fr; gap: 16px; }
  .xrp-reasons { grid-template-columns: 1fr; }
  .xrp-future { padding: 32px 28px; width: calc(100% - 40px); }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-image-card img { min-height: auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { padding: 16px 20px; gap: 0; }
  .stat-divider { margin: 0 20px; }
  .stat-value { font-size: 22px; }
  .main-section { padding: 70px 0 0; }
  .final-section { padding: 70px 0 40px; }
  .banner-card { padding: 36px 28px; margin-bottom: 56px; }
  .intro-grid { margin-bottom: 56px; }
  .glass-card { margin-bottom: 56px; }
  .benefits { margin-bottom: 56px; }
  .section-header { margin-bottom: 40px; }
}

/* Tablet portrait 768px */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 50px; }
  .hero h1 { font-size: clamp(30px, 7vw, 46px); letter-spacing: -0.5px; margin-bottom: 18px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 28px; }
  .stats-bar { padding: 16px 20px; }
  .stat-divider { margin: 0 16px; }
  .stat-value { font-size: 22px; }
  .video-frame { width: 100%; }
  .glow-btn { min-width: unset; width: 100%; max-width: 480px; }
  .hero-orb-1 { width: 280px; height: 280px; left: -80px; }
  .hero-orb-2 { width: 240px; height: 240px; right: -60px; }
  .hero-orb-3 { width: 200px; height: 200px; }
}

/* Mobile large 640px */
@media (max-width: 640px) {
  .container { width: calc(100% - 28px); }
  html, main, .main-section, body { overflow-x: hidden; }

  /* Hero orbs — mobile pe chhote */
  .hero-orb-1 { width: 180px; height: 180px; left: -50px; top: -50px; }
  .hero-orb-2 { width: 150px; height: 150px; right: -40px; top: 30px; }
  .hero-orb-3 { width: 130px; height: 130px; bottom: -30px; }

  /* Crypto section */
  .crypto-cards { grid-template-columns: 1fr; gap: 14px; }
  .crypto-card { padding: 20px 16px; }
  .crypto-price { font-size: 18px; }
  .xrp-future { padding: 24px 20px; width: calc(100% - 28px); }
  .xrp-future-header { flex-direction: column; gap: 12px; }
  .xrp-future-icon { font-size: 30px; }
  .xrp-reasons { grid-template-columns: 1fr; gap: 12px; }
  .xrp-reason { padding: 16px; }
  .reason-num { font-size: 22px; }
  .xrp-profit-box { flex-direction: column; gap: 12px; padding: 18px; }

  /* Navbar */
  .nav-logo { font-size: 18px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; border-radius: 6px; }

  /* Hero — full mobile fix */
  .hero {
    padding: 70px 20px 50px;
    min-height: auto;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-content {
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-eyebrow {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 16px;
    white-space: normal;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(26px, 7.5vw, 38px);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.15;
  }
  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
    padding: 0;
  }

  /* Stats bar — 2x2 grid */
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 14px 12px;
    width: 100%;
    margin-bottom: 24px;
    box-sizing: border-box;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 10px 6px; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(3) { border-right: 1px solid rgba(245,158,11,0.25); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(245,158,11,0.25); }
  .stat-value { font-size: 20px; }
  .stat-label { font-size: 10px; }

  /* Video frame */
  .video-frame {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    box-sizing: border-box;
  }

  /* CTA — global glow-btn fix */
  .cta-group { width: 100%; padding: 0; }
  .glow-btn {
    min-width: unset !important;
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    box-sizing: border-box;
  }
  .glow-btn span { font-size: 14px; text-align: center; }
  .glow-btn small { font-size: 10px; }
  .ref-link { font-size: 11px; text-align: center; word-break: break-all; }

  /* Main section */
  .main-section { padding: 50px 0 0; }
  .banner-card { padding: 28px 14px; margin-bottom: 16px; border-radius: 14px; }
  .banner-title { letter-spacing: 1px; }
  .intro-grid { gap: 24px; margin-bottom: 40px; }
  .intro-copy h2 { font-size: clamp(20px, 6vw, 28px); }
  .intro-copy h3 { font-size: 14px; }
  .intro-copy p, .intro-copy ul li { font-size: 14px; }
  .glass-card { padding: 20px 16px; margin-bottom: 32px; border-radius: 14px; }
  .glass-card p, .glass-card ul li { font-size: 14px; }
  .strong-line { font-size: 14px !important; }
  .benefits { margin-bottom: 32px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: clamp(22px, 6vw, 32px); }
  .section-header p { font-size: 14px; }
  .benefit-card { padding: 20px 18px; border-radius: 12px; }
  .benefit-icon { width: 42px; height: 42px; font-size: 18px; }
  .benefit-card h4 { font-size: 14px; }
  .benefit-card p { font-size: 12px; }
  .who-section { padding: 20px 16px; border-radius: 14px; }
  .who-section h3 { font-size: 18px; margin-bottom: 16px; }
  .who-section ul li { font-size: 13px; padding: 10px 14px 10px 40px; }
  .who-section ul li::before { left: 14px; }
  .final-section { padding: 50px 0 40px; }
  .final-section h2 { font-size: clamp(24px, 7vw, 36px); letter-spacing: -0.5px; }
  .final-sub { font-size: 14px; margin-bottom: 28px; }
  .final-btn { min-width: unset; width: 100%; }
  .closing-box { padding: 24px 18px; border-radius: 14px; margin-bottom: 40px; }
  .closing-box p { font-size: 14px; }
  .qr-card { padding: 14px; }
  .qr-user-name { font-size: 16px; }
  .footer { padding: 24px 0; }
}

/* Mobile small 380px */
@media (max-width: 380px) {
  .hero { padding: 60px 16px 40px; }
  .hero h1 { font-size: 24px; }
  .hero-subtitle { font-size: 13px; }
  .nav-logo { font-size: 16px; }
  .nav-cta { padding: 7px 11px; font-size: 11px; }
  .stats-bar { padding: 10px 8px; }
  .stat-value { font-size: 17px; }
  .glow-btn span { font-size: 13px; }
  .banner-title { font-size: 18px; letter-spacing: 0.5px; }
  .hero-orb-1 { width: 140px; height: 140px; left: -40px; }
  .hero-orb-2 { width: 120px; height: 120px; right: -30px; }
  .hero-orb-3 { width: 100px; height: 100px; }
}

/* ── COMPARISON TABLE ── */
.comparison-section {
  margin-bottom: 60px;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table thead tr {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-table th {
  padding: 16px 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  color: #94a3b8;
}

.comparison-table th:first-child { text-align: left; }

.comparison-table td {
  padding: 14px 18px;
  text-align: center;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.cat-label {
  text-align: left !important;
  font-weight: 600;
  color: #cbd5e1 !important;
  white-space: nowrap;
}

.btc-col { color: #f7931a !important; }
.eth-col { color: #627eea !important; }

.xrp-winner-col {
  background: rgba(0,170,228,0.06);
  color: #00aae4 !important;
  font-weight: 700;
}

.xrp-winner-col strong { color: #00f5ff; }

.comparison-table th.xrp-winner-col {
  color: #00aae4 !important;
  background: rgba(0,170,228,0.1);
  border-left: 1px solid rgba(0,170,228,0.2);
  border-right: 1px solid rgba(0,170,228,0.2);
}

.comparison-table td.xrp-winner-col {
  border-left: 1px solid rgba(0,170,228,0.15);
  border-right: 1px solid rgba(0,170,228,0.15);
}

.winner-crown {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #f59e0b;
  margin-top: 4px;
}

.comparison-verdict {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(0,170,228,0.08), rgba(59,130,246,0.08));
  border: 1px solid rgba(0,170,228,0.25);
  border-radius: 14px;
  padding: 24px;
}

.verdict-icon { font-size: 36px; flex-shrink: 0; line-height: 1; }

.comparison-verdict h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.comparison-verdict p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

.comparison-verdict strong { color: #00aae4; }

@keyframes pred-bar-anim {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ── XRP PREDICTION SECTION ── */
.xrp-prediction {
  margin-bottom: 60px;
  background: linear-gradient(160deg, #0d0d20 0%, #050510 50%, #030308 100%);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(59,130,246,0.1);
}

.xrp-prediction::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6, #3b82f6);
}

.prediction-timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 40px;
}

.pred-card {
  flex: 1;
  background: rgba(11,11,30,0.8);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.pred-card:hover { transform: translateY(-4px); }

.pred-2025 { border-color: rgba(0,212,255,0.3); }
.pred-2025:hover { box-shadow: 0 16px 40px rgba(0,170,228,0.15); }
.pred-2026 { border-color: rgba(59,130,246,0.3); }
.pred-2026:hover { box-shadow: 0 16px 40px rgba(59,130,246,0.15); }
.pred-2030 { border-color: rgba(245,158,11,0.35); }
.pred-2030:hover { box-shadow: 0 16px 40px rgba(245,158,11,0.15); }

.pred-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(255,255,255,0.2);
  padding: 0 12px;
  flex-shrink: 0;
}

.pred-year {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pred-target {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #00aae4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1;
}

.pred-2030 .pred-target {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
}

.pred-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pred-reasons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pred-reasons li {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Technical Indicators */
.technical-indicators {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 28px;
}

.technical-indicators h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.indicator {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 16px;
}

.indicator.bullish { border-color: rgba(34,197,94,0.2); }

.ind-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 4px;
}

.ind-val {
  font-size: 13px;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 8px;
}

.ind-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.ind-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #00f5ff);
  border-radius: 2px;
}

.prediction-verdict {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 14px;
  padding: 24px;
}

.pv-icon { font-size: 36px; flex-shrink: 0; line-height: 1; }

.prediction-verdict h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.prediction-verdict p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.prediction-verdict strong { color: #00d4ff; }

/* Responsive for new sections */
@media (max-width: 900px) {
  .prediction-timeline { flex-direction: column; gap: 16px; }
  .pred-arrow { transform: rotate(90deg); padding: 4px 0; }
  .indicators-grid { grid-template-columns: repeat(2, 1fr); }
  .xrp-prediction { padding: 32px 24px; }
}

@media (max-width: 640px) {
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 10px 10px; }
  .indicators-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .xrp-prediction { padding: 24px 16px; }
  .pred-card { padding: 20px 16px; }
  .pred-target { font-size: 22px; }
  .comparison-verdict, .prediction-verdict { flex-direction: column; gap: 12px; }
}

/* ── CRYPTO CARD ALERT & WIN BADGE ── */
.crypto-alert {
  font-size: 12px;
  font-weight: 700;
  color: #f87171;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.eth-alert {
  color: #fb923c;
  background: rgba(251,146,60,0.08);
  border-color: rgba(251,146,60,0.2);
}

.crypto-win-badge {
  font-size: 12px;
  font-weight: 700;
  color: #00f5ff;
  background: linear-gradient(135deg, rgba(0,170,228,0.12), rgba(34,197,94,0.08));
  border: 1px solid rgba(0,170,228,0.3);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ── XRP FUTURE LOGO & TAG ── */
.xrp-future-logo {
  position: relative;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
}

.xrp-future-logo svg {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 0 18px rgba(0,170,228,0.6));
  animation: xrp-pulse 3s ease-in-out infinite;
}

@keyframes xrp-pulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(0,170,228,0.6)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 32px rgba(0,212,255,0.9)); transform: scale(1.06); }
}

.xrp-logo-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,228,0.25), transparent 70%);
  pointer-events: none;
  animation: xrp-pulse 3s ease-in-out infinite;
}

.xrp-future-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00aae4;
  background: rgba(0,170,228,0.1);
  border: 1px solid rgba(0,170,228,0.25);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 8px;
}

/* ── XRP EXPLAINER BLOCKS ── */
.xrp-explainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.xrp-exp-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(11,11,30,0.7);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.xrp-exp-block:hover {
  border-color: rgba(180,83,9,0.5);
  box-shadow: 0 4px 16px rgba(245,158,11,0.2);
}

.xrp-exp-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.xrp-exp-block h4 {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.xrp-exp-block p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.xrp-exp-block strong { color: #60a5fa; }

/* ── XRP PROFIT BOX LOGO ── */
.xrp-profit-logo {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.xrp-profit-logo svg {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 12px rgba(0,170,228,0.5));
}

@media (max-width: 640px) {
  .xrp-future-logo { width: 64px; height: 64px; }
  .xrp-future-logo svg { width: 64px; height: 64px; }
  .xrp-profit-logo { width: 48px; height: 48px; }
  .xrp-profit-logo svg { width: 48px; height: 48px; }
  .xrp-exp-block { padding: 14px; }
  .xrp-exp-icon { font-size: 20px; }
}

/* ── XAB EARN SECTION ── */
.xab-earn-section {
  margin-bottom: 80px;
  background: linear-gradient(160deg, #0d0d20 0%, #050510 60%, #030308 100%);
  border: 2px solid rgba(59,130,246,0.3);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(245,158,11,0.12);
}

.xab-earn-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b45309, #f59e0b, #fbbf24, #f59e0b, #b45309);
}

.earn-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 36px;
}

.earn-step {
  flex: 1;
  background: rgba(11,11,30,0.7);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.earn-step:hover {
  border-color: rgba(180,83,9,0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.2);
}

.earn-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.earn-step-icon {
  font-size: 32px;
  margin: 8px 0 12px;
  line-height: 1;
}

.earn-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
  line-height: 1.3;
}

.earn-step p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.earn-step strong { color: #60a5fa; }

.earn-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(180,83,9,0.6);
  padding: 0 10px;
  flex-shrink: 0;
  margin-top: 60px;
}

.xab-earn-highlight {
  display: flex;
  gap: 32px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(59,130,246,0.3);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.12);
}

.earn-hl-left {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1;
}

.earn-hl-icon { font-size: 30px; flex-shrink: 0; line-height: 1; margin-top: 2px; }

.earn-hl-left h4 {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.earn-hl-left p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.earn-hl-left strong { color: #60a5fa; }

.earn-hl-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-shrink: 0;
}

.earn-stat {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  min-width: 90px;
}

.earn-stat-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.earn-stat-lbl {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (max-width: 900px) {
  .earn-steps { flex-direction: column; gap: 24px; }
  .earn-step-arrow { transform: rotate(90deg); margin: 0 auto; padding: 4px 0; }
  .xab-earn-highlight { flex-direction: column; gap: 20px; }
  .earn-hl-stats { grid-template-columns: repeat(4, 1fr); }
  .xab-earn-section { padding: 32px 24px; }
}

@media (max-width: 640px) {
  .xab-earn-section { padding: 20px 14px; margin-bottom: 32px; }
  .earn-step { padding: 20px 14px; }
  .earn-hl-stats { grid-template-columns: 1fr 1fr; }
  .earn-hl-left { flex-direction: column; gap: 10px; }
}

/* ── ARBITRAGE FLOW GRID ── */
.arb-flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.arb-flow-box {
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}

.arb-flow-box:hover { transform: translateY(-4px); }

.arb-buy {
  background: rgba(11,11,30,0.7);
  border: 2px solid rgba(59,130,246,0.3);
}

.arb-bot {
  background: rgba(11,11,30,0.7);
  border: 2px solid rgba(34,197,94,0.3);
}

.arb-sell {
  background: rgba(11,11,30,0.7);
  border: 2px solid rgba(212,175,55,0.3);
}

.arb-flow-icon { font-size: 2rem; margin-bottom: 0.5rem; }

.arb-flow-label {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.arb-buy .arb-flow-label { color: #b45309; }
.arb-bot .arb-flow-label { color: #92400e; }
.arb-sell .arb-flow-label { color: #d97706; }

.arb-flow-price {
  color: #57534e;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.arb-flow-badge {
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.buy-badge { background: rgba(245,158,11,0.15); color: #b45309; }
.bot-badge { background: rgba(180,83,9,0.12); color: #92400e; }
.sell-badge { background: rgba(217,119,6,0.15); color: #d97706; }

.arb-flow-arrow {
  font-size: 2rem;
  color: #d97706;
  text-align: center;
  flex-shrink: 0;
}

.arb-result-bar {
  text-align: center;
  background: rgba(11,11,30,0.8);
  border: 2px solid rgba(59,130,246,0.3);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
}

.arb-result-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #60a5fa;
  margin-bottom: 0.4rem;
}

.arb-result-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin: 0;
}

/* ── XAB BENEFITS GRID ── */
.xab-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.xab-benefit-item {
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s;
}

.xab-benefit-item:hover { transform: translateY(-4px); }

.xab-b-blue { background: rgba(11,11,30,0.7); border: 1px solid rgba(59,130,246,0.25); }
.xab-b-green { background: rgba(11,11,30,0.7); border: 1px solid rgba(34,197,94,0.25); }
.xab-b-gold { background: rgba(11,11,30,0.7); border: 1px solid rgba(212,175,55,0.25); }
.xab-b-purple { background: rgba(11,11,30,0.7); border: 1px solid rgba(139,92,246,0.25); }

.xab-b-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }

.xab-benefit-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.xab-b-blue h4 { color: #60a5fa; }
.xab-b-green h4 { color: #4ade80; }
.xab-b-gold h4 { color: #d4af37; }
.xab-b-purple h4 { color: #c084fc; }

.xab-benefit-item p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* ── ARB CTA BOX ── */
.arb-cta-box {
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(160deg, #0d0d20, #050510);
  border: 2px solid rgba(59,130,246,0.3);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(245,158,11,0.15);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.arb-cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.arb-cta-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
}

.arb-cta-left .glow-btn {
  min-width: unset;
  width: 100%;
  padding: 16px 20px;
  box-sizing: border-box;
}

.arb-cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  word-break: break-word;
}

.arb-cta-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.arb-cta-qr .qr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00d4ff;
}

.arb-cta-qr .qr-card {
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0,212,255,0.15);
}

.arb-cta-qr .qr-user-id {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 30px;
  padding: 2px 8px;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.arb-cta-qr .qr-user-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  white-space: nowrap;
  flex-shrink: 0;
}

.arb-cta-qr .qr-user-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

@media (max-width: 900px) {
  .arb-cta-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .arb-cta-left { align-items: center; width: 100%; }
  .arb-cta-qr { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 640px) {
  .arb-cta-box {
    padding: 1.2rem 1rem;
    border-radius: 14px;
    margin-top: 1.5rem;
  }
  .arb-cta-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .arb-cta-left {
    align-items: center;
    gap: 0.8rem;
    width: 100%;
  }
  .arb-cta-left .glow-btn {
    width: 100%;
    padding: 14px 10px;
  }
  .arb-cta-left .glow-btn span { font-size: 13px; }
  .arb-cta-left .glow-btn small { font-size: 10px; }
  .arb-cta-text { font-size: 0.9rem; line-height: 1.6; }
  .arb-cta-qr {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .arb-cta-qr .qr-card {
    padding: 10px;
    border-radius: 12px;
  }
  .arb-cta-qr .qr-card canvas {
    width: 130px !important;
    height: 130px !important;
  }
  .arb-cta-qr .qr-user-id {
    padding: 5px 14px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .arb-cta-qr .qr-user-name { font-size: 13px; }
  .arb-cta-qr .qr-label { font-size: 10px; }
}

@media (max-width: 380px) {
  .arb-cta-box { padding: 1rem 0.8rem; }
  .arb-cta-left .glow-btn span { font-size: 12px; }
  .arb-cta-qr .qr-card canvas {
    width: 110px !important;
    height: 110px !important;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .arb-flow-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .arb-flow-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
    text-align: center;
  }
  .xab-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .xab-benefits-grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .arb-result-text { font-size: 1.1rem; }
  .arb-flow-box { padding: 1.2rem; }
  .arb-cta-box { padding: 1.5rem 1rem; }
}

/* ── XRP FUTURE INTRO BANNER ── */
.xrp-future-intro {
  background: linear-gradient(160deg, #0d0d20 0%, #050510 50%, #030308 100%);
  border-top: 3px solid rgba(59,130,246,0.4);
  border-bottom: 3px solid rgba(59,130,246,0.4);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.xrp-future-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.xrp-future-intro-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.xrp-fi-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b45309;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.45);
  border-radius: 30px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.xrp-fi-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #e2e8f0;
  margin-bottom: 18px;
}

.xrp-fi-grad {
  background: linear-gradient(135deg, #d97706, #f59e0b, #b45309);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xrp-fi-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 36px;
}

.xrp-fi-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.xrp-fi-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(11,11,30,0.7);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 30px;
  padding: 8px 16px;
}

.xrp-fi-stat svg { flex-shrink: 0; }

/* ── REASON ICON (replaces reason-num) ── */
.reason-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0,170,228,0.08);
  border: 1px solid rgba(0,170,228,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SVG ICON SIZING IN EARN STEPS & BENEFITS ── */
.earn-step-icon svg { display: block; margin: 8px auto 12px; }
.xab-b-icon svg { display: block; }
.xrp-exp-icon svg { display: block; }
.arb-flow-icon svg { display: block; margin: 0 auto 0.5rem; }

@media (max-width: 640px) {
  .xrp-future-intro { padding: 48px 20px; }
  .xrp-fi-stats { gap: 10px; }
  .xrp-fi-stat { font-size: 12px; padding: 6px 12px; }
  .xrp-fi-stat svg { width: 20px; height: 20px; }
}

/* ── LEADER SECTION ── */
.leader-section {
  margin-top: 48px;
  margin-bottom: 80px;
  width: min(calc(100% - 80px), 1100px);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.leader-heading {
  text-align: center;
  margin-bottom: 48px;
}

.leader-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b45309;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.45);
  border-radius: 30px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.leader-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #1c1917;
  margin-bottom: 12px;
}

.leader-grad {
  background: linear-gradient(135deg, #d97706, #f59e0b, #b45309);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes gold-shine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

.leader-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

/* Leader Card */
.leader-card {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: stretch;
  background: linear-gradient(160deg, #0d0d20 0%, #050510 60%, #030308 100%);
  border: 2px solid rgba(59,130,246,0.3);
  border-radius: 28px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  box-sizing: border-box;
  width: 100%;
  box-shadow: 0 8px 32px rgba(245,158,11,0.15);
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b45309, #f59e0b, #fbbf24, #f59e0b, #b45309);
}

/* Image */
.leader-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 82%;
  min-height: 300px;
   max-width: 520px;
}

.leader-img-glow {
  position: absolute;
  inset: -20px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(0,212,255,0.2), transparent 70%);
  pointer-events: none;
  animation: orb-float 4s ease-in-out infinite;
}

.leader-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: block;
  border: 2px solid rgba(0,212,255,0.35);
  box-shadow: 0 20px 60px rgba(0,212,255,0.15), 0 0 0 1px rgba(0,212,255,0.1);
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center top;
  background: transparent;
}

.leader-img-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #00d4ff, #3b82f6);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,212,255,0.5);
}

/* Content */
.leader-name-row {
  margin-bottom: 20px;
}

.leader-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
  margin-bottom: 6px;
}

.leader-role {
  font-size: 13px;
  font-weight: 600;
  color: #60a5fa;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.leader-bio {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.leader-bio strong { color: #60a5fa; }

.leader-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
  padding: 20px;
  background: rgba(11,11,30,0.7);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 14px;
}

.leader-stat { text-align: center; }

.ls-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.ls-lbl {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Social Icons */
.leader-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ls-follow {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ls-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}

.ls-icon:hover { transform: translateY(-3px); }

.ls-fb { background: #1877f2; color: #fff; }
.ls-fb:hover { box-shadow: 0 8px 24px rgba(24,119,242,0.5); }

.ls-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.ls-ig:hover { box-shadow: 0 8px 24px rgba(220,39,67,0.5); }

.ls-li { background: #0077b5; color: #fff; }
.ls-li:hover { box-shadow: 0 8px 24px rgba(0,119,181,0.5); }

.ls-tw { background: #1da1f2; color: #fff; }
.ls-tw:hover { box-shadow: 0 8px 24px rgba(29,161,242,0.5); }

.ls-tt { background: #000000; color: #fff; }
.ls-tt:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.5); }

.ls-yt { background: #ff0000; color: #fff; }
.ls-yt:hover { box-shadow: 0 8px 24px rgba(255,0,0,0.5); }

/* ── TEAM INDIA SECTION ── */
.team-india-section {
  background: linear-gradient(160deg, #0d0d20 0%, #050510 60%, #030308 100%);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.team-india-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6, #3b82f6);
}

.team-india-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.team-india-flag {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(255,153,51,0.4));
}

.team-india-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.team-india-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.team-india-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.ti-card {
  background: rgba(11,11,30,0.7);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 16px;
  padding: 24px 18px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.ti-card:hover {
  border-color: rgba(180,83,9,0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.2);
}

.ti-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ti-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
  line-height: 1.3;
}

.ti-card p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.team-cta {
  background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(59,130,246,0.08) 50%, rgba(139,92,246,0.06) 100%);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.team-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #3b82f6, #8b5cf6);
}

.team-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.team-cta-text h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.team-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.75;
}

.team-cta-text strong { color: #00d4ff; }

.team-cta-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.team-cta-qr .qr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00d4ff;
}

.team-cta-qr .qr-card {
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,212,255,0.15);
}

.team-cta-qr .qr-user-id {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 30px;
  padding: 6px 16px;
}

.team-cta-qr .qr-user-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
}

.team-cta-qr .qr-user-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 900px) {
  .team-cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .team-cta-qr { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .team-cta { padding: 32px 24px; }
}

@media (max-width: 640px) {
  .team-cta-inner { gap: 28px; }
  .team-cta-qr { flex-direction: column; }
  .team-cta-text { text-align: center; }
  .team-cta { padding: 24px 16px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .leader-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .leader-img-wrap { max-width: 380px; margin: 0 auto; min-height: auto; }
  .leader-stats { grid-template-columns: repeat(2, 1fr); }
  .team-india-grid { grid-template-columns: repeat(2, 1fr); }
  .team-india-section { padding: 32px 24px; }
  .leader-section { width: calc(100% - 40px); margin-top: 48px; }
}

@media (max-width: 640px) {
  .leader-section { width: calc(100% - 28px); margin-top: 32px; margin-bottom: 40px; overflow: hidden; }
  .leader-heading { margin-bottom: 20px; padding: 0 4px; }
  .leader-title { font-size: clamp(22px, 6vw, 32px); }

  .leader-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px 14px;
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .leader-content { width: 100%; overflow: hidden; }
  .leader-name-row { margin-bottom: 14px; }
  .leader-name { font-size: 22px; word-break: break-word; }
  .leader-role { font-size: 11px; }

  .leader-bio {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 12px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .leader-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
    margin: 16px 0;
  }
  .ls-val { font-size: 16px; }
  .ls-lbl { font-size: 9px; }

  .leader-socials {
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 4px;
    overflow: hidden;
  }
  .ls-follow {
    width: 100%;
    font-size: 11px;
    margin-bottom: 4px;
  }
  .ls-icon { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; }

  .leader-img-wrap {
    max-width: 100%;
    width: 100%;
    min-height: 220px;
    border-radius: 14px;
    overflow: hidden;
  }
  .leader-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    border-radius: 14px;
  }
  .leader-img-badge {
    font-size: 11px;
    padding: 5px 12px;
    bottom: 10px;
  }

  .team-india-grid { grid-template-columns: 1fr; gap: 10px; }
  .team-india-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .team-india-section { padding: 18px 14px; }
  .ti-card { padding: 16px 14px; }
  .ti-card h4 { font-size: 13px; }
  .ti-card p { font-size: 12px; }
}

/* ── FINAL VIDEOS SECTION ── */
.final-videos-section {
  width: min(calc(100% - 80px), 1100px);
  margin: 0 auto 80px;
  background: linear-gradient(160deg, #0d0d20 0%, #050510 60%, #030308 100%);
  border: 2px solid rgba(59,130,246,0.3);
  border-radius: 28px;
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(245,158,11,0.15);
}

.final-videos-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b45309, #f59e0b, #fbbf24, #f59e0b, #b45309);
}

/* Header */
.fv-header {
  text-align: center;
  margin-bottom: 48px;
}

.fv-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #e2e8f0;
  margin: 16px 0 12px;
}

.fv-accent {
  background: linear-gradient(135deg, #d97706, #f59e0b, #b45309);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fv-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Guidelines */
.fv-guidelines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.fv-guide-step {
  background: rgba(11,11,30,0.7);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.fv-guide-step:hover {
  border-color: rgba(180,83,9,0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.2);
}

.fv-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.7;
}

.fv-step-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
  line-height: 1.3;
}

.fv-step-body p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* Videos Header */
.fv-videos-header {
  text-align: center;
  margin-bottom: 28px;
}

.fv-videos-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #e2e8f0;
  margin: 10px 0 8px;
}

.fv-videos-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* Video Grid */
.fv-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
  box-sizing: border-box;
}

.fv-video-card {
  background: rgba(11,11,30,0.7);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.fv-video-card:hover {
  border-color: rgba(180,83,9,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(245,158,11,0.2);
}

.featured-video {
  grid-column: span 2;
  border-color: rgba(245,158,11,0.4);
  background: rgba(255,255,255,0.6);
}

.featured-video:hover {
  border-color: rgba(180,83,9,0.6);
  box-shadow: 0 12px 32px rgba(245,158,11,0.25);
}

.fv-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(245,158,11,0.9);
  color: #000;
}

.fv-badge-blue { background: rgba(59,130,246,0.9); color: #fff; }
.fv-badge-green { background: rgba(34,197,94,0.9); color: #000; }
.fv-badge-purple { background: rgba(139,92,246,0.9); color: #fff; }

.fv-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #050d1a;
}

.fv-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.fv-video-info {
  padding: 18px 20px 20px;
}

.fv-video-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
  line-height: 1.3;
}

.fv-video-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* CTA */
.fv-cta {
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .final-videos-section { width: calc(100% - 40px); padding: 40px 28px; }
  .fv-guidelines { grid-template-columns: repeat(2, 1fr); }
  .fv-video-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }
  .featured-video { grid-column: span 1; }
}

@media (max-width: 640px) {
  .final-videos-section { width: calc(100% - 28px); padding: 20px 14px; margin-bottom: 40px; }
  .fv-guidelines { grid-template-columns: 1fr; gap: 12px; }
  .fv-guide-step { padding: 18px 14px; }
  .fv-step-num { font-size: 28px; }
  .fv-title { font-size: clamp(22px, 6vw, 32px); }
  .fv-sub { font-size: 14px; }
  .fv-videos-title { font-size: clamp(18px, 5vw, 26px); }
  .fv-video-grid { grid-template-columns: 1fr !important; max-width: 100% !important; gap: 14px; }
  .featured-video { grid-column: span 1; }
  .fv-video-info { padding: 14px 14px 16px; }
  .fv-video-info h4 { font-size: 14px; }
  .fv-video-info p { font-size: 12px; }
  .fv-video-card { border-radius: 14px; }

  /* XRP future intro & section mobile fix */
  .xrp-future-intro { padding: 36px 16px; }
  .xrp-future { width: calc(100% - 28px); padding: 20px 14px; margin-bottom: 40px; }
  .xrp-future-header { flex-direction: column; gap: 12px; }
  .xrp-reasons { grid-template-columns: 1fr; gap: 10px; }
  .xrp-profit-box { flex-direction: column; gap: 12px; padding: 16px; }

  /* Comparison table mobile */
  .comparison-section { margin-bottom: 32px; }
  .comparison-verdict { flex-direction: column; gap: 10px; padding: 16px; }

  /* XRP prediction mobile */
  .xrp-prediction { padding: 20px 14px; margin-bottom: 32px; }
  .prediction-timeline { flex-direction: column; gap: 12px; }
  .pred-arrow { transform: rotate(90deg); text-align: center; }
  .indicators-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .prediction-verdict { flex-direction: column; gap: 10px; padding: 16px; }

  /* XAB earn section mobile */
  .xab-earn-section { padding: 20px 14px; margin-bottom: 32px; }
  .earn-steps { flex-direction: column; gap: 20px; }
  .earn-step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .xab-earn-highlight { flex-direction: column; gap: 16px; padding: 16px; }
  .earn-hl-stats { grid-template-columns: 1fr 1fr; }
  .earn-hl-left { flex-direction: column; gap: 8px; }
  .xab-benefits-grid { grid-template-columns: 1fr; gap: 10px; }
  .arb-flow-grid { grid-template-columns: 1fr; gap: 10px; }
  .arb-flow-arrow { transform: rotate(90deg); text-align: center; }
}

/* ── RIGHT CARD IMAGE + CONTENT ── */
.hero-card-img-only {
  padding: 0;
  overflow: hidden;
  transform: rotate(4deg);
  display: flex;
  flex-direction: column;
}
.hcc-img-full {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  border-radius: 28px 28px 0 0;
}
.hcc-right-content {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hcc-right-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d4af37;
}
.hcc-right-points {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hcc-right-point { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.4; border-left: 2px solid rgba(212,175,55,0.6); padding-left: 8px; }
.hcc-right-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px;
  margin-top: 2px;
}
.hcc-right-price span { color: #d4af37; }
.hcc-right-price small { font-size: 12px; font-weight: 600; }


/* ── NEW CRYPTO SECTION RESPONSIVE ── */
@media (max-width: 900px) {
  .crypto-section > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

@media (max-width: 640px) {
  .crypto-section {
    padding: 32px 20px 32px !important;
    margin-bottom: 32px !important;
  }
  .crypto-section > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

/* ── CRYPTO SECTION HEADER DARK FIX ── */
.crypto-section .section-header h2 { color: #ffffff; }
.crypto-section .section-header p { color: rgba(255,255,255,0.5); }
.crypto-section .grad {
  background: linear-gradient(135deg, #f7931a, #627eea, #00aae4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── FULL BLUE THEME OVERRIDES ── */
.xrp-profit-box strong { color: #60a5fa !important; }
.xrp-future-header p { color: rgba(255,255,255,0.5) !important; }
.section-header h2 { color: #e2e8f0; }
.section-header p { color: rgba(255,255,255,0.5); }
.intro-copy h2, .intro-copy h3 { color: #e2e8f0; }
.intro-copy p, .intro-copy ul li { color: rgba(255,255,255,0.65); }
.intro-copy strong { color: #60a5fa; }
.crypto-desc { color: rgba(255,255,255,0.65) !important; }
.fact-val { color: #e2e8f0 !important; }
.fact-lbl { color: rgba(255,255,255,0.4) !important; }
.leader-title { color: #e2e8f0; }
.leader-sub { color: rgba(255,255,255,0.5); }
.fv-videos-sub { color: rgba(255,255,255,0.5) !important; }
.xrp-future-intro { border-top-color: rgba(59,130,246,0.4) !important; border-bottom-color: rgba(59,130,246,0.4) !important; }
.social-icon { background: rgba(255,255,255,0.06); border-color: rgba(59,130,246,0.3); color: #60a5fa; }

/* ── HERO COLOR MATCH - FINAL OVERRIDES ── */
.glass-card,
.benefit-card,
.who-section {
  background: linear-gradient(160deg, #0d0d20 0%, #050510 60%, #030308 100%) !important;
}
.xab-earn-highlight,
.earn-step,
.xrp-reason,
.xrp-profit-box,
.xrp-exp-block,
.ti-card,
.fv-guide-step,
.fv-video-card,
.pred-card {
  background: rgba(11,11,30,0.85) !important;
}
.earn-stat { background: rgba(11,11,30,0.85) !important; }
.xrp-fi-stat { background: rgba(11,11,30,0.7) !important; }
.leader-stats { background: rgba(11,11,30,0.7) !important; }

/* ── XRP PREDICTION NEW UI RESPONSIVE ── */
@media (max-width: 900px) {
  .xrp-prediction > div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .xrp-prediction > div[style*="grid-template-columns:repeat(3,1fr)"] > div:nth-child(2) {
    transform: none !important;
  }
}
@media (max-width: 640px) {
  .xrp-prediction > div[style*="gap:32px"] {
    gap: 12px !important;
    padding: 14px 16px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .xrp-prediction > div[style*="gap:32px"] > div[style*="width:1px"] {
    display: none !important;
  }
}

/* ── XRP FUTURE INTRO COLOR FIX ── */
.xrp-fi-tag {
  color: #00d4ff !important;
  background: rgba(0,212,255,0.1) !important;
  border-color: rgba(0,212,255,0.3) !important;
}
.xrp-fi-grad {
  background: linear-gradient(135deg, #00d4ff, #3b82f6, #8b5cf6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.xrp-future-intro { border-top-color: rgba(59,130,246,0.4) !important; border-bottom-color: rgba(59,130,246,0.4) !important; }

/* ── FINAL GOLDEN BACKGROUND OVERRIDE ── */
.xrp-future { background: linear-gradient(160deg, #0d0d20 0%, #050510 60%, #030308 100%) !important; border-color: rgba(59,130,246,0.3) !important; }
.pred-card { background: rgba(11,11,30,0.85) !important; }
.video-placeholder { background: #050510 !important; }
.crypto-card { background: rgba(11,11,30,0.85) !important; }

/* ── XRP FUTURE SECTION FINAL FIX ── */
.xrp-future-tag {
  color: #00d4ff !important;
  background: rgba(0,212,255,0.1) !important;
  border-color: rgba(0,212,255,0.25) !important;
}
.xrp-future { box-shadow: 0 8px 32px rgba(59,130,246,0.15) !important; }
.xrp-future::before { background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6, #3b82f6) !important; }


/* ══════════════════════════════════════════
   COMPLETE UI REDESIGN - ATTRACTIVE DARK BLUE
   ══════════════════════════════════════════ */

/* Section headers */
.section-header { position: relative; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 46px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
  color: #fff !important;
}
.section-header p { color: rgba(255,255,255,0.5) !important; font-size: 16px !important; }

/* Banner card */
.banner-card {
  background: linear-gradient(160deg, #0d0d20, #050510, #030308) !important;
  border: 1px solid rgba(59,130,246,0.3) !important;
  border-radius: 24px !important;
  box-shadow: 0 0 80px rgba(59,130,246,0.12) !important;
  padding: 56px 40px !important;
}
.banner-title {
  font-size: clamp(26px, 4vw, 48px) !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #fff 0%, #00d4ff 50%, #8b5cf6 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  letter-spacing: -0.5px !important;
}

/* Crypto section */
.crypto-section {
  border-radius: 28px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 56px 40px 48px !important;
  position: relative !important;
  overflow: hidden !important;
}
.crypto-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6, #3b82f6);
}

/* Crypto cards */
.crypto-card {
  border-radius: 20px !important;
  padding: 28px 24px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.crypto-card:hover { transform: translateY(-8px) !important; }
.btc-card { border-color: rgba(247,147,26,0.4) !important; box-shadow: 0 4px 30px rgba(247,147,26,0.08) !important; }
.eth-card { border-color: rgba(98,126,234,0.4) !important; box-shadow: 0 4px 30px rgba(98,126,234,0.08) !important; }
.xrp-card { border-color: rgba(0,170,228,0.5) !important; box-shadow: 0 4px 30px rgba(0,170,228,0.12) !important; }
.btc-card:hover { box-shadow: 0 20px 60px rgba(247,147,26,0.2) !important; }
.eth-card:hover { box-shadow: 0 20px 60px rgba(98,126,234,0.2) !important; }
.xrp-card:hover { box-shadow: 0 20px 60px rgba(0,170,228,0.25) !important; }
.crypto-name { font-size: 18px !important; font-weight: 800 !important; color: #fff !important; }
.crypto-price { font-size: 26px !important; font-weight: 800 !important; color: #fff !important; }
.crypto-desc { font-size: 13.5px !important; line-height: 1.75 !important; color: rgba(255,255,255,0.6) !important; }
.fact-val { font-size: 16px !important; font-weight: 800 !important; color: #e2e8f0 !important; }
.fact-lbl { font-size: 10px !important; color: rgba(255,255,255,0.4) !important; }

/* XRP Prediction */
.xrp-prediction {
  border-radius: 28px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 56px 40px !important;
  position: relative !important;
  overflow: hidden !important;
}
.xrp-prediction::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6, #3b82f6);
}

/* Glass card */
.glass-card {
  border-radius: 24px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 40px !important;
  position: relative !important;
  overflow: hidden !important;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #3b82f6, #00d4ff, transparent);
}
.glass-card p { font-size: 15px !important; line-height: 1.85 !important; color: rgba(255,255,255,0.65) !important; }
.glass-card strong { color: #60a5fa !important; }
.glass-card ul li { color: rgba(255,255,255,0.65) !important; border-bottom-color: rgba(59,130,246,0.1) !important; }
.glass-card ul li::before { color: #3b82f6 !important; }
.strong-line { color: #60a5fa !important; background: rgba(59,130,246,0.1) !important; border-left-color: #3b82f6 !important; }

/* Earn steps */
.xab-earn-section {
  border-radius: 28px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 56px 40px !important;
  position: relative !important;
  overflow: hidden !important;
}
.xab-earn-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6, #3b82f6);
}
.earn-step {
  border-radius: 20px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 28px 24px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s !important;
}
.earn-step:hover { transform: translateY(-6px) !important; border-color: rgba(59,130,246,0.5) !important; box-shadow: 0 20px 50px rgba(59,130,246,0.15) !important; }
.earn-step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #3b82f6, #00d4ff) !important;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff;
}
.earn-step h4 { color: #e2e8f0 !important; font-size: 15px !important; font-weight: 700 !important; }
.earn-step p { color: rgba(255,255,255,0.55) !important; }
.earn-step strong { color: #60a5fa !important; }

/* Benefits grid */
.benefit-card {
  border-radius: 20px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 28px 24px !important;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #00d4ff);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.benefit-card:hover { transform: translateY(-6px) !important; border-color: rgba(59,130,246,0.5) !important; box-shadow: 0 20px 50px rgba(59,130,246,0.15) !important; }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon { font-size: 28px !important; margin-bottom: 16px !important; }
.benefit-card h4 { color: #e2e8f0 !important; font-size: 15px !important; font-weight: 700 !important; }
.benefit-card p { color: rgba(255,255,255,0.5) !important; }

/* Who section */
.who-section {
  border-radius: 24px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 40px !important;
  position: relative !important;
  overflow: hidden !important;
}
.who-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6);
}
.who-section h3 { color: #e2e8f0 !important; font-size: 24px !important; font-weight: 800 !important; }
.who-section ul li {
  color: rgba(255,255,255,0.65) !important;
  background: rgba(59,130,246,0.05) !important;
  border: 1px solid rgba(59,130,246,0.15) !important;
  border-radius: 12px !important;
  transition: border-color 0.3s, background 0.3s !important;
}
.who-section ul li:hover { background: rgba(59,130,246,0.1) !important; border-color: rgba(59,130,246,0.35) !important; }

/* Arb flow */
.arb-flow-box {
  border-radius: 16px !important;
  padding: 24px !important;
  transition: transform 0.3s !important;
}
.arb-flow-box:hover { transform: translateY(-4px) !important; }
.arb-flow-label { font-size: 16px !important; font-weight: 700 !important; color: #e2e8f0 !important; }
.arb-flow-price { color: rgba(255,255,255,0.5) !important; }
.arb-result-bar { border-radius: 16px !important; }
.arb-result-text { color: #60a5fa !important; font-size: 1.3rem !important; }
.arb-result-sub { color: rgba(255,255,255,0.55) !important; }

/* XAB benefits */
.xab-benefit-item {
  border-radius: 20px !important;
  padding: 24px !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.xab-benefit-item:hover { transform: translateY(-6px) !important; }
.xab-benefit-item h4 { font-size: 15px !important; font-weight: 700 !important; }
.xab-benefit-item p { color: rgba(255,255,255,0.55) !important; font-size: 13px !important; }

/* Leader card */
.leader-card {
  border-radius: 28px !important;
  border: 1px solid rgba(59,130,246,0.25) !important;
  padding: 48px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 0 80px rgba(59,130,246,0.1) !important;
}
.leader-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6, #3b82f6);
}
.leader-name { color: #e2e8f0 !important; font-size: 34px !important; font-weight: 800 !important; }
.leader-role { color: #60a5fa !important; }
.leader-bio { color: rgba(255,255,255,0.65) !important; line-height: 1.8 !important; }
.leader-bio strong { color: #60a5fa !important; }
.leader-stats {
  background: rgba(59,130,246,0.06) !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  border-radius: 16px !important;
}
.ls-val { font-size: 22px !important; font-weight: 800 !important; }
.ls-lbl { color: rgba(255,255,255,0.45) !important; }

/* Ti cards */
.ti-card {
  border-radius: 20px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 24px !important;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important;
}
.ti-card:hover { transform: translateY(-6px) !important; border-color: rgba(59,130,246,0.5) !important; box-shadow: 0 16px 40px rgba(59,130,246,0.15) !important; }
.ti-card h4 { color: #e2e8f0 !important; font-size: 14px !important; font-weight: 700 !important; }
.ti-card p { color: rgba(255,255,255,0.5) !important; }
.ti-icon { background: rgba(59,130,246,0.08) !important; border: 1px solid rgba(59,130,246,0.2) !important; border-radius: 12px !important; }

/* Final videos section */
.final-videos-section {
  border-radius: 28px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 56px !important;
  position: relative !important;
  overflow: hidden !important;
}
.final-videos-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6, #3b82f6);
}
.fv-title { color: #fff !important; font-weight: 800 !important; }
.fv-accent { background: linear-gradient(135deg, #00d4ff, #3b82f6) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
.fv-sub { color: rgba(255,255,255,0.5) !important; }
.fv-guide-step {
  border-radius: 16px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 24px !important;
  transition: transform 0.3s, border-color 0.3s !important;
}
.fv-guide-step:hover { transform: translateY(-4px) !important; border-color: rgba(59,130,246,0.5) !important; }
.fv-step-num { color: #3b82f6 !important; opacity: 0.7 !important; }
.fv-step-body h4 { color: #e2e8f0 !important; }
.fv-step-body p { color: rgba(255,255,255,0.5) !important; }
.fv-video-card {
  border-radius: 20px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  overflow: hidden !important;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important;
}
.fv-video-card:hover { transform: translateY(-6px) !important; border-color: rgba(59,130,246,0.5) !important; box-shadow: 0 20px 50px rgba(59,130,246,0.15) !important; }
.fv-video-info h4 { color: #e2e8f0 !important; }
.fv-video-info p { color: rgba(255,255,255,0.5) !important; }
.fv-videos-title { color: #fff !important; font-weight: 800 !important; }
.fv-videos-sub { color: rgba(255,255,255,0.5) !important; }

/* XRP Future section */
.xrp-future {
  border-radius: 28px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 56px 48px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 0 80px rgba(59,130,246,0.08) !important;
}
.xrp-future::before { background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6, #3b82f6) !important; }
.xrp-future-header h3 { color: #e2e8f0 !important; font-size: clamp(20px, 2.5vw, 28px) !important; font-weight: 800 !important; }
.xrp-future-header p { color: rgba(255,255,255,0.5) !important; }
.xrp-reason {
  border-radius: 16px !important;
  border: 1px solid rgba(59,130,246,0.15) !important;
  padding: 20px !important;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important;
}
.xrp-reason:hover { transform: translateY(-4px) !important; border-color: rgba(59,130,246,0.4) !important; box-shadow: 0 12px 30px rgba(59,130,246,0.12) !important; }
.reason-body h4 { color: #e2e8f0 !important; }
.reason-body p { color: rgba(255,255,255,0.55) !important; }
.reason-body strong { color: #60a5fa !important; }
.xrp-exp-block {
  border-radius: 16px !important;
  border: 1px solid rgba(59,130,246,0.15) !important;
  padding: 20px !important;
  transition: transform 0.3s, border-color 0.3s !important;
}
.xrp-exp-block:hover { transform: translateY(-4px) !important; border-color: rgba(59,130,246,0.4) !important; }
.xrp-exp-block h4 { color: #e2e8f0 !important; }
.xrp-exp-block p { color: rgba(255,255,255,0.55) !important; }
.xrp-exp-block strong { color: #60a5fa !important; }
.xrp-profit-box {
  border-radius: 16px !important;
  border: 1px solid rgba(59,130,246,0.25) !important;
  padding: 24px !important;
}
.xrp-profit-box h4 { color: #e2e8f0 !important; }
.xrp-profit-box p { color: rgba(255,255,255,0.55) !important; }

/* XRP Future Intro */
.xrp-future-intro {
  border-top: 3px solid rgba(59,130,246,0.4) !important;
  border-bottom: 3px solid rgba(59,130,246,0.4) !important;
}
.xrp-fi-heading { color: #fff !important; font-weight: 800 !important; }
.xrp-fi-sub { color: rgba(255,255,255,0.5) !important; }
.xrp-fi-stat {
  background: rgba(59,130,246,0.06) !important;
  border: 1px solid rgba(59,130,246,0.25) !important;
  border-radius: 30px !important;
  color: #e2e8f0 !important;
  transition: background 0.3s, border-color 0.3s !important;
}
.xrp-fi-stat:hover { background: rgba(59,130,246,0.12) !important; border-color: rgba(59,130,246,0.5) !important; }

/* Team india section */
.team-india-section {
  border-radius: 24px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 48px 40px !important;
  position: relative !important;
  overflow: hidden !important;
}
.team-india-section::before { background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6, #3b82f6) !important; }
.team-india-title { color: #e2e8f0 !important; font-weight: 800 !important; }
.team-india-sub { color: rgba(255,255,255,0.5) !important; }

/* Prediction verdict */
.prediction-verdict {
  border-radius: 20px !important;
  border: 1px solid rgba(59,130,246,0.25) !important;
  padding: 28px !important;
  background: rgba(59,130,246,0.06) !important;
}
.prediction-verdict h4 { color: #fff !important; font-size: 17px !important; font-weight: 800 !important; }
.prediction-verdict p { color: rgba(255,255,255,0.6) !important; }
.prediction-verdict strong { color: #00d4ff !important; }

/* Arb CTA box */
.arb-cta-box {
  border-radius: 24px !important;
  border: 1px solid rgba(59,130,246,0.25) !important;
  padding: 40px !important;
  position: relative !important;
  overflow: hidden !important;
}
.arb-cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #00d4ff, #8b5cf6);
}
.arb-cta-text { color: rgba(255,255,255,0.7) !important; }
.arb-cta-text strong { color: #60a5fa !important; }

/* Earn highlight */
.xab-earn-highlight {
  border-radius: 20px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 28px !important;
}
.earn-hl-left h4 { color: #e2e8f0 !important; font-weight: 800 !important; }
.earn-hl-left p { color: rgba(255,255,255,0.55) !important; }
.earn-hl-left strong { color: #60a5fa !important; }
.earn-stat {
  border-radius: 12px !important;
  border: 1px solid rgba(59,130,246,0.2) !important;
  padding: 14px !important;
}
.earn-stat-val { font-size: 22px !important; font-weight: 800 !important; background: linear-gradient(135deg, #3b82f6, #00d4ff) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
.earn-stat-lbl { color: rgba(255,255,255,0.45) !important; }

/* Footer */
.footer { background: linear-gradient(160deg, #0d0d20, #050510) !important; border-top: 1px solid rgba(59,130,246,0.2) !important; padding: 32px 0 !important; }
.footer a { color: rgba(255,255,255,0.45) !important; }
.footer a:hover { color: #60a5fa !important; }
.footer p { color: rgba(255,255,255,0.35) !important; }

/* Glow btn */
.glow-btn {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6, #00d4ff) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  box-shadow: 0 0 40px rgba(59,130,246,0.4) !important;
}
.glow-btn:hover { box-shadow: 0 0 60px rgba(59,130,246,0.6) !important; }
.glow-btn span { color: #fff !important; }
.glow-btn small { color: rgba(255,255,255,0.7) !important; }

/* Section tag */
.section-tag { color: #60a5fa !important; }

/* Grad text */
.grad {
  background: linear-gradient(135deg, #00d4ff, #3b82f6, #8b5cf6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}


/* ── ALL CARDS GOLDEN BORDER ── */
.crypto-card,
.benefit-card,
.earn-step,
.xab-benefit-item,
.xrp-reason,
.xrp-exp-block,
.xrp-profit-box,
.ti-card,
.fv-guide-step,
.fv-video-card,
.pred-card,
.glass-card,
.who-section,
.xab-earn-highlight,
.earn-stat,
.arb-flow-box,
.arb-result-bar,
.arb-cta-box,
.prediction-verdict,
.leader-card,
.leader-stats,
.xrp-future,
.xrp-future-intro,
.final-videos-section,
.xab-earn-section,
.crypto-section,
.xrp-prediction,
.banner-card,
.team-india-section {
  border-color: rgba(212,175,55,0.45) !important;
}

.crypto-card:hover,
.benefit-card:hover,
.earn-step:hover,
.xab-benefit-item:hover,
.xrp-reason:hover,
.xrp-exp-block:hover,
.ti-card:hover,
.fv-guide-step:hover,
.fv-video-card:hover {
  border-color: rgba(212,175,55,0.8) !important;
  box-shadow: 0 20px 50px rgba(212,175,55,0.15) !important;
}


/* ══════════════════════════════════════
   GOLDEN TOP LINES - ALL SECTIONS/CARDS
   ══════════════════════════════════════ */

/* All section top lines golden */
.crypto-section::before,
.xrp-prediction::before,
.glass-card::before,
.xab-earn-section::before,
.final-videos-section::before,
.xrp-future::before,
.team-india-section::before,
.leader-card::before,
.arb-cta-box::before,
.who-section::before,
.banner-card::before {
  background: linear-gradient(90deg, transparent, #d4af37, #f0d060, #d4af37, transparent) !important;
}

/* Benefit card top line golden */
.benefit-card::before {
  background: linear-gradient(90deg, #d4af37, #f0d060) !important;
}

/* xrp-future-intro top/bottom golden */
.xrp-future-intro {
  border-top-color: rgba(212,175,55,0.5) !important;
  border-bottom-color: rgba(212,175,55,0.5) !important;
}

/* ══════════════════════════════════════
   CARDS ARRANGEMENT - ATTRACTIVE LAYOUT
   ══════════════════════════════════════ */

/* Benefit cards - 3 col with gap */
.benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

/* Earn steps - horizontal with arrows */
.earn-steps {
  display: flex !important;
  align-items: stretch !important;
  gap: 0 !important;
}
.earn-step {
  flex: 1 !important;
  text-align: center !important;
}
.earn-step-arrow {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 24px !important;
  color: rgba(212,175,55,0.6) !important;
  padding: 0 8px !important;
  flex-shrink: 0 !important;
}

/* XAB benefits - 3 col */
.xab-benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
}

/* Crypto cards grid */
.crypto-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  padding: 0 !important;
}

/* Ti cards - 4 col */
.team-india-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
}

/* FV guidelines - 4 col */
.fv-guidelines {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
}

/* Arb flow grid */
.arb-flow-grid {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr auto 1fr !important;
  gap: 16px !important;
  align-items: center !important;
}

/* Section spacing */
.xab-earn-section,
.glass-card,
.xrp-prediction,
.final-videos-section,
.xrp-future,
.leader-card {
  margin-bottom: 40px !important;
}

/* Responsive */
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .xab-benefits-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .crypto-cards { grid-template-columns: 1fr !important; }
  .team-india-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .fv-guidelines { grid-template-columns: repeat(2, 1fr) !important; }
  .earn-steps { flex-direction: column !important; }
  .earn-step-arrow { transform: rotate(90deg) !important; }
  .arb-flow-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr !important; }
  .xab-benefits-grid { grid-template-columns: 1fr !important; }
  .team-india-grid { grid-template-columns: 1fr !important; }
  .fv-guidelines { grid-template-columns: 1fr !important; }
}


/* ── LEADER IMAGE FIX ── */
.leader-img-wrap {
  position: relative !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  height: 100% !important;
  min-height: 480px !important;
  max-width: 100% !important;
}

.leader-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 480px !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 20px !important;
  display: block !important;
  border: 2px solid rgba(212,175,55,0.4) !important;
  box-shadow: 0 20px 60px rgba(212,175,55,0.15) !important;
}

@media (max-width: 900px) {
  .leader-img-wrap { min-height: 380px !important; }
  .leader-img { min-height: 380px !important; }
}
@media (max-width: 640px) {
  .leader-img-wrap { min-height: 300px !important; }
  .leader-img { min-height: 300px !important; object-position: center top !important; }
}

/* ══════════════════════════════════════════
   SECTION 2 & 3 — FULL RESPONSIVE FIX
   ══════════════════════════════════════════ */

/* ── Crypto Coins Row (BTC / ETH / XRP icons) ── */
.crypto-coins-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  width: 100%;
  box-sizing: border-box;
}

.crypto-coins-row > div {
  text-align: center;
  flex: 0 0 auto;
}

/* ── Prediction timeline — desktop elevated center card ── */
@media (min-width: 901px) {
  .pred-featured {
    transform: translateY(-12px) !important;
  }
}

/* ── Tablet 1024px ── */
@media (max-width: 1024px) {
  .crypto-section { padding: 40px 28px 36px !important; }
  .xrp-prediction { padding: 40px 28px !important; }
  .prediction-timeline { gap: 8px; }
}

/* ── Tablet 900px ── */
@media (max-width: 900px) {
  /* Crypto section */
  .crypto-section { padding: 32px 20px 28px !important; }
  .crypto-coins-row { gap: 2rem; padding: 1.5rem 0; }

  /* Prediction section */
  .xrp-prediction { padding: 32px 20px !important; }
  .prediction-timeline {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;
  }
  .pred-featured { transform: none !important; box-shadow: 0 12px 40px rgba(59,130,246,0.2) !important; }
  .pred-arrow {
    transform: rotate(90deg) !important;
    padding: 4px 0 !important;
    font-size: 22px !important;
  }
  .pred-card { flex: none !important; width: 100% !important; }

  /* Prediction verdict */
  .prediction-verdict { flex-direction: row !important; }
}

/* ── Mobile 640px ── */
@media (max-width: 640px) {
  /* Crypto section */
  .crypto-section { padding: 24px 14px 20px !important; margin-bottom: 20px !important; border-radius: 18px !important; }
  .crypto-coins-row { gap: 1.5rem; padding: 1rem 0; }
  .crypto-coins-row > div svg { width: 60px !important; height: 60px !important; }
  .crypto-coins-row > div > div { width: 60px !important; height: 60px !important; }

  /* Section header inside crypto */
  .crypto-section .section-header { margin-bottom: 20px !important; }
  .crypto-section .section-header h2 { font-size: clamp(20px, 5.5vw, 28px) !important; }
  .crypto-section .section-header p { font-size: 13px !important; }

  /* Prediction section */
  .xrp-prediction { padding: 20px 14px !important; margin-bottom: 20px !important; border-radius: 18px !important; }
  .xrp-prediction .section-header { margin-bottom: 20px !important; }
  .xrp-prediction .section-header h2 { font-size: clamp(18px, 5vw, 26px) !important; }

  /* Prediction cards */
  .prediction-timeline { gap: 12px !important; }
  .pred-card { padding: 20px 16px !important; border-radius: 16px !important; }
  .pred-featured { transform: none !important; box-shadow: none !important; }

  /* Price text in pred cards */
  .pred-card > div[style*="font-size:46px"] {
    font-size: 34px !important;
    letter-spacing: -0.5px !important;
  }

  /* Pred arrow */
  .pred-arrow { font-size: 18px !important; }

  /* Prediction verdict */
  .prediction-verdict { flex-direction: column !important; gap: 12px !important; padding: 16px !important; border-radius: 14px !important; }
  .pv-icon { font-size: 28px !important; }
  .prediction-verdict h4 { font-size: 14px !important; }
  .prediction-verdict p { font-size: 13px !important; }
}

/* ── Mobile 480px ── */
@media (max-width: 480px) {
  .crypto-coins-row { gap: 1.2rem; }
  .crypto-coins-row > div > div { width: 52px !important; height: 52px !important; }
  .crypto-coins-row > div svg { width: 52px !important; height: 52px !important; }
  .crypto-coins-row > div h4 { font-size: 0.95rem !important; }

  .pred-card > div[style*="font-size:46px"] { font-size: 28px !important; }
  .pred-card { padding: 16px 12px !important; }

  /* List items in pred cards */
  .pred-card ul li { padding: 8px 10px !important; font-size: 12px !important; }
}

/* ── Mobile 380px ── */
@media (max-width: 380px) {
  .crypto-section { padding: 18px 10px 16px !important; }
  .xrp-prediction { padding: 16px 10px !important; }
  .crypto-coins-row { gap: 1rem; }
  .pred-card > div[style*="font-size:46px"] { font-size: 24px !important; }
  .pred-card ul li { font-size: 11px !important; padding: 7px 8px !important; }
}

/* ══════════════════════════════════════════
   ARBITRAGE SECTION — FULL RESPONSIVE FIX
   All breakpoints: 1024 / 900 / 768 / 640 / 480 / 380
   ══════════════════════════════════════════ */

/* ── Base: ensure section never overflows ── */
.xab-earn-section {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* ── Glass card (arbitrage explanation) ── */
.glass-card {
  width: 100%;
  box-sizing: border-box;
}
.glass-card p { word-break: break-word; }

/* ── Arb flow grid — already handled, reinforce ── */
.arb-flow-grid {
  width: 100%;
  box-sizing: border-box;
}
.arb-flow-box { box-sizing: border-box; }

/* ── Earn steps ── */
.earn-steps { width: 100%; box-sizing: border-box; }
.earn-step { box-sizing: border-box; min-width: 0; }

/* ── XAB benefits grid ── */
.xab-benefits-grid { width: 100%; box-sizing: border-box; }
.xab-benefit-item { box-sizing: border-box; }

/* ── Earn highlight ── */
.xab-earn-highlight { width: 100%; box-sizing: border-box; }
.earn-hl-stats { width: 100%; box-sizing: border-box; }
.earn-stat { box-sizing: border-box; min-width: 0; }

/* ── ARB CTA box ── */
.arb-cta-box { box-sizing: border-box; }

/* ══ TABLET 1024px ══ */
@media (max-width: 1024px) {
  .xab-earn-section { padding: 40px 28px !important; }
  .glass-card { padding: 32px 28px !important; }
  .arb-cta-box { padding: 32px 28px !important; }
  .xab-earn-highlight { padding: 24px !important; gap: 24px !important; }
  .earn-hl-stats { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ══ TABLET 900px ══ */
@media (max-width: 900px) {
  /* Section */
  .xab-earn-section { padding: 32px 20px !important; margin-bottom: 28px !important; }

  /* Glass card */
  .glass-card { padding: 28px 20px !important; margin-bottom: 24px !important; }
  .glass-card p { font-size: 14px !important; line-height: 1.8 !important; }

  /* Arb flow — vertical */
  .arb-flow-grid {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
  }
  .arb-flow-arrow {
    transform: rotate(90deg) !important;
    font-size: 1.4rem !important;
    padding: 4px 0 !important;
  }
  .arb-flow-box { padding: 1.2rem !important; }
  .arb-flow-label { font-size: 1rem !important; }

  /* Result bar */
  .arb-result-bar { padding: 1.2rem 1.5rem !important; }
  .arb-result-text { font-size: 1.15rem !important; }

  /* Section headers inside */
  .xab-earn-section .section-header { margin-bottom: 1.5rem !important; }

  /* Earn steps — vertical */
  .earn-steps { flex-direction: column !important; gap: 20px !important; align-items: stretch !important; }
  .earn-step { flex: none !important; width: 100% !important; padding: 24px 20px !important; }
  .earn-step-arrow { transform: rotate(90deg) !important; margin: 0 auto !important; padding: 4px 0 !important; font-size: 20px !important; }

  /* Benefits — 2 col */
  .xab-benefits-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }

  /* CTA box */
  .arb-cta-box { padding: 28px 20px !important; }
  .arb-cta-inner { flex-direction: column !important; gap: 20px !important; text-align: center !important; }
  .arb-cta-left { align-items: center !important; width: 100% !important; }
  .arb-cta-qr { flex-direction: row !important; justify-content: center !important; flex-wrap: wrap !important; gap: 14px !important; }

  /* Earn highlight */
  .xab-earn-highlight { flex-direction: column !important; gap: 20px !important; padding: 20px !important; }
  .earn-hl-left { flex-direction: row !important; gap: 14px !important; }
  .earn-hl-stats { grid-template-columns: repeat(4, 1fr) !important; gap: 10px !important; }
  .earn-stat { min-width: 0 !important; padding: 10px 8px !important; }
  .earn-stat-val { font-size: 18px !important; }
}

/* ══ MOBILE 768px ══ */
@media (max-width: 768px) {
  .xab-earn-section { padding: 28px 16px !important; }
  .glass-card { padding: 22px 16px !important; }
  .earn-hl-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .xab-benefits-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .arb-cta-box { padding: 22px 16px !important; }
  .arb-cta-left .glow-btn { padding: 14px 16px !important; }
  .arb-cta-left .glow-btn span { font-size: 14px !important; }
}

/* ══ MOBILE 640px ══ */
@media (max-width: 640px) {
  /* Section */
  .xab-earn-section { padding: 20px 14px !important; margin-bottom: 20px !important; border-radius: 18px !important; }

  /* Section headers */
  .xab-earn-section .section-header h2 { font-size: clamp(18px, 5.5vw, 26px) !important; }
  .xab-earn-section .section-header p { font-size: 13px !important; }

  /* Glass card */
  .glass-card { padding: 18px 14px !important; margin-bottom: 16px !important; border-radius: 14px !important; }
  .glass-card p { font-size: 13.5px !important; line-height: 1.75 !important; margin-bottom: 12px !important; }

  /* Arb flow */
  .arb-flow-grid { gap: 0.5rem !important; }
  .arb-flow-box { padding: 1rem 0.8rem !important; border-radius: 12px !important; }
  .arb-flow-icon { font-size: 1.6rem !important; margin-bottom: 0.4rem !important; }
  .arb-flow-label { font-size: 0.9rem !important; }
  .arb-flow-price { font-size: 0.8rem !important; }
  .arb-flow-badge { font-size: 0.75rem !important; padding: 0.3rem 0.6rem !important; }
  .arb-flow-arrow { font-size: 1.2rem !important; }

  /* Result bar */
  .arb-result-bar { padding: 1rem 1rem !important; border-radius: 12px !important; margin-bottom: 0.8rem !important; }
  .arb-result-text { font-size: 1rem !important; }
  .arb-result-sub { font-size: 0.85rem !important; }

  /* Earn steps */
  .earn-steps { gap: 16px !important; }
  .earn-step { padding: 20px 14px !important; border-radius: 14px !important; }
  .earn-step h4 { font-size: 14px !important; }
  .earn-step p { font-size: 12px !important; }
  .earn-step-arrow { font-size: 16px !important; }

  /* Benefits — 1 col */
  .xab-benefits-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .xab-benefit-item { padding: 18px 14px !important; border-radius: 14px !important; }
  .xab-benefit-item h4 { font-size: 14px !important; }
  .xab-benefit-item p { font-size: 12.5px !important; }
  .xab-b-icon { font-size: 1.5rem !important; margin-bottom: 0.5rem !important; }

  /* CTA box */
  .arb-cta-box { padding: 16px 12px !important; margin-top: 1.2rem !important; border-radius: 14px !important; }
  .arb-cta-inner { gap: 14px !important; }
  .arb-cta-text { font-size: 0.88rem !important; line-height: 1.6 !important; }
  .arb-cta-left .glow-btn { padding: 13px 10px !important; }
  .arb-cta-left .glow-btn span { font-size: 13px !important; }
  .arb-cta-left .glow-btn small { font-size: 10px !important; }
  .arb-cta-qr { flex-direction: column !important; align-items: center !important; gap: 8px !important; width: 100% !important; }
  .arb-cta-qr .qr-card canvas { width: 120px !important; height: 120px !important; }

  /* Earn highlight */
  .xab-earn-highlight { flex-direction: column !important; gap: 14px !important; padding: 14px !important; border-radius: 14px !important; }
  .earn-hl-left { flex-direction: column !important; gap: 8px !important; }
  .earn-hl-icon { font-size: 24px !important; }
  .earn-hl-left h4 { font-size: 14px !important; }
  .earn-hl-left p { font-size: 12.5px !important; }
  .earn-hl-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .earn-stat { padding: 10px 8px !important; border-radius: 10px !important; }
  .earn-stat-val { font-size: 18px !important; }
  .earn-stat-lbl { font-size: 9px !important; }
}

/* ══ MOBILE 480px ══ */
@media (max-width: 480px) {
  .xab-earn-section { padding: 16px 12px !important; }
  .glass-card { padding: 14px 12px !important; }
  .glass-card p { font-size: 13px !important; }
  .arb-flow-box { padding: 0.8rem !important; }
  .arb-flow-label { font-size: 0.85rem !important; }
  .earn-step { padding: 18px 12px !important; }
  .xab-benefit-item { padding: 14px 12px !important; }
  .arb-cta-box { padding: 14px 10px !important; }
  .earn-hl-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .earn-stat-val { font-size: 16px !important; }
}

/* ══ MOBILE 380px ══ */
@media (max-width: 380px) {
  .xab-earn-section { padding: 14px 10px !important; }
  .glass-card { padding: 12px 10px !important; }
  .glass-card p { font-size: 12.5px !important; }
  .arb-flow-box { padding: 0.7rem !important; }
  .arb-flow-label { font-size: 0.8rem !important; }
  .arb-flow-price { font-size: 0.75rem !important; }
  .arb-result-text { font-size: 0.9rem !important; }
  .earn-step { padding: 16px 10px !important; }
  .earn-step h4 { font-size: 13px !important; }
  .earn-step p { font-size: 11.5px !important; }
  .xab-benefit-item { padding: 12px 10px !important; }
  .xab-benefit-item h4 { font-size: 13px !important; }
  .xab-benefit-item p { font-size: 12px !important; }
  .arb-cta-box { padding: 12px 8px !important; }
  .arb-cta-text { font-size: 0.82rem !important; }
  .arb-cta-left .glow-btn span { font-size: 12px !important; }
  .arb-cta-qr .qr-card canvas { width: 100px !important; height: 100px !important; }
  .earn-stat-val { font-size: 15px !important; }
  .earn-stat-lbl { font-size: 8.5px !important; }
}


/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — COMPLETE FINAL FIX
   ══════════════════════════════════════════ */

/* ── Global overflow guard ── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

* { box-sizing: border-box; }

/* ── Social sidebar: hide on mobile ── */
@media (max-width: 768px) {
  .social-sidebar { display: none !important; }
}

/* ── Hero nav: hide links, keep logo + CTA ── */
@media (max-width: 640px) {
  .hero-nav {
    padding: 16px 16px !important;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .hero-nav-links { display: none !important; }
  .hero-nav-logo { font-size: 17px !important; }
  .hero-nav-cta { padding: 7px 14px !important; font-size: 12px !important; white-space: nowrap; }
}

/* ── Hero main ── */
@media (max-width: 640px) {
  .hero-main { padding: 36px 16px 0 !important; }
  .hero-badge { font-size: 11px !important; padding: 6px 14px !important; text-align: center; }
  .hero-h1 { font-size: clamp(28px, 8vw, 42px) !important; }
  .hero-p { font-size: 13px !important; margin-top: 16px !important; }
  .hero-cta-btn { font-size: 14px !important; padding: 13px 28px !important; margin-top: 24px !important; }
}

/* ── Hero cards: single column on mobile ── */
@media (max-width: 768px) {
  .hero-cards {
    grid-template-columns: 1fr !important;
    padding: 0 16px 48px !important;
    margin-top: 36px !important;
    gap: 16px !important;
  }
  .hero-card-tilt-left,
  .hero-card-tilt-right { display: none !important; }
  .hero-card-center { padding: 24px 20px !important; }
  .hero-card-stat { font-size: 36px !important; }
}

/* ── Hero planet: scale down ── */
@media (max-width: 640px) {
  .hero-planet { height: 200px !important; bottom: 80px !important; }
}

/* ── Container width fix ── */
@media (max-width: 640px) {
  .container { width: calc(100% - 24px) !important; }
}

/* ── Leader section width fix ── */
@media (max-width: 900px) {
  .leader-section { width: calc(100% - 40px) !important; }
  .final-videos-section { width: calc(100% - 40px) !important; }
  .xrp-future { width: calc(100% - 40px) !important; }
}
@media (max-width: 640px) {
  .leader-section { width: calc(100% - 24px) !important; margin-bottom: 32px !important; }
  .final-videos-section { width: calc(100% - 24px) !important; padding: 20px 14px !important; margin-bottom: 32px !important; }
  .xrp-future { width: calc(100% - 24px) !important; padding: 20px 14px !important; margin-bottom: 32px !important; }
}

/* ── Banner card ── */
@media (max-width: 640px) {
  .banner-card { padding: 28px 16px !important; margin-bottom: 24px !important; }
  .banner-title { font-size: clamp(18px, 5.5vw, 26px) !important; letter-spacing: 0.5px !important; }
}

/* ── Crypto section ── */
@media (max-width: 640px) {
  .crypto-section { padding: 24px 14px 20px !important; margin-bottom: 20px !important; }
}

/* ── XRP prediction ── */
@media (max-width: 640px) {
  .xrp-prediction { padding: 20px 14px !important; margin-bottom: 20px !important; }
}

/* ── Leader card ── */
@media (max-width: 900px) {
  .leader-card {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 32px 24px !important;
  }
  .leader-img-wrap { max-width: 400px !important; margin: 0 auto !important; min-height: 320px !important; }
  .leader-img { min-height: 320px !important; }
  .leader-stats { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .leader-card { padding: 18px 14px !important; gap: 20px !important; border-radius: 16px !important; }
  .leader-name { font-size: 22px !important; }
  .leader-bio { font-size: 13px !important; }
  .leader-img-wrap { max-width: 100% !important; min-height: 260px !important; }
  .leader-img { min-height: 260px !important; height: 260px !important; object-fit: cover !important; object-position: top !important; }
  .leader-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; padding: 12px !important; }
  .ls-val { font-size: 16px !important; }
  .ls-lbl { font-size: 9px !important; }
  .leader-socials { gap: 8px !important; }
  .ls-icon { width: 34px !important; height: 34px !important; }
}

/* ── Team india grid ── */
@media (max-width: 900px) {
  .team-india-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .team-india-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .ti-card { padding: 16px 14px !important; }
}

/* ── Final videos section ── */
@media (max-width: 900px) {
  .final-videos-section { padding: 36px 24px !important; }
  .fv-guidelines { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .fv-guidelines { grid-template-columns: 1fr !important; gap: 10px !important; }
  .fv-guide-step { padding: 16px 14px !important; }
  .fv-title { font-size: clamp(20px, 6vw, 28px) !important; }
  .fv-sub { font-size: 13px !important; }
  .fv-video-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .featured-video { grid-column: span 1 !important; }
  .fv-video-info { padding: 12px 12px 14px !important; }
  .fv-video-info h4 { font-size: 13px !important; }
  .fv-video-info p { font-size: 12px !important; }
}

/* ── XRP future intro ── */
@media (max-width: 640px) {
  .xrp-future-intro { padding: 40px 16px !important; }
  .xrp-fi-heading { font-size: clamp(22px, 6vw, 32px) !important; }
  .xrp-fi-sub { font-size: 13px !important; }
  .xrp-fi-stats { gap: 8px !important; }
  .xrp-fi-stat { font-size: 11px !important; padding: 6px 10px !important; }
}

/* ── XRP future section ── */
@media (max-width: 640px) {
  .xrp-future-header { flex-direction: column !important; gap: 14px !important; }
  .xrp-future-logo { width: 64px !important; height: 64px !important; }
  .xrp-future-logo svg { width: 64px !important; height: 64px !important; }
  .xrp-future-header h3 { font-size: clamp(16px, 5vw, 22px) !important; }
  .xrp-reasons { grid-template-columns: 1fr !important; gap: 10px !important; }
  .xrp-reason { padding: 16px !important; }
  .xrp-profit-box { flex-direction: column !important; gap: 12px !important; padding: 16px !important; }
  .xrp-profit-logo { width: 48px !important; height: 48px !important; }
  .xrp-profit-logo svg { width: 48px !important; height: 48px !important; }
}

/* ── Main section top padding ── */
@media (max-width: 640px) {
  .main-section { padding: 48px 0 0 !important; }
}

/* ── Footer ── */
@media (max-width: 640px) {
  .footer { padding: 24px 16px !important; }
  .footer-icons { gap: 8px !important; flex-wrap: wrap !important; justify-content: center !important; }
  .footer p { font-size: 12px !important; text-align: center !important; }
}

/* ── WhatsApp float: don't overlap content ── */
@media (max-width: 640px) {
  .whatsapp-float { bottom: 16px !important; right: 12px !important; width: 48px !important; height: 48px !important; }
}

/* ── Glow button full width on mobile ── */
@media (max-width: 640px) {
  .glow-btn {
    min-width: unset !important;
    width: 100% !important;
    padding: 15px 16px !important;
    box-sizing: border-box !important;
  }
  .glow-btn span { font-size: 14px !important; }
  .glow-btn small { font-size: 10px !important; }
}

/* ── Inline-style grid overrides for crypto coins row ── */
@media (max-width: 640px) {
  .crypto-coins-row {
    gap: 1.5rem !important;
    padding: 1rem 0 !important;
  }
  .crypto-coins-row > div > div[style] {
    width: 60px !important;
    height: 60px !important;
  }
}

/* ── Prediction timeline inline-style cards ── */
@media (max-width: 900px) {
  .prediction-timeline {
    flex-direction: column !important;
    gap: 14px !important;
  }
  .pred-arrow {
    transform: rotate(90deg) !important;
    text-align: center !important;
    padding: 2px 0 !important;
  }
}

/* ── Inline-style pred card price text ── */
@media (max-width: 640px) {
  [style*="font-size:46px"],
  [style*="font-size: 46px"] {
    font-size: 30px !important;
  }
}

/* ── Section header spacing ── */
@media (max-width: 640px) {
  .section-header { margin-bottom: 24px !important; }
  .section-header h2 { font-size: clamp(20px, 5.5vw, 28px) !important; }
  .section-header p { font-size: 13px !important; }
}

/* ── Prevent any element from causing horizontal scroll ── */
@media (max-width: 640px) {
  .hero-wrapper,
  .main-section,
  .leader-section,
  .final-videos-section,
  .xrp-future-intro,
  .xrp-future,
  .xrp-prediction,
  .crypto-section,
  .xab-earn-section,
  .arb-cta-box,
  .leader-card,
  .banner-card {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
}


/* ── XRP Future Header — mobile center logo fix ── */
@media (max-width: 640px) {
  .xrp-future-header {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
  }
  .xrp-future-logo {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .xrp-future-logo svg {
    width: 80px !important;
    height: 80px !important;
  }
  .xrp-future-header > div {
    text-align: center !important;
  }
  .xrp-future-tag {
    display: inline-block !important;
  }
  .xrp-future-header h3 {
    text-align: center !important;
  }
  .xrp-future-header p {
    text-align: center !important;
  }
}


/* ══════════════════════════════════════════
   XRP ARBITRAGE HIGHLIGHT CARD — REDESIGN
   ══════════════════════════════════════════ */

.xrp-arb-highlight {
  position: relative;
  background: linear-gradient(135deg, rgba(0,170,228,0.08) 0%, rgba(11,11,30,0.95) 50%, rgba(59,130,246,0.06) 100%);
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 24px;
  padding: 40px 36px 32px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,170,228,0.1), 0 0 0 1px rgba(0,170,228,0.05);
}

/* Animated top bar */
.xrp-arb-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #00d4ff, #8b5cf6, #00d4ff, #d4af37);
  background-size: 200%;
  animation: arb-bar 4s linear infinite;
}

@keyframes arb-bar {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* Glow orb background */
.xrp-arb-highlight::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.1), transparent 70%);
  pointer-events: none;
}
.xrp-arb-highlight::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.07), transparent 70%);
  pointer-events: none;
}

/* Header row */
.xrp-arb-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

/* XRP Logo */
.xrp-arb-logo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
}
.xrp-arb-logo svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 0 16px rgba(0,170,228,0.6));
  animation: xrp-pulse 3s ease-in-out infinite;
}

/* Title wrap */
.xrp-arb-title-wrap { flex: 1; min-width: 0; }

.xrp-arb-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00d4ff;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 10px;
}

.xrp-arb-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.xrp-arb-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.xrp-arb-desc strong { color: #60a5fa; }

/* Stats row */
.xrp-arb-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(11,11,30,0.7);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  padding: 20px 24px;
  position: relative;
  z-index: 1;
  gap: 0;
}

.xrp-arb-stat {
  flex: 1;
  text-align: center;
}

.xrp-arb-stat-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #d4af37, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.xrp-arb-stat-lbl {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.xrp-arb-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.4), transparent);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .xrp-arb-highlight { padding: 32px 24px 28px; }
  .xrp-arb-logo { width: 60px; height: 60px; }
  .xrp-arb-logo svg { width: 60px; height: 60px; }
  .xrp-arb-stats { padding: 16px 16px; }
  .xrp-arb-stat-val { font-size: 24px; }
}

@media (max-width: 640px) {
  .xrp-arb-highlight { padding: 28px 16px 22px; border-radius: 18px; }
  .xrp-arb-header { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .xrp-arb-logo { width: 68px; height: 68px; margin: 0 auto; }
  .xrp-arb-logo svg { width: 68px; height: 68px; }
  .xrp-arb-tag { display: inline-block; }
  .xrp-arb-title { font-size: clamp(16px, 5vw, 20px); text-align: center; }
  .xrp-arb-desc { font-size: 13px; text-align: center; }
  .xrp-arb-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 16px 12px;
  }
  .xrp-arb-stat-divider { display: none; }
  .xrp-arb-stat { padding: 10px 6px; }
  .xrp-arb-stat:nth-child(1),
  .xrp-arb-stat:nth-child(3) { border-right: 1px solid rgba(212,175,55,0.25); }
  .xrp-arb-stat:nth-child(1),
  .xrp-arb-stat:nth-child(2) { border-bottom: 1px solid rgba(212,175,55,0.25); }
  .xrp-arb-stat-val { font-size: 22px; }
  .xrp-arb-stat-lbl { font-size: 9px; }
}

@media (max-width: 380px) {
  .xrp-arb-highlight { padding: 22px 12px 18px; }
  .xrp-arb-stat-val { font-size: 19px; }
  .xrp-arb-title { font-size: 16px; }
  .xrp-arb-desc { font-size: 12px; }
}


/* ── EARN STEP NUMBER FIX — number badge visible upar ── */
.earn-step {
  overflow: visible !important;
  padding-top: 28px !important;
}
.earn-step-num {
  position: absolute !important;
  top: -14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 32px !important;
  height: 32px !important;
  background: linear-gradient(135deg, #d4af37, #f0d060) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #050510 !important;
  z-index: 10 !important;
  box-shadow: 0 4px 14px rgba(212,175,55,0.5) !important;
  border: 2px solid rgba(255,255,255,0.2) !important;
}


/* ══════════════════════════════════════════
   HERO CARDS — ALL 3 VISIBLE ON MOBILE
   ══════════════════════════════════════════ */

/* Desktop: keep tilt effect */
.hero-card-tilt-left.hero-card-crypto  { transform: rotate(-4deg) !important; }
.hero-card-tilt-right.hero-card-img-only { transform: rotate(4deg) !important; }

/* Tablet 900px: reduce tilt */
@media (max-width: 900px) {
  .hero-cards {
    grid-template-columns: 1fr 1.2fr 1fr !important;
    gap: 14px !important;
    padding: 0 16px 60px !important;
    margin-top: 40px !important;
  }
  .hero-card-tilt-left.hero-card-crypto  { transform: rotate(-2deg) !important; }
  .hero-card-tilt-right.hero-card-img-only { transform: rotate(2deg) !important; }
  .hero-float { display: none !important; }
}

/* Mobile 768px: all 3 cards in a row, no tilt */
@media (max-width: 768px) {
  .hero-cards {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 12px 48px !important;
    margin-top: 32px !important;
  }

  /* Show all 3 cards */
  .hero-card-tilt-left,
  .hero-card-tilt-right { display: flex !important; }

  /* Remove tilt on mobile */
  .hero-card-tilt-left.hero-card-crypto  { transform: none !important; }
  .hero-card-tilt-right.hero-card-img-only { transform: none !important; }

  /* Left card (XRP price) */
  .hero-card-crypto {
    padding: 14px 10px !important;
    gap: 6px !important;
  }
  .hcc-img-wrap { height: 70px !important; }
  .hcc-price { font-size: 16px !important; }
  .hcc-change { font-size: 10px !important; }
  .hcc-name { font-size: 12px !important; }
  .hcc-sub { font-size: 9px !important; }
  .hcc-badge { font-size: 8px !important; padding: 2px 5px !important; }
  .hcc-desc { font-size: 9px !important; }

  /* Center card */
  .hero-card-center {
    padding: 16px 12px !important;
  }
  .hero-card-stat { font-size: 22px !important; }
  .hero-card-stat span { font-size: 14px !important; }
  .hero-card-label { font-size: 11px !important; margin-bottom: 8px !important; }
  .hero-card-desc { font-size: 10px !important; line-height: 1.5 !important; margin-bottom: 12px !important; }
  .hero-card-mini-row { gap: 5px !important; }
  .hero-card-mini { padding: 7px 4px !important; font-size: 9px !important; border-radius: 8px !important; }
  .hero-card-mini span { font-size: 11px !important; }

  /* Right card */
  .hero-card-img-only { padding: 0 !important; }
  .hcc-img-full { height: 80px !important; }
  .hcc-right-content { padding: 10px 10px 12px !important; gap: 5px !important; }
  .hcc-right-tag { font-size: 9px !important; }
  .hcc-right-point { font-size: 9px !important; padding-left: 6px !important; }
  .hcc-right-price { font-size: 12px !important; padding-top: 7px !important; }
}

/* Mobile 480px: stack cards 1 col but show all */
@media (max-width: 480px) {
  .hero-cards {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 14px 40px !important;
    margin-top: 28px !important;
  }

  /* Remove tilt */
  .hero-card-tilt-left.hero-card-crypto  { transform: none !important; }
  .hero-card-tilt-right.hero-card-img-only { transform: none !important; }

  /* Left card full width */
  .hero-card-crypto {
    padding: 18px 16px !important;
    gap: 8px !important;
    flex-direction: column !important;
  }
  .hcc-img-wrap { height: 100px !important; }
  .hcc-price { font-size: 22px !important; }
  .hcc-change { font-size: 12px !important; }
  .hcc-name { font-size: 14px !important; }
  .hcc-sub { font-size: 10px !important; }
  .hcc-badge { font-size: 10px !important; padding: 3px 8px !important; }
  .hcc-desc { font-size: 11px !important; }

  /* Center card full width */
  .hero-card-center { padding: 22px 18px !important; }
  .hero-card-stat { font-size: 36px !important; }
  .hero-card-stat span { font-size: 18px !important; }
  .hero-card-label { font-size: 14px !important; }
  .hero-card-desc { font-size: 12px !important; }
  .hero-card-mini { padding: 10px 8px !important; font-size: 10px !important; }
  .hero-card-mini span { font-size: 14px !important; }

  /* Right card full width */
  .hero-card-img-only { padding: 0 !important; }
  .hcc-img-full { height: 120px !important; }
  .hcc-right-content { padding: 14px 14px 16px !important; gap: 8px !important; }
  .hcc-right-tag { font-size: 10px !important; }
  .hcc-right-point { font-size: 11px !important; }
  .hcc-right-price { font-size: 15px !important; }
}

/* Mobile 380px */
@media (max-width: 380px) {
  .hero-cards { padding: 0 10px 36px !important; gap: 10px !important; }
  .hero-card-stat { font-size: 30px !important; }
  .hcc-price { font-size: 20px !important; }
}


/* ══════════════════════════════════════════
   HERO CARDS — DESKTOP TILT + MOBILE FIX
   ══════════════════════════════════════════ */

/* ── Desktop: restore tilt ── */
@media (min-width: 769px) {
  .hero-card-tilt-left  { display: flex !important; transform: rotate(-6deg) !important; }
  .hero-card-tilt-right { display: flex !important; transform: rotate(6deg)  !important; }
  .hero-card-center     { transform: none !important; }
}

/* ── Tablet 900px: slight tilt ── */
@media (max-width: 900px) and (min-width: 769px) {
  .hero-cards {
    grid-template-columns: 1fr 1.2fr 1fr !important;
    gap: 14px !important;
    padding: 0 16px 60px !important;
  }
  .hero-card-tilt-left  { transform: rotate(-4deg) !important; }
  .hero-card-tilt-right { transform: rotate(4deg)  !important; }
}

/* ── Mobile 768px and below: all 3 cards, no tilt, 3-col row ── */
@media (max-width: 768px) {
  .hero-cards {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 10px 44px !important;
    margin-top: 28px !important;
  }
  .hero-card-tilt-left,
  .hero-card-tilt-right { display: flex !important; transform: none !important; }
  .hero-card-center     { transform: none !important; }

  /* Left card compact */
  .hero-card-crypto { padding: 12px 8px !important; gap: 5px !important; }
  .hcc-img-wrap { height: 65px !important; }
  .hcc-price { font-size: 14px !important; }
  .hcc-change { font-size: 9px !important; }
  .hcc-name { font-size: 11px !important; }
  .hcc-sub { font-size: 8px !important; }
  .hcc-badge { font-size: 7px !important; padding: 2px 4px !important; }
  .hcc-desc { font-size: 8px !important; }

  /* Center card compact */
  .hero-card-center { padding: 14px 10px !important; }
  .hero-card-stat { font-size: 20px !important; line-height: 1 !important; }
  .hero-card-stat span { font-size: 13px !important; }
  .hero-card-label { font-size: 10px !important; margin-bottom: 6px !important; }
  .hero-card-desc { font-size: 9px !important; line-height: 1.4 !important; margin-bottom: 10px !important; }
  .hero-card-mini-row { gap: 4px !important; }
  .hero-card-mini { padding: 6px 3px !important; font-size: 8px !important; border-radius: 8px !important; }
  .hero-card-mini span { font-size: 10px !important; margin-bottom: 1px !important; }

  /* Right card compact */
  .hero-card-img-only { padding: 0 !important; }
  .hcc-img-full { height: 70px !important; border-radius: 20px 20px 0 0 !important; }
  .hcc-right-content { padding: 8px 8px 10px !important; gap: 4px !important; }
  .hcc-right-tag { font-size: 8px !important; }
  .hcc-right-point { font-size: 8px !important; padding-left: 5px !important; }
  .hcc-right-price { font-size: 11px !important; padding-top: 6px !important; gap: 4px !important; }
  .hcc-right-price small { font-size: 8px !important; }
}

/* ── Mobile 480px: stack to 1 col ── */
@media (max-width: 480px) {
  .hero-cards {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 0 14px 40px !important;
  }
  .hero-card-tilt-left,
  .hero-card-tilt-right { transform: none !important; }

  .hero-card-crypto { padding: 18px 16px !important; gap: 8px !important; }
  .hcc-img-wrap { height: 100px !important; }
  .hcc-price { font-size: 22px !important; }
  .hcc-change { font-size: 12px !important; }
  .hcc-name { font-size: 14px !important; }
  .hcc-sub { font-size: 10px !important; }
  .hcc-badge { font-size: 10px !important; padding: 3px 8px !important; }
  .hcc-desc { font-size: 11px !important; }

  .hero-card-center { padding: 22px 18px !important; }
  .hero-card-stat { font-size: 36px !important; }
  .hero-card-stat span { font-size: 18px !important; }
  .hero-card-label { font-size: 14px !important; }
  .hero-card-desc { font-size: 12px !important; }
  .hero-card-mini { padding: 10px 8px !important; font-size: 10px !important; }
  .hero-card-mini span { font-size: 14px !important; }

  .hcc-img-full { height: 120px !important; border-radius: 20px 20px 0 0 !important; }
  .hcc-right-content { padding: 14px 14px 16px !important; gap: 8px !important; }
  .hcc-right-tag { font-size: 10px !important; }
  .hcc-right-point { font-size: 11px !important; }
  .hcc-right-price { font-size: 15px !important; }
}


/* ══════════════════════════════════════════
   HERO SECTION — EXACT DESKTOP LOOK ON MOBILE
   ══════════════════════════════════════════ */

/* ── Force all 3 cards visible at all sizes ── */
.hero-card-tilt-left,
.hero-card-tilt-right,
.hero-card-center {
  display: flex !important;
}

/* ── Desktop tilt (default) ── */
.hero-card-tilt-left.hero-card-crypto   { transform: rotate(-6deg) !important; }
.hero-card-tilt-right.hero-card-img-only { transform: rotate(6deg)  !important; }
.hero-card-center                        { transform: none !important; }

/* ── Hero cards grid — always 3 columns ── */
.hero-cards {
  grid-template-columns: 1fr 1.3fr 1fr !important;
  display: grid !important;
}

/* ── Planet always visible ── */
.hero-planet { display: block !important; }

/* ══ Tablet 900px ══ */
@media (max-width: 900px) {
  .hero-cards {
    grid-template-columns: 1fr 1.3fr 1fr !important;
    gap: 16px !important;
    padding: 0 20px 70px !important;
    margin-top: 44px !important;
  }
  .hero-card-tilt-left.hero-card-crypto   { transform: rotate(-5deg) !important; }
  .hero-card-tilt-right.hero-card-img-only { transform: rotate(5deg)  !important; }
  .hero-planet { height: 380px !important; bottom: 140px !important; }
}

/* ══ Mobile 768px ══ */
@media (max-width: 768px) {
  .hero-cards {
    grid-template-columns: 1fr 1.3fr 1fr !important;
    gap: 10px !important;
    padding: 0 10px 60px !important;
    margin-top: 36px !important;
    width: 100% !important;
  }
  .hero-card-tilt-left.hero-card-crypto   { transform: rotate(-5deg) !important; }
  .hero-card-tilt-right.hero-card-img-only { transform: rotate(5deg)  !important; }
  .hero-planet { height: 280px !important; bottom: 110px !important; }

  /* Left card */
  .hero-card-crypto { padding: 12px 10px !important; gap: 6px !important; }
  .hcc-img-wrap { height: 72px !important; }
  .hcc-top { gap: 6px !important; }
  .hcc-top svg { width: 20px !important; height: 20px !important; }
  .hcc-name { font-size: 11px !important; }
  .hcc-sub { font-size: 8px !important; }
  .hcc-badge { font-size: 7px !important; padding: 2px 5px !important; }
  .hcc-price { font-size: 16px !important; }
  .hcc-change { font-size: 9px !important; }
  .hcc-desc { font-size: 8px !important; }

  /* Center card */
  .hero-card-center { padding: 16px 12px !important; }
  .hero-card-stat { font-size: 24px !important; }
  .hero-card-stat span { font-size: 14px !important; }
  .hero-card-label { font-size: 11px !important; margin-bottom: 8px !important; }
  .hero-card-desc { font-size: 9.5px !important; line-height: 1.5 !important; margin-bottom: 12px !important; }
  .hero-card-mini-row { gap: 5px !important; }
  .hero-card-mini { padding: 7px 4px !important; font-size: 8.5px !important; border-radius: 8px !important; }
  .hero-card-mini span { font-size: 11px !important; }

  /* Right card */
  .hero-card-img-only { padding: 0 !important; }
  .hcc-img-full { height: 75px !important; border-radius: 20px 20px 0 0 !important; }
  .hcc-right-content { padding: 9px 9px 11px !important; gap: 5px !important; }
  .hcc-right-tag { font-size: 8px !important; }
  .hcc-right-points { gap: 3px !important; }
  .hcc-right-point { font-size: 8px !important; padding-left: 5px !important; }
  .hcc-right-price { font-size: 11px !important; padding-top: 6px !important; gap: 4px !important; }
  .hcc-right-price small { font-size: 8px !important; }
}

/* ══ Mobile 640px ══ */
@media (max-width: 640px) {
  .hero-cards {
    gap: 8px !important;
    padding: 0 8px 52px !important;
    margin-top: 28px !important;
  }
  .hero-card-tilt-left.hero-card-crypto   { transform: rotate(-4deg) !important; }
  .hero-card-tilt-right.hero-card-img-only { transform: rotate(4deg)  !important; }
  .hero-planet { height: 220px !important; bottom: 90px !important; }

  /* Left card */
  .hero-card-crypto { padding: 10px 8px !important; gap: 5px !important; }
  .hcc-img-wrap { height: 58px !important; }
  .hcc-top svg { width: 16px !important; height: 16px !important; }
  .hcc-name { font-size: 10px !important; }
  .hcc-sub { font-size: 7px !important; }
  .hcc-badge { display: none !important; }
  .hcc-price { font-size: 13px !important; }
  .hcc-change { font-size: 8px !important; }
  .hcc-desc { font-size: 7.5px !important; }

  /* Center card */
  .hero-card-center { padding: 12px 8px !important; }
  .hero-card-stat { font-size: 18px !important; }
  .hero-card-stat span { font-size: 12px !important; }
  .hero-card-label { font-size: 9px !important; margin-bottom: 6px !important; }
  .hero-card-desc { font-size: 8px !important; margin-bottom: 8px !important; }
  .hero-card-mini { padding: 5px 3px !important; font-size: 7.5px !important; }
  .hero-card-mini span { font-size: 9px !important; }

  /* Right card */
  .hcc-img-full { height: 60px !important; }
  .hcc-right-content { padding: 7px 7px 9px !important; gap: 4px !important; }
  .hcc-right-tag { font-size: 7px !important; }
  .hcc-right-point { font-size: 7px !important; }
  .hcc-right-price { font-size: 10px !important; padding-top: 5px !important; }
  .hcc-right-price small { font-size: 7px !important; }
}

/* ══ Mobile 480px ══ */
@media (max-width: 480px) {
  .hero-cards {
    gap: 6px !important;
    padding: 0 6px 44px !important;
  }
  .hero-card-tilt-left.hero-card-crypto   { transform: rotate(-3deg) !important; }
  .hero-card-tilt-right.hero-card-img-only { transform: rotate(3deg)  !important; }
  .hero-planet { height: 180px !important; bottom: 70px !important; }

  .hcc-img-wrap { height: 48px !important; }
  .hcc-price { font-size: 11px !important; }
  .hcc-change { font-size: 7px !important; }
  .hcc-name { font-size: 9px !important; }
  .hcc-desc { display: none !important; }

  .hero-card-center { padding: 10px 6px !important; }
  .hero-card-stat { font-size: 15px !important; }
  .hero-card-label { font-size: 8px !important; }
  .hero-card-desc { display: none !important; }
  .hero-card-mini { padding: 4px 2px !important; font-size: 7px !important; }
  .hero-card-mini span { font-size: 8px !important; }

  .hcc-img-full { height: 50px !important; }
  .hcc-right-content { padding: 6px !important; }
  .hcc-right-point { font-size: 6.5px !important; }
  .hcc-right-price { font-size: 9px !important; }
}

/* ══ Mobile 380px ══ */
@media (max-width: 380px) {
  .hero-cards { gap: 5px !important; padding: 0 5px 36px !important; }
  .hero-planet { height: 150px !important; bottom: 55px !important; }
  .hcc-img-wrap { height: 40px !important; }
  .hcc-price { font-size: 10px !important; }
  .hero-card-stat { font-size: 13px !important; }
  .hero-card-mini span { font-size: 7px !important; }
  .hcc-img-full { height: 42px !important; }
}


/* ══════════════════════════════════════════
   HERO CARDS — FINAL CLEAN OVERRIDE
   Desktop: left tilt, center straight, right tilt
   Mobile: same layout, scaled down
   ══════════════════════════════════════════ */

/* Always show all 3 cards */
.hero-card-tilt-left,
.hero-card-tilt-right { display: flex !important; }

/* Desktop tilt */
.hero-card-tilt-left  { transform: rotate(-5deg) !important; }
.hero-card-tilt-right { transform: rotate(5deg)  !important; }
.hero-card-center     { transform: none !important; }

/* Grid always 3 col */
.hero-cards {
  grid-template-columns: 1fr 1.3fr 1fr !important;
  display: grid !important;
  width: min(100%, 1000px) !important;
  margin: 56px auto 0 !important;
  padding: 0 24px 80px !important;
  gap: 24px !important;
}

/* Planet always visible */
.hero-planet { display: block !important; }

/* ── Tablet 900px ── */
@media (max-width: 900px) {
  .hero-cards {
    gap: 16px !important;
    padding: 0 20px 70px !important;
    margin-top: 44px !important;
  }
  .hero-card-tilt-left  { transform: rotate(-4deg) !important; }
  .hero-card-tilt-right { transform: rotate(4deg)  !important; }
  .hero-planet { height: 360px !important; bottom: 130px !important; }
}

/* ── Mobile 768px ── */
@media (max-width: 768px) {
  .hero-cards {
    gap: 10px !important;
    padding: 0 10px 56px !important;
    margin-top: 32px !important;
  }
  .hero-card-tilt-left  { transform: rotate(-4deg) !important; }
  .hero-card-tilt-right { transform: rotate(4deg)  !important; }
  .hero-planet { height: 260px !important; bottom: 100px !important; }

  /* Left card */
  .hero-card-crypto { padding: 12px 10px !important; gap: 6px !important; }
  .hcc-img-wrap { height: 68px !important; }
  .hcc-top svg { width: 18px !important; height: 18px !important; }
  .hcc-name { font-size: 11px !important; }
  .hcc-sub { font-size: 8px !important; }
  .hcc-badge { font-size: 7px !important; padding: 2px 5px !important; }
  .hcc-price { font-size: 15px !important; }
  .hcc-change { font-size: 9px !important; }
  .hcc-desc { font-size: 8px !important; }

  /* Center card */
  .hero-card-center { padding: 16px 12px !important; }
  .hero-card-stat { font-size: 22px !important; }
  .hero-card-stat span { font-size: 13px !important; }
  .hero-card-label { font-size: 10px !important; margin-bottom: 6px !important; }
  .hero-card-desc { font-size: 9px !important; line-height: 1.4 !important; margin-bottom: 10px !important; }
  .hero-card-mini-row { gap: 4px !important; }
  .hero-card-mini { padding: 6px 3px !important; font-size: 8px !important; border-radius: 8px !important; }
  .hero-card-mini span { font-size: 10px !important; }

  /* Right card */
  .hero-card-img-only { padding: 0 !important; }
  .hcc-img-full { height: 72px !important; border-radius: 20px 20px 0 0 !important; }
  .hcc-right-content { padding: 8px 8px 10px !important; gap: 4px !important; }
  .hcc-right-tag { font-size: 8px !important; }
  .hcc-right-points { gap: 3px !important; }
  .hcc-right-point { font-size: 7.5px !important; padding-left: 5px !important; }
  .hcc-right-price { font-size: 11px !important; padding-top: 6px !important; }
  .hcc-right-price small { font-size: 8px !important; }
}

/* ── Mobile 640px ── */
@media (max-width: 640px) {
  .hero-cards {
    gap: 7px !important;
    padding: 0 8px 48px !important;
    margin-top: 24px !important;
  }
  .hero-card-tilt-left  { transform: rotate(-3deg) !important; }
  .hero-card-tilt-right { transform: rotate(3deg)  !important; }
  .hero-planet { height: 200px !important; bottom: 80px !important; }

  .hero-card-crypto { padding: 10px 7px !important; gap: 5px !important; }
  .hcc-img-wrap { height: 55px !important; }
  .hcc-top svg { width: 14px !important; height: 14px !important; }
  .hcc-name { font-size: 9px !important; }
  .hcc-sub { display: none !important; }
  .hcc-badge { display: none !important; }
  .hcc-price { font-size: 12px !important; }
  .hcc-change { font-size: 8px !important; }
  .hcc-desc { display: none !important; }
  .hcc-bar { display: none !important; }

  .hero-card-center { padding: 10px 7px !important; }
  .hero-card-stat { font-size: 17px !important; }
  .hero-card-stat span { font-size: 11px !important; }
  .hero-card-label { font-size: 8px !important; margin-bottom: 5px !important; }
  .hero-card-desc { display: none !important; }
  .hero-card-mini-row { gap: 3px !important; }
  .hero-card-mini { padding: 5px 2px !important; font-size: 7px !important; border-radius: 6px !important; }
  .hero-card-mini span { font-size: 9px !important; }

  .hcc-img-full { height: 58px !important; }
  .hcc-right-content { padding: 6px 6px 8px !important; gap: 3px !important; }
  .hcc-right-tag { font-size: 7px !important; }
  .hcc-right-points { gap: 2px !important; }
  .hcc-right-point { font-size: 7px !important; padding-left: 4px !important; }
  .hcc-right-price { font-size: 9px !important; padding-top: 4px !important; }
  .hcc-right-price small { font-size: 7px !important; }
}

/* ── Mobile 480px ── */
@media (max-width: 480px) {
  .hero-cards {
    gap: 6px !important;
    padding: 0 6px 40px !important;
  }
  .hero-card-tilt-left  { transform: rotate(-2.5deg) !important; }
  .hero-card-tilt-right { transform: rotate(2.5deg)  !important; }
  .hero-planet { height: 160px !important; bottom: 65px !important; }

  .hcc-img-wrap { height: 44px !important; }
  .hcc-price { font-size: 10px !important; }
  .hcc-change { font-size: 7px !important; }
  .hcc-name { font-size: 8px !important; }

  .hero-card-center { padding: 8px 5px !important; }
  .hero-card-stat { font-size: 14px !important; }
  .hero-card-label { font-size: 7px !important; }
  .hero-card-mini { padding: 4px 2px !important; font-size: 6.5px !important; }
  .hero-card-mini span { font-size: 8px !important; }

  .hcc-img-full { height: 46px !important; }
  .hcc-right-content { padding: 5px !important; }
  .hcc-right-point { font-size: 6.5px !important; }
  .hcc-right-price { font-size: 8px !important; }
}

/* ── Mobile 380px ── */
@media (max-width: 380px) {
  .hero-cards { gap: 5px !important; padding: 0 5px 34px !important; }
  .hero-planet { height: 140px !important; bottom: 55px !important; }
  .hcc-img-wrap { height: 38px !important; }
  .hcc-price { font-size: 9px !important; }
  .hero-card-stat { font-size: 12px !important; }
  .hero-card-mini span { font-size: 7px !important; }
  .hcc-img-full { height: 40px !important; }
}


/* ══════════════════════════════════════════
   HERO CARDS — FRESH REDESIGN (FINAL)
   ══════════════════════════════════════════ */

/* Grid */
.hero-cards {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: 1fr 1.2fr 1fr !important;
  gap: 20px !important;
  width: min(100%, 960px) !important;
  margin: 52px auto 0 !important;
  padding: 0 20px 80px !important;
}

/* Base card */
.hc {
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.4);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.1);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Tilt */
.hc-left  { transform: rotate(-5deg); transform-origin: bottom center; }
.hc-right { transform: rotate(5deg);  transform-origin: bottom center; }
.hc-center { transform: none; border-color: rgba(212,175,55,0.25); }

/* ── Left card ── */
.hc-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hc-coin-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,170,228,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hc-icon-gold { background: rgba(212,175,55,0.15); }
.hc-coin-info { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.hc-coin-name { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: #fff; }
.hc-coin-sub  { font-size: 10px; color: rgba(255,255,255,0.4); }
.hc-live-dot  { font-size: 10px; font-weight: 700; color: #22c55e; white-space: nowrap; }

.hc-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 800; color: #fff; line-height: 1;
}
.hc-change { font-size: 12px; font-weight: 600; }

.hc-bar {
  height: 3px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.hc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #00d4ff);
  border-radius: 2px;
}

.hc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.hc-tag {
  font-size: 9px; font-weight: 600;
  padding: 3px 8px; border-radius: 20px;
  background: rgba(0,170,228,0.1);
  border: 1px solid rgba(0,170,228,0.25);
  color: #00aae4;
  white-space: nowrap;
}

/* ── Center card ── */
.hc-center {
  padding: 28px 22px;
  box-shadow: 0 0 60px rgba(212,175,55,0.08), 0 8px 40px rgba(0,0,0,0.5);
}
.hc-center-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d4af37;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px; padding: 4px 12px;
  width: fit-content;
}
.hc-center-vol {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px; font-weight: 300; color: #fff; line-height: 1;
}
.hc-center-vol span { font-size: 18px; color: #d4af37; }
.hc-center-label { font-size: 13px; color: #d4af37; font-weight: 500; }
.hc-center-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}
.hc-stats-row { display: flex; gap: 8px; }
.hc-stat {
  flex: 1; text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 12px; padding: 10px 6px;
}
.hc-stat-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #6ab0ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 3px;
}
.hc-stat-lbl { display: block; font-size: 9px; color: rgba(255,255,255,0.4); }

/* ── Right card ── */
.hc-why-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700; color: #d4af37;
}
.hc-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.hc-points li {
  font-size: 12px; color: rgba(255,255,255,0.7);
  padding: 7px 10px;
  background: rgba(212,175,55,0.05);
  border-left: 2px solid rgba(212,175,55,0.5);
  border-radius: 0 8px 8px 0;
}
.hc-xrp-price-row {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px; margin-top: 2px;
}
.hc-xrp-price-row span { color: #d4af37; }
.hc-xrp-price-row small { font-size: 10px; font-weight: 600; }

/* ══ Tablet 900px ══ */
@media (max-width: 900px) {
  .hero-cards {
    gap: 14px !important;
    padding: 0 16px 70px !important;
    margin-top: 40px !important;
  }
  .hc-left  { transform: rotate(-3deg); }
  .hc-right { transform: rotate(3deg); }
  .hc-price { font-size: 24px !important; }
  .hc-center-vol { font-size: 32px !important; }
}

/* ══ Mobile 768px ══ */
@media (max-width: 768px) {
  .hero-cards {
    grid-template-columns: 1fr 1.2fr 1fr !important;
    gap: 10px !important;
    padding: 0 10px 56px !important;
    margin-top: 28px !important;
  }
  .hc { padding: 14px 11px !important; gap: 8px !important; border-radius: 18px !important; }
  .hc-left  { transform: rotate(-3deg) !important; }
  .hc-right { transform: rotate(3deg) !important; }
  .hc-center { padding: 16px 12px !important; }

  .hc-coin-icon { width: 28px !important; height: 28px !important; }
  .hc-coin-icon svg { width: 16px !important; height: 16px !important; }
  .hc-coin-name { font-size: 11px !important; }
  .hc-coin-sub { font-size: 8px !important; }
  .hc-live-dot { font-size: 8px !important; }
  .hc-price { font-size: 18px !important; }
  .hc-change { font-size: 9px !important; }
  .hc-tags { gap: 4px !important; }
  .hc-tag { font-size: 7.5px !important; padding: 2px 6px !important; }

  .hc-center-badge { font-size: 8px !important; padding: 3px 8px !important; }
  .hc-center-vol { font-size: 22px !important; }
  .hc-center-vol span { font-size: 13px !important; }
  .hc-center-label { font-size: 9px !important; }
  .hc-stat { padding: 7px 3px !important; border-radius: 8px !important; }
  .hc-stat-val { font-size: 11px !important; }
  .hc-stat-lbl { font-size: 7.5px !important; }

  .hc-why-title { font-size: 11px !important; }
  .hc-points li { font-size: 9px !important; padding: 5px 7px !important; }
  .hc-xrp-price-row { font-size: 11px !important; padding-top: 7px !important; }
  .hc-xrp-price-row small { font-size: 8px !important; }
}

/* ══ Mobile 640px ══ */
@media (max-width: 640px) {
  .hero-cards {
    gap: 8px !important;
    padding: 0 8px 48px !important;
    margin-top: 22px !important;
  }
  .hc { padding: 11px 8px !important; gap: 6px !important; border-radius: 14px !important; }
  .hc-left  { transform: rotate(-2.5deg) !important; }
  .hc-right { transform: rotate(2.5deg) !important; }

  .hc-coin-icon { width: 24px !important; height: 24px !important; }
  .hc-coin-icon svg { width: 13px !important; height: 13px !important; }
  .hc-coin-name { font-size: 10px !important; }
  .hc-coin-sub { display: none !important; }
  .hc-live-dot { display: none !important; }
  .hc-price { font-size: 15px !important; }
  .hc-change { font-size: 8px !important; }
  .hc-tags { display: none !important; }

  .hc-center { padding: 12px 8px !important; }
  .hc-center-badge { font-size: 7px !important; padding: 2px 7px !important; }
  .hc-center-vol { font-size: 18px !important; }
  .hc-center-vol span { font-size: 11px !important; }
  .hc-center-label { font-size: 8px !important; }
  .hc-stats-row { gap: 4px !important; }
  .hc-stat { padding: 5px 2px !important; }
  .hc-stat-val { font-size: 9px !important; }
  .hc-stat-lbl { font-size: 6.5px !important; }

  .hc-why-title { font-size: 9px !important; }
  .hc-points li { font-size: 8px !important; padding: 4px 6px !important; gap: 4px !important; }
  .hc-xrp-price-row { font-size: 9px !important; padding-top: 5px !important; gap: 4px !important; }
  .hc-xrp-price-row small { font-size: 7px !important; }
}

/* ══ Mobile 480px ══ */
@media (max-width: 480px) {
  .hero-cards { gap: 6px !important; padding: 0 6px 40px !important; }
  .hc { padding: 9px 7px !important; gap: 5px !important; }
  .hc-left  { transform: rotate(-2deg) !important; }
  .hc-right { transform: rotate(2deg) !important; }
  .hc-price { font-size: 13px !important; }
  .hc-center-vol { font-size: 15px !important; }
  .hc-stat-val { font-size: 8px !important; }
  .hc-points li { font-size: 7px !important; padding: 3px 5px !important; }
}

/* ══ Mobile 380px ══ */
@media (max-width: 380px) {
  .hero-cards { gap: 5px !important; padding: 0 5px 34px !important; }
  .hc { padding: 8px 6px !important; border-radius: 12px !important; }
  .hc-price { font-size: 12px !important; }
  .hc-center-vol { font-size: 13px !important; }
}


/* ══════════════════════════════════════════
   HERO SIDE CARDS — IMAGE ON MOBILE
   ══════════════════════════════════════════ */

/* Desktop: show content, hide image */
.hc-mobile-img { display: none !important; }
.hc-desktop-content { display: flex; flex-direction: column; gap: 12px; width: 100%; }

/* Mobile 768px: hide content, show image */
@media (max-width: 768px) {
  .hc-desktop-content { display: none !important; }
  .hc-mobile-img {
    display: block !important;
    width: 100% !important;
    height: 130px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }
  /* Remove padding so image fills card */
  .hc-left,
  .hc-right {
    padding: 0 !important;
    overflow: hidden !important;
    height: 130px !important;
  }
  .hc-left  { transform: rotate(-3deg) !important; }
  .hc-right { transform: rotate(3deg) !important; }

  /* Center card stays same height as images */
  .hc-center {
    padding: 16px 12px !important;
    justify-content: center !important;
  }
  .hc-center-vol { font-size: 22px !important; }
  .hc-center-vol span { font-size: 14px !important; }
  .hc-center-label { font-size: 9px !important; }
  .hc-center-badge { font-size: 8px !important; padding: 3px 8px !important; }
  .hc-stats-row { gap: 5px !important; }
  .hc-stat { padding: 7px 4px !important; }
  .hc-stat-val { font-size: 11px !important; }
  .hc-stat-lbl { font-size: 7px !important; }
}

/* Mobile 640px */
@media (max-width: 640px) {
  .hc-left,
  .hc-right { height: 110px !important; }
  .hc-mobile-img { height: 110px !important; }
  .hc-left  { transform: rotate(-2.5deg) !important; }
  .hc-right { transform: rotate(2.5deg) !important; }
  .hc-center { padding: 12px 8px !important; }
  .hc-center-vol { font-size: 18px !important; }
  .hc-center-badge { display: none !important; }
  .hc-center-divider { display: none !important; }
}

/* Mobile 480px */
@media (max-width: 480px) {
  .hc-left,
  .hc-right { height: 90px !important; }
  .hc-mobile-img { height: 90px !important; }
  .hc-left  { transform: rotate(-2deg) !important; }
  .hc-right { transform: rotate(2deg) !important; }
  .hc-center-vol { font-size: 15px !important; }
  .hc-stat-val { font-size: 9px !important; }
  .hc-stat-lbl { font-size: 6.5px !important; }
}

/* Mobile 380px */
@media (max-width: 380px) {
  .hc-left,
  .hc-right { height: 76px !important; }
  .hc-mobile-img { height: 76px !important; }
  .hc-center-vol { font-size: 13px !important; }
}


/* ══════════════════════════════════════════
   HERO CARDS — DESKTOP ORIGINAL + MOBILE IMAGE
   ══════════════════════════════════════════ */

/* ── DESKTOP: exact original layout ── */
@media (min-width: 769px) {
  .hero-cards {
    display: grid !important;
    grid-template-columns: 1fr 1.3fr 1fr !important;
    gap: 24px !important;
    width: min(100%, 1000px) !important;
    margin: 56px auto 0 !important;
    padding: 0 24px 80px !important;
  }
  .hero-card-tilt-left  { display: flex !important; transform: rotate(-4deg) !important; }
  .hero-card-tilt-right { display: flex !important; transform: rotate(4deg) !important; }
  .hero-card-center     { transform: none !important; }

  /* Left card original */
  .hero-card-crypto {
    padding: 20px 18px !important;
    flex-direction: column !important;
    gap: 8px !important;
  }
  .hcc-img-wrap { height: 110px !important; display: block !important; }
  .hcc-top, .hcc-price, .hcc-change, .hcc-bar, .hcc-desc { display: flex !important; }
  .hcc-price { font-size: 24px !important; }

  /* Right card original */
  .hero-card-img-only { padding: 0 !important; overflow: hidden !important; }
  .hcc-img-full { height: 130px !important; display: block !important; }
  .hcc-right-content { display: flex !important; padding: 14px 16px 16px !important; }
  .hcc-right-tag, .hcc-right-points, .hcc-right-price { display: flex !important; }

  /* Center card original */
  .hero-card-center { padding: 32px 28px !important; }
  .hero-card-stat { font-size: 52px !important; }
  .hero-card-label { font-size: 16px !important; }
  .hero-card-desc { font-size: 13px !important; }
  .hero-card-mini { padding: 10px 8px !important; font-size: 11px !important; }
  .hero-card-mini span { font-size: 15px !important; }
}

/* ── MOBILE: side cards = image only, reduced height ── */
@media (max-width: 768px) {
  .hero-cards {
    display: grid !important;
    grid-template-columns: 1fr 1.3fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 28px auto 0 !important;
    padding: 0 10px 56px !important;
  }

  /* Side cards: image only, no content */
  .hero-card-tilt-left,
  .hero-card-tilt-right {
    display: block !important;
    padding: 0 !important;
    overflow: hidden !important;
    height: 160px !important;
    border-radius: 20px !important;
  }
  .hero-card-tilt-left  { transform: rotate(-4deg) !important; }
  .hero-card-tilt-right { transform: rotate(4deg) !important; }

  /* Left card: show only image, hide all content */
  .hero-card-crypto .hcc-img-wrap {
    height: 100% !important;
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    display: block !important;
  }
  .hero-card-crypto .hcc-img { height: 100% !important; }
  .hero-card-crypto .hcc-top,
  .hero-card-crypto .hcc-price,
  .hero-card-crypto .hcc-change,
  .hero-card-crypto .hcc-bar,
  .hero-card-crypto .hcc-desc { display: none !important; }

  /* Right card: show only image, hide content */
  .hero-card-img-only {
    padding: 0 !important;
    overflow: hidden !important;
  }
  .hcc-img-full {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
  }
  .hcc-right-content { display: none !important; }

  /* Center card */
  .hero-card-center {
    padding: 16px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    height: 160px !important;
  }
  .hero-card-stat { font-size: 24px !important; margin-bottom: 4px !important; }
  .hero-card-stat span { font-size: 14px !important; }
  .hero-card-label { font-size: 10px !important; margin-bottom: 8px !important; }
  .hero-card-desc { font-size: 9px !important; line-height: 1.4 !important; margin-bottom: 10px !important; }
  .hero-card-mini-row { gap: 5px !important; }
  .hero-card-mini { padding: 6px 4px !important; font-size: 8px !important; border-radius: 8px !important; }
  .hero-card-mini span { font-size: 10px !important; margin-bottom: 2px !important; }
}

/* ── Mobile 640px ── */
@media (max-width: 640px) {
  .hero-cards { gap: 8px !important; padding: 0 8px 48px !important; }
  .hero-card-tilt-left,
  .hero-card-tilt-right { height: 130px !important; border-radius: 16px !important; }
  .hero-card-center { height: 130px !important; padding: 12px 8px !important; }
  .hero-card-stat { font-size: 19px !important; }
  .hero-card-label { font-size: 9px !important; }
  .hero-card-desc { display: none !important; }
  .hero-card-mini { padding: 5px 3px !important; font-size: 7.5px !important; }
  .hero-card-mini span { font-size: 9px !important; }
}

/* ── Mobile 480px ── */
@media (max-width: 480px) {
  .hero-cards { gap: 6px !important; padding: 0 6px 40px !important; }
  .hero-card-tilt-left,
  .hero-card-tilt-right { height: 110px !important; border-radius: 14px !important; }
  .hero-card-center { height: 110px !important; padding: 10px 7px !important; }
  .hero-card-stat { font-size: 16px !important; }
  .hero-card-mini-row { gap: 3px !important; }
  .hero-card-mini { padding: 4px 2px !important; font-size: 7px !important; }
  .hero-card-mini span { font-size: 8px !important; }
}

/* ── Mobile 380px ── */
@media (max-width: 380px) {
  .hero-cards { gap: 5px !important; padding: 0 5px 34px !important; }
  .hero-card-tilt-left,
  .hero-card-tilt-right { height: 90px !important; }
  .hero-card-center { height: 90px !important; }
  .hero-card-stat { font-size: 14px !important; }
}


/* ══════════════════════════════════════════
   HERO CARDS — DEFINITIVE FINAL FIX
   ══════════════════════════════════════════ */

/* ── Reset all previous hero card overrides ── */
.hero-card-tilt-left,
.hero-card-tilt-right,
.hero-card-center,
.hero-card-crypto,
.hero-card-img-only {
  all: revert;
}

/* ── Base card ── */
.hero-card {
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.45);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 16px rgba(212,175,55,0.15);
  box-sizing: border-box;
}

/* ── Grid ── */
.hero-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  width: min(100%, 1000px);
  margin: 56px auto 0;
  padding: 0 24px 80px;
  box-sizing: border-box;
}

/* ── Desktop tilt ── */
.hero-card-tilt-left  { transform: rotate(-4deg); display: flex !important; }
.hero-card-tilt-right { transform: rotate(4deg);  display: flex !important; }
.hero-card-center     { transform: none; }

/* ── Left card (crypto) ── */
.hero-card-crypto {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hcc-img-wrap {
  position: relative;
  width: 100%;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2px;
  display: block;
}
.hcc-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hcc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(5,5,16,0.85) 100%);
}
.hcc-top { display: flex; align-items: center; gap: 10px; }
.hcc-name { font-family: 'Space Grotesk',sans-serif; font-size: 15px; font-weight: 700; color: #fff; line-height: 1; }
.hcc-sub  { font-size: 11px; color: rgba(255,255,255,0.4); }
.hcc-badge { margin-left: auto; font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 20px; white-space: nowrap; }
.hcc-badge-blue { background: rgba(0,170,228,0.15); color: #00aae4; border: 1px solid rgba(0,170,228,0.3); }
.hcc-price { font-family: 'Space Grotesk',sans-serif; font-size: 24px; font-weight: 700; color: #fff; line-height: 1; }
.hcc-change { font-size: 12px; font-weight: 600; }
.hcc-bar { height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; margin: 2px 0; }
.hcc-bar-fill { height: 100%; background: linear-gradient(90deg, #d4af37, #6ab0ff); border-radius: 2px; }
.hcc-desc { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.5; }

/* ── Center card ── */
.hero-card-center {
  padding: 32px 28px;
  border-color: rgba(212,175,55,0.2);
  box-shadow: 0 0 50px rgba(212,175,55,0.07), 0 8px 40px rgba(0,0,0,0.5);
}
.hero-card-stat { font-family: 'Space Grotesk',sans-serif; font-size: 52px; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 8px; }
.hero-card-stat span { font-size: 20px; color: #d4af37; }
.hero-card-label { font-size: 16px; color: #d4af37; font-weight: 500; margin-bottom: 12px; }
.hero-card-desc  { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 20px; }
.hero-card-mini-row { display: flex; gap: 10px; }
.hero-card-mini {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.12);
  border-radius: 14px; padding: 10px 8px; text-align: center; font-size: 11px; color: rgba(255,255,255,0.4);
}
.hero-card-mini span {
  display: block; font-family: 'Space Grotesk',sans-serif; font-size: 15px; font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #6ab0ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 3px;
}

/* ── Right card ── */
.hero-card-img-only { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.hcc-img-full { width: 100%; height: 130px; object-fit: cover; display: block; border-radius: 28px 28px 0 0; }
.hcc-right-content { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; }
.hcc-right-tag { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #d4af37; }
.hcc-right-points { display: flex; flex-direction: column; gap: 5px; }
.hcc-right-point { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.4; border-left: 2px solid rgba(212,175,55,0.6); padding-left: 8px; }
.hcc-right-price { font-family: 'Space Grotesk',sans-serif; font-size: 18px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 10px; margin-top: 2px; }
.hcc-right-price span { color: #d4af37; }
.hcc-right-price small { font-size: 12px; font-weight: 600; }

/* ══════════════════════════════════════════
   MOBILE — IMAGE ONLY SIDE CARDS
   ══════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero-cards {
    grid-template-columns: 1fr 1.3fr 1fr !important;
    gap: 10px !important;
    padding: 0 10px 52px !important;
    margin-top: 30px !important;
    width: 100% !important;
  }

  /* Side cards: image only */
  .hero-card-tilt-left,
  .hero-card-tilt-right {
    height: 150px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    display: block !important;
  }
  .hero-card-tilt-left  { transform: rotate(-4deg) !important; }
  .hero-card-tilt-right { transform: rotate(4deg)  !important; }

  /* Left: show only image */
  .hero-card-crypto .hcc-img-wrap {
    height: 100% !important; width: 100% !important;
    border-radius: 0 !important; margin: 0 !important;
  }
  .hero-card-crypto .hcc-top,
  .hero-card-crypto .hcc-price,
  .hero-card-crypto .hcc-change,
  .hero-card-crypto .hcc-bar,
  .hero-card-crypto .hcc-desc { display: none !important; }

  /* Right: show only image */
  .hcc-img-full {
    height: 100% !important; width: 100% !important;
    border-radius: 0 !important; object-fit: cover !important;
  }
  .hcc-right-content { display: none !important; }

  /* Center card */
  .hero-card-center {
    padding: 16px 12px !important;
    height: 150px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .hero-card-stat { font-size: 26px !important; margin-bottom: 4px !important; }
  .hero-card-stat span { font-size: 15px !important; }
  .hero-card-label { font-size: 10px !important; margin-bottom: 8px !important; }
  .hero-card-desc { display: none !important; }
  .hero-card-mini-row { gap: 5px !important; }
  .hero-card-mini { padding: 7px 4px !important; font-size: 8px !important; border-radius: 8px !important; }
  .hero-card-mini span { font-size: 11px !important; margin-bottom: 2px !important; }
}

@media (max-width: 640px) {
  .hero-cards { gap: 8px !important; padding: 0 8px 44px !important; }
  .hero-card-tilt-left,
  .hero-card-tilt-right { height: 120px !important; border-radius: 14px !important; }
  .hero-card-center { height: 120px !important; padding: 12px 8px !important; }
  .hero-card-stat { font-size: 20px !important; }
  .hero-card-label { font-size: 9px !important; }
  .hero-card-mini { padding: 5px 3px !important; font-size: 7.5px !important; }
  .hero-card-mini span { font-size: 9px !important; }
}

@media (max-width: 480px) {
  .hero-cards { gap: 6px !important; padding: 0 6px 38px !important; }
  .hero-card-tilt-left,
  .hero-card-tilt-right { height: 100px !important; }
  .hero-card-center { height: 100px !important; padding: 10px 7px !important; }
  .hero-card-stat { font-size: 17px !important; }
  .hero-card-mini-row { gap: 3px !important; }
  .hero-card-mini { padding: 4px 2px !important; font-size: 7px !important; }
  .hero-card-mini span { font-size: 8px !important; }
}

@media (max-width: 380px) {
  .hero-cards { gap: 5px !important; padding: 0 5px 32px !important; }
  .hero-card-tilt-left,
  .hero-card-tilt-right { height: 84px !important; }
  .hero-card-center { height: 84px !important; padding: 8px 6px !important; }
  .hero-card-stat { font-size: 14px !important; }
}


/* ══════════════════════════════════════════
   CRYPTO COINS ROW — CLEAN RESPONSIVE
   ══════════════════════════════════════════ */

.crypto-coins-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  padding: 2rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.coin-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
}

.coin-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.coin-icon-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

.coin-name {
  font-size: 1.1rem;
  color: #d4af37;
  font-weight: 700;
  margin: 0 0 0.2rem;
}

.coin-type {
  color: rgba(212,175,55,0.6);
  font-size: 0.9rem;
  margin: 0;
}

.coin-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.4), transparent);
  margin-top: 1rem;
  min-width: 80px;
}

/* ── Tablet ── */
@media (max-width: 768px) {
  .crypto-coins-row { gap: 2rem; padding: 1.5rem 0 0.5rem; }
  .coin-icon-wrap { width: 64px; height: 64px; margin-bottom: 0.75rem; }
  .coin-name { font-size: 1rem; }
  .coin-type { font-size: 0.8rem; }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .crypto-coins-row { gap: 1.2rem; padding: 1rem 0 0.5rem; }
  .coin-icon-wrap { width: 52px; height: 52px; margin-bottom: 0.6rem; }
  .coin-name { font-size: 0.85rem; }
  .coin-type { font-size: 0.75rem; }
  .coin-divider { min-width: 52px; margin-top: 0.6rem; }
}

/* ── Small mobile ── */
@media (max-width: 380px) {
  .crypto-coins-row { gap: 0.8rem; }
  .coin-icon-wrap { width: 44px; height: 44px; }
  .coin-name { font-size: 0.78rem; }
  .coin-type { font-size: 0.7rem; }
}


/* ── HERO VIDEO CARD ── */
.hero-video-card {
  position: relative;
  z-index: 2;
  width: min(100%, 860px);
  margin: 0 auto 40px;
  padding: 0 24px;
  box-sizing: border-box;
}

.hero-video-card video {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212,175,55,0.1);
  display: block;
  background: #050510;
}

@media (max-width: 640px) {
  .hero-video-card { padding: 0 12px; margin-bottom: 28px; }
  .hero-video-card video { border-radius: 14px; }
}


/* ── HERO VIDEO TITLE & DESC ── */
.hero-video-info {
  text-align: center;
  margin-bottom: 16px;
}
.hero-video-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 12px;
}
.hero-video-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.hero-video-title span {
  background: linear-gradient(135deg, #d4af37, #6ab0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-video-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .hero-video-title { font-size: 16px; }
  .hero-video-desc { font-size: 13px; }
}


/* ── HERO VIDEO INFO — inside card below video ── */
.hero-video-card {
  background: rgba(11,11,30,0.7) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  border: 1px solid rgba(212,175,55,0.4) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212,175,55,0.1) !important;
  padding: 0 !important;
}
.hero-video-card video {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.hero-video-info {
  padding: 18px 20px 20px !important;
  text-align: left !important;
  margin-bottom: 0 !important;
}
.hero-video-title {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #e2e8f0 !important;
  margin-bottom: 6px !important;
  line-height: 1.3 !important;
}
.hero-video-desc {
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  line-height: 1.6 !important;
  max-width: 100% !important;
  margin: 0 !important;
}

@media (max-width: 640px) {
  .hero-video-info { padding: 14px 14px 16px !important; }
  .hero-video-title { font-size: 14px !important; }
  .hero-video-desc { font-size: 12px !important; }
}


/* ── HERO VIDEO CARD — smaller size ── */
.hero-video-card {
  width: min(100%, 560px) !important;
}


/* ── HERO VIDEO CARD — reduce height ── */
.hero-video-card video {
  max-height: 220px !important;
  object-fit: cover !important;
}


/* ── HERO VIDEO CARD — mobile responsive ── */
@media (max-width: 768px) {
  .hero-video-card {
    width: calc(100% - 20px) !important;
    margin: 0 10px 28px !important;
  }
  .hero-video-card video { max-height: 180px !important; }
}

@media (max-width: 480px) {
  .hero-video-card {
    width: calc(100% - 16px) !important;
    margin: 0 8px 22px !important;
    border-radius: 14px !important;
  }
  .hero-video-card video { max-height: 150px !important; }
  .hero-video-info { padding: 12px 12px 14px !important; }
  .hero-video-title { font-size: 13px !important; }
  .hero-video-desc { font-size: 11px !important; }
}

@media (max-width: 380px) {
  .hero-video-card video { max-height: 130px !important; }
  .hero-video-title { font-size: 12px !important; }
}
