/* ========================================
   Landing Page Layout
   ======================================== */

/* --- Hero --- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16) var(--space-6);
  overflow: hidden;
  background: var(--bg-primary);
}

/* Hero background video — lowest layer */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
}

/* Gradient overlay — above video */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 160, 32, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(232, 117, 26, 0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 80%, rgba(192, 58, 43, 0.06) 0%, transparent 40%);
  z-index: 2;
  pointer-events: none;
}

/* Grid overlay — above gradients */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 160, 32, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 32, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 3;
  pointer-events: none;
}

/* Floating orbs — above grid, below content */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 4;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--gold-500);
  top: 10%;
  left: 20%;
  animation-duration: 8s;
}
.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--orange-400);
  top: 60%;
  right: 15%;
  animation-duration: 10s;
  animation-delay: -3s;
}
.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--accent-red);
  bottom: 20%;
  left: 50%;
  animation-duration: 7s;
  animation-delay: -5s;
}

/* Hero content — topmost layer */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
  gap: var(--space-5);
}

/* Hero logo */
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(212, 160, 32, 0.3)) drop-shadow(0 0 50px rgba(232, 117, 26, 0.1)); }
  50% { filter: drop-shadow(0 0 30px rgba(212, 160, 32, 0.5)) drop-shadow(0 0 80px rgba(232, 117, 26, 0.25)) drop-shadow(0 0 120px rgba(212, 160, 32, 0.1)); }
}

.hero-logo {
  width: clamp(200px, 30vw, 340px);
  height: auto;
  animation: logo-float 4s ease-in-out infinite, logo-glow 3s ease-in-out infinite;
  margin-bottom: var(--space-4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.1;
}

.hero-keys {
  color: var(--gold-300);
  text-shadow: var(--text-glow-gold);
}

.hero-subtitle {
  font-size: var(--text-2xl);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-2);
}

/* --- Hero partner badge --- */
.hero-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  opacity: 0.8;
  transition: opacity var(--duration-normal);
}

.hero-partner:hover {
  opacity: 1;
}

.hero-partner-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-tertiary);
}

.hero-partner-logo {
  height: clamp(40px, 6vw, 60px);
  width: auto;
}

/* --- Alternating section background --- */
.section-alt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* =============================================
   GET STARTED
   ============================================= */

.get-started {
  padding: var(--space-24) 0;
}

.get-started-intro {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto var(--space-10);
  line-height: 1.6;
}

.gs-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.gs-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s var(--ease-out);
}

.gs-step:hover {
  transform: translateX(6px);
  border-color: var(--gold-400);
  box-shadow: 0 0 20px rgba(212, 160, 32, 0.1), 0 8px 24px rgba(0, 0, 0, 0.2);
}

.gs-step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--gold-300);
  background: rgba(212, 160, 32, 0.06);
  box-shadow: 0 0 16px rgba(212, 160, 32, 0.12);
  transition: all 0.4s var(--ease-out);
}

.gs-step:hover .gs-step-number {
  box-shadow: 0 0 24px rgba(212, 160, 32, 0.3);
  background: rgba(212, 160, 32, 0.1);
}

.gs-step-body {
  flex: 1;
  padding-top: var(--space-2);
}

.gs-step-heading {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.gs-step-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
}

.gs-step-text strong {
  color: var(--gold-300);
}

.gs-cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-10);
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .gs-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-3);
  }
  .gs-step-number {
    width: 48px;
    height: 48px;
    font-size: var(--text-lg);
  }
}

/* =============================================
   LEADERBOARD PREVIEW (home page)
   ============================================= */

.lb-preview {
  padding: var(--space-24) 0;
}

/* Podium uses shared classes from leaderboard — duplicated here for home page */
@keyframes medal-swing {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}
@keyframes medal-glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(212, 160, 32, 0.4)); }
  50% { filter: drop-shadow(0 0 24px rgba(212, 160, 32, 0.7)) drop-shadow(0 0 48px rgba(212, 160, 32, 0.2)); }
}
@keyframes prize-glow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(212, 160, 32, 0.3)); }
  50% { filter: drop-shadow(0 0 20px rgba(212, 160, 32, 0.6)) drop-shadow(0 0 40px rgba(212, 160, 32, 0.2)); }
}

