@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
  --bg-color: #05070a;
  --bg-darker: #020305;
  --text-primary: #ffffff;
  --text-secondary: #8e9aab;
  --primary-glow: rgba(0, 255, 102, 0.15);
  --secondary-glow: rgba(0, 225, 255, 0.15);
  
  /* Brand Colors */
  --clr-green: #00ff66;
  --clr-cyan: #00e1ff;
  --clr-dark-green: #00662c;
  --clr-card-bg: rgba(10, 15, 30, 0.45);
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-border-highlight: rgba(0, 255, 102, 0.3);
  
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- RESET & BASIC STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  overflow-y: hidden; /* Managed by main.js to lock scrolling during intro */
  width: 100%;
  position: relative;
}

/* --- 3D CANVAS STYLING --- */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

/* --- DYNAMIC INTRO LAYER & EFFECTS --- */
#flash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  mix-blend-mode: overlay;
}

#vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, transparent 40%, rgba(2, 3, 5, 0.9) 100%);
  z-index: 2;
  pointer-events: none;
}

/* --- UI CONTROLS & GLASSMORPHIC CARD --- */
#ui-container {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* Let clicks pass through unless active */
}

.intro-card {
  background: var(--clr-card-bg);
  backdrop-filter: blur(25px) saturate(160%);
  -webkit-backdrop-filter: blur(25px) saturate(160%);
  border: 1px solid var(--clr-border);
  padding: 3.5rem 4rem;
  border-radius: 24px;
  text-align: center;
  max-width: 650px;
  width: 90%;
  box-shadow: 
    0 24px 50px -10px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 40px var(--primary-glow);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  pointer-events: auto; /* Enable clicks on the card */
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Tech card corner decoration */
.intro-card::before, .intro-card::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid var(--clr-green);
  pointer-events: none;
}

.intro-card::before {
  top: 15px;
  left: 15px;
  border-right: 0;
  border-bottom: 0;
}

.intro-card::after {
  bottom: 15px;
  right: 15px;
  border-left: 0;
  border-top: 0;
}

/* --- BRANDING & TYPOGRAPHY --- */
.logo-container {
  margin-bottom: 1.5rem;
}

.brand-title {
  display: block;
  width: 100%;
  margin: 0 auto;
  position: relative;
  line-height: 1;
}

.brand-logo-svg {
  width: 100%;
  height: auto;
  max-width: 580px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(0, 255, 102, 0.15));
}

.logo-spark {
  animation: sparkFlicker 2s infinite ease-in-out;
  transform-origin: center;
}

/* Pulsing neon energy sparks on the logo */
@keyframes sparkFlicker {
  0%, 100% { 
    opacity: 0.9; 
    stroke-width: 2.5px;
    filter: drop-shadow(0 0 2px currentColor);
  }
  30%, 70% { 
    opacity: 0.4; 
    stroke-width: 1.5px;
    filter: drop-shadow(0 0 1px currentColor);
  }
  50% { 
    opacity: 1; 
    stroke-width: 3.5px;
    filter: drop-shadow(0 0 5px currentColor);
  }
}

.tagline-container {
  margin-bottom: 2.5rem;
  min-height: 48px; /* Prevents layout shifting during text reveal */
}

.tagline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  line-height: 1.4;
  opacity: 0;
}

.tagline .highlight {
  color: var(--clr-green);
  text-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
}

.tagline .highlight-cyan {
  color: var(--clr-cyan);
  text-shadow: 0 0 15px rgba(0, 225, 255, 0.4);
}

.emoji {
  display: inline-block;
  font-size: 1.8rem;
  vertical-align: middle;
  margin-left: 6px;
  animation: floatEmoji 3s ease-in-out infinite;
}

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.scroll-indicator.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.scroll-indicator span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.mouse-icon {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-secondary);
  border-radius: 15px;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 225, 255, 0.1);
}

.mouse-icon .wheel {
  width: 4px;
  height: 8px;
  background-color: var(--clr-cyan);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.6s infinite ease-in-out;
  box-shadow: 0 0 6px var(--clr-cyan);
}

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  50% { top: 16px; opacity: 0.3; }
  100% { top: 6px; opacity: 1; }
}

/* --- REPLAY BUTTON --- */
#btn-replay {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 4;
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid var(--clr-border);
  color: var(--text-secondary);
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: auto;
}

#btn-replay svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.4s ease;
}