.podium { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: var(--space-6); max-width: 950px; margin: 0 auto; align-items: end; }
.podium-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: var(--space-6) var(--space-4); border-radius: var(--radius-xl); border: 2px solid var(--border-subtle); background: var(--bg-tertiary); position: relative; transition: all 0.4s var(--ease-out); overflow: hidden; }
.podium-card::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-xl); opacity: 0; transition: opacity 0.4s; pointer-events: none; z-index: 0; }
.podium-card:hover::before { opacity: 1; }
.podium-card > * { position: relative; z-index: 1; }
.podium-card:hover { transform: translateY(-10px) scale(1.02); }

.podium-1 { border-color: var(--gold-400); background: linear-gradient(180deg, rgba(212, 160, 32, 0.12) 0%, rgba(232, 117, 26, 0.04) 40%, var(--bg-tertiary) 70%); padding: var(--space-10) var(--space-6) var(--space-6); box-shadow: 0 0 30px rgba(212, 160, 32, 0.2), 0 0 60px rgba(212, 160, 32, 0.08), inset 0 1px 0 rgba(212, 160, 32, 0.15); order: 2; }
.podium-1::before { background: radial-gradient(circle at 50% 0%, rgba(212, 160, 32, 0.15) 0%, transparent 60%); }
.podium-1:hover { box-shadow: 0 0 50px rgba(212, 160, 32, 0.35), 0 0 100px rgba(212, 160, 32, 0.12), 0 24px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(212, 160, 32, 0.3); border-color: var(--gold-300); }