#btn-replay:hover {
  color: var(--clr-green);
  border-color: var(--clr-border-highlight);
  background: rgba(10, 15, 30, 0.85);
  transform: translateY(0);
}

#btn-replay:hover svg {
  transform: rotate(-180deg);
}

/* --- ANIMATIONS --- */
@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(10deg); }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .intro-card {
    padding: 2.5rem 2rem;
    margin: 1.5rem;
  }
  
  .brand-title {
    font-size: 2.8rem;
  }
  
  .tagline {
    font-size: 1.25rem;
  }
}

/* --- FOUNDERS SUBSECTION --- */
.founders-subsection {
  margin-top: 6rem;
  margin-bottom: 2rem;
  width: 100%;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3.5rem;
  margin-top: 4rem;
  justify-content: center;
  width: 100%;
}

.founder-card {
  background: rgba(10, 15, 30, 0.45);
  backdrop-filter: blur(25px) saturate(160%);
  -webkit-backdrop-filter: blur(25px) saturate(160%);
  border: 1px solid var(--clr-border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.founder-card:hover {
  transform: translateY(-10px);
  border-color: var(--clr-border-highlight);
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(0, 255, 102, 0.15);
}

.founder-image-container {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.founder-card:hover .founder-image-container {
  border-color: var(--clr-green);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
}

.founder-card:nth-child(2):hover .founder-image-container {
  border-color: var(--clr-cyan);
  box-shadow: 0 0 20px rgba(0, 225, 255, 0.4);
}

.founder-card:nth-child(2):hover {
  border-color: rgba(0, 225, 255, 0.3);
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(0, 225, 255, 0.15);
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.founder-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.founder-card:nth-child(2) .founder-title {
  color: var(--clr-cyan);
}

.founder-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* --- ABOUT SECTION --- */
.about-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 3;
  background: 
    linear-gradient(180deg, #05070a 0%, transparent 15%),
    linear-gradient(125deg, #04060c, #0a1329, #060c1c, #04060c);
  background-size: 100% 100%, 400% 400%;
  animation: gradientShift 15s ease infinite;
  padding: 6rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.about-section::before, .about-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.75;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Green-cyan glowing blob */
.about-section::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.35) 0%, rgba(0, 225, 255, 0.1) 70%, transparent 100%);
  top: 10%;
  right: 10%;
  animation: floatBlob1 20s ease-in-out infinite alternate;
}

/* Purple-blue glowing blob */
.about-section::after {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(56, 189, 248, 0.1) 60%, transparent 100%);
  bottom: 10%;
  left: 5%;
  animation: floatBlob2 25s ease-in-out infinite alternate;
}

.about-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem; /* Reduced margin from 5rem to 3rem */
}

.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 40%, var(--clr-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.accent-bar {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-green), var(--clr-cyan));
  margin: 0 auto 1.5rem auto;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Feature Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem; /* Reduced margin from 5rem to 3rem */
}

.about-card {
  background: rgba(10, 15, 30, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid var(--clr-border);
  padding: 2.5rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-border-highlight);
  box-shadow: 
    0 15px 35px -5px rgba(0,0,0,0.6),
    0 0 25px rgba(0, 255, 102, 0.1);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-green);
  transition: var(--transition-fast);
}

.about-card:hover .card-icon {
  background: rgba(0, 255, 102, 0.1);
  border-color: var(--clr-green);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Spotlight Section */
.brand-spotlight {
  background: radial-gradient(circle at top right, rgba(0, 225, 255, 0.08), transparent 50%),
              radial-gradient(circle at bottom left, rgba(0, 255, 102, 0.08), transparent 50%),
              rgba(10, 15, 30, 0.55);
  backdrop-filter: blur(25px);
  border: 1px solid var(--clr-border);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  box-shadow: 
    0 20px 45px -10px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.brand-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-cyan), var(--clr-green), transparent);
}

.spotlight-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: rgba(0, 225, 255, 0.15);
  color: var(--clr-cyan);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  border: 1px solid rgba(0, 225, 255, 0.25);
  margin-bottom: 1.75rem;
}

.brand-spotlight h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.brand-spotlight p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: #ff0000;
  border: none;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.btn-youtube:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.5);
  background: #cc0000;
}

/* Footer styling */
.stadium-footer {
  width: 100%;
  border-top: 1px solid var(--clr-border);
  padding: 4rem 0 2rem 0;
  margin-top: 6rem;
  text-align: center;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .brand-spotlight {
    padding: 2.5rem 1.5rem;
  }
  
  .brand-spotlight h3 {
    font-size: 1.6rem;
  }
  
  .brand-spotlight p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* --- SOCIAL SECTION (COLOURFUL BACK) --- */
.social-section {
  position: relative;
  width: 100%;
  padding: 3rem 2rem; /* Reduced padding from 8rem to 3rem */
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  overflow: hidden;
  background: linear-gradient(125deg, #04060c, #0a1329, #060c1c, #04060c); /* Slightly lighter base for gradient pop */
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

.social-section::before, .social-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.85; /* Increased opacity from 0.5 to 0.85 for high gradient visibility */
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Red-orange glowing blob (represents YouTube) */
.social-section::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.65) 0%, rgba(220, 39, 67, 0.2) 70%, transparent 100%); /* Brighter glow */
  top: -10%;
  left: 10%;
  animation: floatBlob1 18s ease-in-out infinite alternate;
}

/* Purple-pink-cyan glowing blob (represents Instagram) */
.social-section::after {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(188, 24, 136, 0.4) 0%, rgba(0, 225, 255, 0.15) 60%, transparent 100%);
  bottom: -15%;
  right: 5%;
  animation: floatBlob2 22s ease-in-out infinite alternate;
}

.social-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatBlob1 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(80px, 60px) scale(1.1) rotate(180deg); }
  100% { transform: translate(-40px, -30px) scale(0.9) rotate(360deg); }
}

@keyframes floatBlob2 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(-100px, -40px) scale(1.15) rotate(-180deg); }
  100% { transform: translate(50px, 80px) scale(0.95) rotate(-360deg); }
}

/* --- SOCIAL SPOTLIGHT GRID --- */
.social-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
  width: 100%;
}

.card-canvas-container {
  width: 140px;
  height: 120px;
  margin: 0 auto 0.5rem auto;
  position: relative;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spotlight-card {
  display: flex;
  flex-direction: column;
  background: rgba(10, 15, 30, 0.45);
  backdrop-filter: blur(25px) saturate(160%);
  -webkit-backdrop-filter: blur(25px) saturate(160%);
  border: 1px solid var(--clr-border);
  border-radius: 24px;
  padding: 3rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 45px -10px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: 0;
  transition: var(--transition-smooth);
}

/* YouTube Card Specific Styles */
.youtube-card::before {
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
}
.youtube-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 0, 0.35);
  box-shadow: 
    0 24px 50px -10px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(255, 0, 0, 0.15);
}
.youtube-card:hover::before {
  opacity: 1;
}

/* Instagram Card Specific Styles */
.instagram-card::before {
  background: linear-gradient(90deg, transparent, #dc2743, #bc1888, transparent);
}
.instagram-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 39, 67, 0.35);
  box-shadow: 
    0 24px 50px -10px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(220, 39, 67, 0.15);
}
.instagram-card:hover::before {
  opacity: 1;
}

/* Badges */
.spotlight-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 2rem;
}

.youtube-badge {
  background: rgba(255, 0, 0, 0.12);
  color: #ff3333;
  border: 1px solid rgba(255, 0, 0, 0.25);
}

.instagram-badge {
  background: rgba(220, 39, 67, 0.12);
  color: #ff5c75;
  border: 1px solid rgba(220, 39, 67, 0.25);
}

/* Stats inside Cards */
.spotlight-stat {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1.5px;
}

.youtube-card .spotlight-stat {
  background: linear-gradient(135deg, #ffffff 40%, #ff0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instagram-card .spotlight-stat {
  background: linear-gradient(135deg, #ffffff 30%, #f09433 70%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spotlight-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 2px;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.spotlight-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.spotlight-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

/* Action button inside card bottom */
.spotlight-action {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  transition: var(--transition-fast);
}

.youtube-card .spotlight-action {
  color: #ff3333;
}
.youtube-card:hover .spotlight-action {
  color: #ff6666;
}

.instagram-card .spotlight-action {
  color: #ff5c75;
}
.instagram-card:hover .spotlight-action {
  color: #ff8599;
}

.spotlight-action svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-card:hover .spotlight-action svg {
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .social-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .spotlight-card {
    padding: 2rem;
  }
  
  .spotlight-stat {
    font-size: 3rem;
  }
  
  .spotlight-title {
    font-size: 1.4rem;
  }
}