.podium-2 { border-color: rgba(100, 160, 255, 0.3); background: linear-gradient(180deg, rgba(100, 160, 255, 0.06) 0%, var(--bg-tertiary) 60%); order: 1; }
.podium-2::before { background: radial-gradient(circle at 50% 0%, rgba(100, 160, 255, 0.1) 0%, transparent 60%); }
.podium-2:hover { box-shadow: 0 0 30px rgba(100, 160, 255, 0.2), 0 0 60px rgba(100, 160, 255, 0.06), 0 20px 40px rgba(0, 0, 0, 0.3); border-color: #64a0ff; }

.podium-3 { border-color: rgba(255, 120, 70, 0.3); background: linear-gradient(180deg, rgba(255, 120, 70, 0.06) 0%, var(--bg-tertiary) 60%); order: 3; }
.podium-3::before { background: radial-gradient(circle at 50% 0%, rgba(255, 120, 70, 0.1) 0%, transparent 60%); }
.podium-3:hover { box-shadow: 0 0 30px rgba(255, 120, 70, 0.2), 0 0 60px rgba(255, 120, 70, 0.06), 0 20px 40px rgba(0, 0, 0, 0.3); border-color: #ff7846; }

.podium-medal { margin-bottom: var(--space-4); transition: transform 0.4s var(--ease-out); }
.podium-medal-1 svg { filter: drop-shadow(0 0 20px rgba(212, 160, 32, 0.5)); animation: medal-swing 4s ease-in-out infinite, medal-glow-pulse 3s ease-in-out infinite; }
.podium-medal-2 svg { filter: drop-shadow(0 0 14px rgba(100, 160, 255, 0.4)); animation: medal-swing 5s ease-in-out infinite; animation-delay: -1s; }
.podium-medal-3 svg { filter: drop-shadow(0 0 14px rgba(255, 120, 70, 0.4)); animation: medal-swing 4.5s ease-in-out infinite; animation-delay: -2s; }
.podium-card:hover .podium-medal { transform: scale(1.15); }

.podium-name { font-family: var(--font-body); font-size: var(--text-xl); font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-4); }
.podium-1 .podium-name { font-size: var(--text-2xl); }

.podium-wager-label, .podium-prize-label { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--text-tertiary); margin-bottom: var(--space-1); }
.podium-wager { font-family: var(--font-mono); font-size: var(--text-xl); font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-4); }
.podium-wager-1 { font-size: var(--text-3xl); }
.podium-2 .podium-wager { color: #a0c4ff; }
.podium-3 .podium-wager { color: #ffaa8a; }

.podium-prize-amount { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 900; letter-spacing: 1px; margin-bottom: var(--space-4); }
.podium-prize-1 { font-size: clamp(2rem, 5vw, 3.5rem); background: linear-gradient(135deg, var(--gold-100), var(--gold-300), var(--orange-400)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: prize-glow 2s ease-in-out infinite; }
.podium-prize-2 { font-size: var(--text-3xl); color: #88bbff; text-shadow: 0 0 12px rgba(100, 160, 255, 0.3); }
.podium-prize-3 { font-size: var(--text-3xl); color: #ffaa8a; text-shadow: 0 0 12px rgba(255, 120, 70, 0.3); }

.podium-bar { width: calc(100% + 2px); margin: auto -1px -1px; border-radius: 0 0 calc(var(--radius-xl) - 2px) calc(var(--radius-xl) - 2px); }
.podium-bar-1 { height: 6px; background: linear-gradient(90deg, var(--gold-600), var(--gold-300), var(--orange-400), var(--gold-300), var(--gold-600)); background-size: 200% 100%; animation: shimmer 3s linear infinite; }
.podium-bar-2 { height: 4px; background: linear-gradient(90deg, #4477cc, #64a0ff, #88bbff, #64a0ff, #4477cc); background-size: 200% 100%; animation: shimmer 4s linear infinite; }
.podium-bar-3 { height: 4px; background: linear-gradient(90deg, #cc5533, #ff7846, #ffaa8a, #ff7846, #cc5533); background-size: 200% 100%; animation: shimmer 4s linear infinite; }

@media (max-width: 600px) {
  .podium { grid-template-columns: 1fr; gap: var(--space-4); }
  .podium-1 { order: 1; }
  .podium-2 { order: 2; }
  .podium-3 { order: 3; }
}

/* 4th & 5th teaser rows */
.lb-preview-rest {
  max-width: 600px;
  margin: var(--space-6) auto 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lb-prev-row {
  display: grid;
  grid-template-columns: 60px 1fr 120px;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  border-left: 3px solid rgba(212, 160, 32, 0.15);
  transition: all var(--duration-normal) var(--ease-out);
}

.lb-prev-row:hover {
  background: rgba(212, 160, 32, 0.04);
  border-left-color: var(--gold-400);
  transform: translateX(4px);
}

.lb-prev-row-rank {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--gold-400);
}

.lb-prev-row-user {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-primary);
}

.lb-prev-row-wager {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-primary);
  text-align: right;
}

.lb-prev-row:hover .lb-prev-row-wager {
  color: var(--gold-300);
}

/* CTA */
.lb-preview-cta {
  text-align: center;
  margin-top: var(--space-8);
}

@media (max-width: 600px) {
  .lb-preview-podium {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .lb-prev-1 { order: 1; }
  .lb-prev-2 { order: 2; }
  .lb-prev-3 { order: 3; }
}

/* =============================================
   REWARDS (home page)
   ============================================= */

.rewards-section {
  padding: var(--space-24) 0;
}

.rewards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
}

/* Big prize pool card */
.rewards-hero-card {
  background: linear-gradient(135deg, rgba(212, 160, 32, 0.1) 0%, rgba(232, 117, 26, 0.05) 100%);
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  box-shadow: 0 0 30px rgba(212, 160, 32, 0.12);
  transition: all 0.4s var(--ease-out);
}

.rewards-hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 50px rgba(212, 160, 32, 0.2), 0 20px 40px rgba(0,0,0,0.3);
}

.rewards-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-200), var(--gold-400), var(--orange-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(212, 160, 32, 0.3));
  line-height: 1;
}

.rewards-period {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-300);
}

.rewards-cycle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-secondary);
}

/* Tier breakdown */
.rewards-tiers {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  justify-content: center;
}

.rewards-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  transition: all var(--duration-normal) var(--ease-out);
}

.rewards-tier:hover {
  border-color: var(--border-default);
  transform: translateX(4px);
}

.rewards-tier-place {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rewards-tier-cut {
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: 700;
}

.rewards-tier-1 {
  border-color: rgba(212, 160, 32, 0.3);
  background: linear-gradient(90deg, rgba(212, 160, 32, 0.06) 0%, var(--bg-tertiary) 100%);
}
.rewards-tier-1 .rewards-tier-place { color: var(--gold-300); }
.rewards-tier-1 .rewards-tier-cut { color: var(--gold-300); text-shadow: 0 0 10px rgba(212, 160, 32, 0.3); }

.rewards-tier-2 {
  border-color: rgba(100, 160, 255, 0.2);
  background: linear-gradient(90deg, rgba(100, 160, 255, 0.04) 0%, var(--bg-tertiary) 100%);
}
.rewards-tier-2 .rewards-tier-place { color: #64a0ff; }
.rewards-tier-2 .rewards-tier-cut { color: #a0c4ff; }

.rewards-tier-3 {
  border-color: rgba(255, 120, 70, 0.2);
  background: linear-gradient(90deg, rgba(255, 120, 70, 0.04) 0%, var(--bg-tertiary) 100%);
}
.rewards-tier-3 .rewards-tier-place { color: #ff7846; }
.rewards-tier-3 .rewards-tier-cut { color: #ffaa8a; }

/* Bottom text + CTA */
.rewards-bottom {
  max-width: 600px;
  margin: var(--space-8) auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.rewards-text {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
}

.rewards-text strong {
  color: var(--gold-300);
}

@media (max-width: 600px) {
  .rewards-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Community --- */

.community-section {
  padding: var(--space-24) 0;
}

.community-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* --- Live Stream --- */

.stream-section {
  padding: var(--space-24) 0;
}

.stream-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-tertiary);
}

.stream-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
}

.stream-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stream-logo {
  width: clamp(120px, 18vw, 180px);
  height: auto;
  margin: 0 auto var(--space-4);
  display: block;
  filter: drop-shadow(0 0 16px rgba(212, 160, 32, 0.25));
}

.stream-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.stream-channel-link {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  transition: color var(--duration-normal);
}

.stream-channel-link:hover {
  color: #53FC18;
}

/* Live stream active state */
.stream-wrap.is-live {
  border-color: #53FC18;
  box-shadow: 0 0 30px rgba(83, 252, 24, 0.15), 0 0 60px rgba(83, 252, 24, 0.05);
}

/* Footer styles are in components.css */

/* --- Cursor Glow Orb --- */
.cursor-orb {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 32, 0.08) 0%, rgba(232, 117, 26, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

.cursor-orb.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .cursor-orb { display: none; }
}

/* --- Social Icons --- */
.community-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-out);
}

.social-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: var(--bg-tertiary);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.social-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--text-secondary);
  transition: fill var(--duration-normal);
}

.social-link:hover .social-icon {
  transform: translateY(-6px) scale(1.05);
  border-color: var(--text-tertiary);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.social-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-tertiary);
  transition: color var(--duration-normal);
}

/* Brand-specific hover colors */
.social-brand-img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

.social-kick:hover .social-icon {
  border-color: #53FC18;
  box-shadow: 0 0 20px rgba(83, 252, 24, 0.3), 0 12px 24px rgba(0, 0, 0, 0.3);
  background: rgba(83, 252, 24, 0.08);
}
.social-kick:hover .social-label { color: #53FC18; }

.social-discord:hover .social-icon {
  border-color: #5865F2;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.3), 0 12px 24px rgba(0, 0, 0, 0.3);
  background: rgba(88, 101, 242, 0.08);
}
.social-discord:hover .social-label { color: #5865F2; }

.social-tiktok:hover .social-icon {
  border-color: #ff0050;
  box-shadow: 0 0 20px rgba(255, 0, 80, 0.25), 0 0 20px rgba(0, 242, 234, 0.15), 0 12px 24px rgba(0, 0, 0, 0.3);
  background: rgba(255, 0, 80, 0.06);
}
.social-tiktok:hover .social-label { color: #ff0050; }

.social-youtube:hover .social-icon {
  border-color: #FF0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3), 0 12px 24px rgba(0, 0, 0, 0.3);
  background: rgba(255, 0, 0, 0.08);
}
.social-youtube:hover .social-label { color: #FF0000; }

.social-instagram:hover .social-icon {
  border-color: #d62976;
  box-shadow: 0 0 20px rgba(214, 41, 118, 0.3), 0 0 15px rgba(250, 126, 30, 0.15), 0 12px 24px rgba(0, 0, 0, 0.3);
  background: rgba(214, 41, 118, 0.08);
}
.social-instagram:hover .social-label { color: #d62976; }

.social-twitter:hover .social-icon {
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15), 0 12px 24px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.06);
}
.social-twitter:hover .social-label { color: #ffffff; }

/* =============================================
   MOBILE OVERHAUL — LANDING PAGE
   ============================================= */

/* Tablet */
@media (max-width: 768px) {
  .hero-video {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: var(--space-12) var(--space-4);
  }

  .hero-logo {
    width: clamp(140px, 40vw, 220px);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-partner-logo {
    height: clamp(30px, 5vw, 50px);
  }

  .orb { opacity: 0.2; }
  .orb-1 { width: 250px; height: 250px; }
  .orb-2 { width: 180px; height: 180px; }
  .orb-3 { width: 150px; height: 150px; }

  .stream-section { padding: var(--space-16) 0; }
  .stream-wrap { border-radius: var(--radius-lg); }
  .stream-logo { width: clamp(80px, 14vw, 120px); }

  .community-links { gap: var(--space-4); }
}

/* Phones */
@media (max-width: 480px) {
  .hero {
    padding: var(--space-8) var(--space-3);
  }

  .hero-nav {
    gap: var(--space-3);
  }

  .hero-nav-link {
    font-size: var(--text-xs);
    letter-spacing: 1px;
  }

  .hero-logo {
    width: 140px;
    margin-bottom: var(--space-2);
  }

  .hero-title {
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }

  .hero-partner {
    margin-top: var(--space-4);
  }

  .hero-partner-label {
    font-size: 0.625rem;
  }

  /* Get Started */
  .get-started { padding: var(--space-16) 0; }

  .get-started-intro {
    font-size: var(--text-base);
  }

  .gs-cta {
    flex-direction: column;
    align-items: center;
  }

  /* Podium */
  .podium {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 400px;
  }

  .podium-1 { order: 1; }
  .podium-2 { order: 2; }
  .podium-3 { order: 3; }

  .podium-medal-1 svg { width: 90px; height: 112px; }
  .podium-medal-2 svg,
  .podium-medal-3 svg { width: 70px; height: 88px; }

  .podium-wager-1 { font-size: var(--text-2xl); }
  .podium-prize-1 { font-size: var(--text-2xl); }
  .podium-prize-2,
  .podium-prize-3 { font-size: var(--text-xl); }

  .lb-preview-cta { margin-top: var(--space-6); }

  .lb-prev-row {
    grid-template-columns: 50px 1fr 90px;
    padding: var(--space-2) var(--space-3);
  }

  /* Rewards */
  .rewards-grid {
    grid-template-columns: 1fr;
  }

  .rewards-amount {
    font-size: 2.5rem;
  }

  .rewards-tier {
    padding: var(--space-3) var(--space-4);
  }

  /* Social icons */
  .social-icon {
    width: 56px;
    height: 56px;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }

  .social-brand-img {
    width: 30px;
    height: 30px;
  }

  .community-links {
    gap: var(--space-3);
  }

  .social-label {
    font-size: 0.625rem;
  }

  /* Stream */
  .stream-logo { width: 80px; }
  .stream-meta {
    flex-direction: column;
    gap: var(--space-2);
  }
}

/* Very small phones */
@media (max-width: 375px) {
  .hero-nav {
    gap: var(--space-2);
  }

  .hero-nav-link {
    font-size: 0.625rem;
    letter-spacing: 0.5px;
    padding: var(--space-1) 0;
  }

  .hero-logo { width: 120px; }

  .hero-subtitle {
    font-size: var(--text-sm);
  }

  .podium-card {
    padding: var(--space-4) var(--space-3);
  }

  .podium-name { font-size: var(--text-base); }

  .social-icon {
    width: 48px;
    height: 48px;
  }
}
