:root {
  --bg-dark: #0a0a0f;
  --bg-card: rgba(20, 20, 30, 0.8);
  --cyan: #00f0ff;
  --magenta: #ff00ff;
  --purple: #8b5cf6;
  --pink: #ff4757;
  --gold: #ffd93d;
  --grok-blue: #1d9bf0;
  --fire-orange: #ff6b35;
  --vercel-gradient: linear-gradient(135deg, #000, #8b5cf6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: var(--bg-dark);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 30%, rgba(29, 155, 240, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 30% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.app-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
.header {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.main-title {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--magenta), var(--purple), var(--fire-orange), var(--grok-blue));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite, glow-pulse 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes glow-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.tagline {
  margin-top: 0.75rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.animated-banner {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(29, 155, 240, 0.2), rgba(255, 107, 53, 0.2));
  border: 1px solid var(--grok-blue);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  animation: banner-pulse 2s ease-in-out infinite;
}

@keyframes banner-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(29, 155, 240, 0.3); }
  50% { box-shadow: 0 0 40px rgba(29, 155, 240, 0.6); }
}

.banner-rocket {
  display: inline-block;
  animation: rocket-bounce 1s ease-in-out infinite;
}

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

/* Grok Battle Call */
.grok-battle-call {
  position: relative;
  background: linear-gradient(135deg, rgba(29, 155, 240, 0.15), rgba(255, 107, 53, 0.1), rgba(139, 92, 246, 0.1));
  border: 2px solid var(--grok-blue);
  border-radius: 20px;
  padding: 1.5rem;
  margin: 1.5rem 0 2rem;
  overflow: hidden;
}

.grok-battle-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(29, 155, 240, 0.3) 0%, transparent 50%);
  animation: spotlight-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

.rocket-trail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  animation: rocket-trail 3s linear infinite;
  pointer-events: none;
}

@keyframes rocket-trail {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes spotlight-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.grok-battle-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.grok-banner {
  display: inline-block;
  background: linear-gradient(135deg, var(--fire-orange), var(--grok-blue));
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  animation: banner-glow 2s ease-in-out infinite;
}

@keyframes banner-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
  50% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.8), 0 0 60px rgba(29, 155, 240, 0.4); }
}

.rocket-icon {
  display: inline-block;
  animation: rocket-float 2s ease-in-out infinite;
}

@keyframes rocket-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-2px) rotate(5deg); }
  75% { transform: translateY(2px) rotate(-5deg); }
}

.grok-main-quote {
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 0.5rem;
}

.grok-attribution {
  color: var(--grok-blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.hot-take-box {
  margin: 1.5rem auto;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 71, 87, 0.2));
  border: 2px solid var(--fire-orange);
  border-radius: 15px;
  max-width: 500px;
  animation: fire-glow 2s ease-in-out infinite;
}

@keyframes fire-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 107, 53, 0.4); }
  50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.7); }
}

.hot-take-label {
  display: block;
  font-weight: 800;
  color: var(--fire-orange);
  margin-bottom: 0.5rem;
}

.hot-take-prediction {
  font-style: italic;
  color: #fff;
}

.grok-tagline {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.grok-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.grok-share-btn {
  padding: 0.6rem 1.2rem;
  background: var(--grok-blue);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.grok-share-btn.hot-take-share {
  background: linear-gradient(135deg, var(--fire-orange), var(--pink));
}

.grok-share-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(29, 155, 240, 0.6);
}

.thread-toggle {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.thread-toggle:hover {
  border-color: var(--grok-blue);
  color: var(--grok-blue);
}

.battle-thread {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  text-align: left;
}

.thread-item {
  padding: 0.75rem;
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 0.5rem;
}

.thread-item.grok-thread {
  border-left-color: var(--grok-blue);
  background: rgba(29, 155, 240, 0.1);
  border-radius: 0 8px 8px 0;
}

.thread-author {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--cyan);
}

.thread-item.grok-thread .thread-author {
  color: var(--grok-blue);
}

.thread-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.3rem;
}

/* Featured Matchups */
.featured-matchups {
  margin-bottom: 2rem;
}

.featured-title {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--fire-orange);
}

.matchup-cards {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.matchup-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid rgba(255, 107, 53, 0.5);
  border-radius: 15px;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
  animation: card-glow-cycle 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes card-glow-cycle {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 107, 53, 0.3); }
  50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.6); }
}

.matchup-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--fire-orange);
}

.grok-requested-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--fire-orange), var(--grok-blue));
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.65rem;
  font-weight: 800;
  animation: badge-pulse 1.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}

.matchup-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.matchup-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.3rem;
}

/* Crowdsource Tracker */
.crowdsource-tracker {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.tracker-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.3rem;
}

.tracker-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-bottom: 1rem;
}

.tracker-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-card.leader {
  border: 1px solid var(--gold);
}

.stat-card.grok-prediction {
  border: 1px solid var(--fire-orange);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  color: var(--cyan);
}

.stat-icon {
  font-size: 1.5rem;
}

.stat-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.tracker-cta {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--grok-blue);
  font-weight: 600;
}

/* Arena */
.arena-section {
  margin-bottom: 2rem;
}

.arena-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;
}

/* Startup Cards */
.startup-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  min-height: 380px;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.startup-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--accent-color);
}

.startup-card.winner {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(255, 217, 61, 0.4);
}

.startup-card.special {
  border-color: var(--pink);
}

.startup-card.grok-pick {
  border-color: var(--grok-blue);
}

.startup-card.vercel-style {
  background: var(--vercel-gradient);
  border-color: #8b5cf6;
}

.startup-card.hot-pick-card {
  border-color: var(--fire-orange);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.grok-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(29, 155, 240, 0.2), transparent);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.strawberry-particles, .fire-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.strawberry-particle, .fire-particle {
  position: absolute;
  font-size: 1rem;
  animation: float-particle 3s ease-in-out infinite;
}

@keyframes float-particle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(10deg); }
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-badges-top {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-end;
}

.startup-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), transparent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  border: 2px solid var(--accent-color);
}

.verified-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
  white-space: nowrap;
}

.grok-mentioned-badge {
  background: linear-gradient(135deg, var(--grok-blue), #0a7bcf);
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(29, 155, 240, 0.5);
  white-space: nowrap;
}

.hot-pick-badge {
  background: linear-gradient(135deg, var(--fire-orange), var(--pink));
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  white-space: nowrap;
  animation: fire-pulse 1.5s ease-in-out infinite;
}

@keyframes fire-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 107, 53, 0.5); }
  50% { box-shadow: 0 0 25px rgba(255, 107, 53, 0.8); }
}

.grok-requested-badge-small {
  background: linear-gradient(135deg, var(--fire-orange), var(--grok-blue));
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.startup-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}

.startup-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.badge {
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.badge-default {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.badge-verified {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  color: #10b981;
}

.badge-grok {
  background: rgba(29, 155, 240, 0.2);
  border: 1px solid var(--grok-blue);
  color: var(--grok-blue);
}

.badge-grok-pick {
  background: linear-gradient(135deg, rgba(29, 155, 240, 0.3), rgba(139, 92, 246, 0.3));
  border: 1px solid var(--grok-blue);
  color: #fff;
}

.badge-grok-requested {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(29, 155, 240, 0.3));
  border: 1px solid var(--fire-orange);
  color: #fff;
}

.badge-hot-pick {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 71, 87, 0.3));
  border: 1px solid var(--fire-orange);
  color: var(--fire-orange);
}

.vote-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.vote-button {
  width: 100%;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--purple));
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.vote-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--accent-color);
}

.vote-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.grok-prediction-note {
  margin-top: 0.75rem;
  padding: 0.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(29, 155, 240, 0.2));
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--fire-orange);
  font-style: italic;
}

/* VS Badge */
.vs-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.vs-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
  animation: vs-pulse 2s ease-in-out infinite;
}

@keyframes vs-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.vs-lightning {
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.vs-lightning.right {
  background: linear-gradient(90deg, var(--magenta), transparent);
}

/* Matchup Buttons */
.matchup-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.random-button, .grok-pick-button, .grok-challenge-button {
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.random-button {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
}

.grok-pick-button {
  background: linear-gradient(135deg, var(--grok-blue), var(--purple));
}

.grok-challenge-button {
  background: linear-gradient(135deg, var(--fire-orange), var(--pink));
  position: relative;
  overflow: hidden;
}

.grok-challenge-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: rocket-trail-btn 2s linear infinite;
}

@keyframes rocket-trail-btn {
  0% { left: -100%; }
  100% { left: 100%; }
}

.random-button:hover, .grok-pick-button:hover, .grok-challenge-button:hover {
  transform: scale(1.05);
}

.random-button:hover {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
}

.grok-pick-button:hover {
  box-shadow: 0 0 30px rgba(29, 155, 240, 0.6);
}

.grok-challenge-button:hover {
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
}

/* Roster */
.roster-section {
  margin-bottom: 2rem;
  padding: 1rem;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-color: var(--cyan);
  color: #fff;
}

.filter-btn.grok-filter.active {
  background: linear-gradient(135deg, var(--grok-blue), var(--purple));
  border-color: var(--grok-blue);
}

.filter-btn.requested-filter.active {
  background: linear-gradient(135deg, var(--fire-orange), var(--pink));
  border-color: var(--fire-orange);
}

.roster-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1rem 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) transparent;
}

.roster-scroll::-webkit-scrollbar {
  height: 6px;
}

.roster-scroll::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 3px;
}

.mini-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--bg-card);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mini-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.mini-card.selected {
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.mini-card.special {
  border-color: var(--pink);
}

.mini-card.grok-pick-mini {
  border-color: var(--grok-blue);
  background: linear-gradient(135deg, rgba(29, 155, 240, 0.1), var(--bg-card));
}

.mini-card.hot-pick-mini {
  border-color: var(--fire-orange);
  animation: mini-fire-glow 2s ease-in-out infinite;
}

@keyframes mini-fire-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 53, 0.3); }
  50% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
}

.mini-card.grok-requested-mini {
  border-color: var(--fire-orange);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), var(--bg-card));
}

.mini-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent-color), transparent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.mini-name {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.mini-verified {
  color: #10b981;
  font-size: 0.75rem;
}

.mini-grok {
  color: var(--grok-blue);
  font-size: 0.75rem;
}

.mini-rocket {
  color: var(--fire-orange);
  font-size: 0.75rem;
}

.mini-fire {
  color: var(--fire-orange);
  font-size: 0.75rem;
}

.roster-hint {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
}

/* Hot Takes */
.hot-take-section {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.hot-take-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gold);
}

.hot-take-content {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.hot-take-content.animating {
  opacity: 0.3;
}

.hot-take-text {
  font-size: 1rem;
  font-style: italic;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.hot-take-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.generate-button, .share-button {
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Bricolage Grotesque', sans-serif;
  border: none;
}

.generate-button {
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  color: #000;
}

.share-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.generate-button:hover, .share-button:hover {
  transform: scale(1.05);
}

/* Timeline */
.timeline-section {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.3rem;
}

.timeline-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.timeline-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  position: relative;
}

.timeline-item.current {
  transform: scale(1.05);
}

.timeline-item.future {
  opacity: 0.5;
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-weight: 800;
  font-size: 0.75rem;
}

.timeline-item.current .timeline-marker {
  background: linear-gradient(135deg, var(--fire-orange), var(--grok-blue));
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.timeline-item.future .timeline-marker {
  background: rgba(255, 255, 255, 0.2);
}

.timeline-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.timeline-content p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.timeline-connector {
  position: absolute;
  top: 25px;
  left: 75%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), transparent);
}

/* App Store Teaser */
.app-store-teaser {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 240, 255, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.teaser-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.3rem;
}

.teaser-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.integration-cards {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.integration-card {
  background: rgba(0, 0, 0, 0.3);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 100px;
}

.integration-card:hover, .integration-card.selected {
  border-color: var(--purple);
  border-style: solid;
  background: rgba(139, 92, 246, 0.1);
}

.integration-icon {
  font-size: 1.5rem;
}

.integration-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.coming-soon {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vote-cta {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--cyan);
}

/* Leaderboard */
.leaderboard {
  background: var(--bg-card);
  border-radius: 20px;
  margin-bottom: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.leaderboard-toggle {
  width: 100%;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.toggle-arrow {
  transition: transform 0.3s ease;
}

.leaderboard-content {
  padding: 0 1rem 1rem;
  animation: slideDown 0.3s ease;
}

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

.grok-prediction-banner {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(29, 155, 240, 0.2));
  border: 1px solid var(--fire-orange);
  border-radius: 10px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.leaderboard-table th {
  text-align: left;
  padding: 0.75rem 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leaderboard-table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.verified-row {
  background: rgba(16, 185, 129, 0.1);
}

.special-row {
  background: rgba(255, 71, 87, 0.1);
}

.grok-row {
  background: rgba(29, 155, 240, 0.08);
}

.hot-pick-row {
  background: rgba(255, 107, 53, 0.1);
}

.rank-cell {
  font-size: 1.1rem;
}

.name-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.row-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.grok-star {
  color: var(--grok-blue);
  font-size: 0.8rem;
}

.fire-indicator {
  color: var(--fire-orange);
  font-size: 0.8rem;
  animation: fire-flicker 0.5s ease-in-out infinite alternate;
}

@keyframes fire-flicker {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

.votes-cell {
  font-family: 'JetBrains Mono', monospace;
  color: var(--cyan);
}

.status-cell {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
  color: var(--pink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  text-shadow: 0 0 20px var(--pink);
}

.footer-prediction {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--fire-orange);
  font-weight: 600;
}

.footer-version {
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: var(--grok-blue);
}

.footer-crowdsource {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--cyan);
  font-style: italic;
}

/* Confetti */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti-particle {
  position: absolute;
  border-radius: 50%;
  animation: confetti-fall 2s ease-out forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-10px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .arena-container {
    flex-direction: column;
  }
  
  .vs-container {
    transform: rotate(90deg);
    padding: 0.5rem;
  }
  
  .startup-card {
    max-width: 100%;
  }
  
  .leaderboard-table {
    font-size: 0.8rem;
  }
  
  .leaderboard-table th,
  .leaderboard-table td {
    padding: 0.5rem 0.25rem;
  }
  
  .grok-battle-call {
    padding: 1rem;
  }
  
  .grok-main-quote {
    font-size: 0.9rem;
  }
  
  .matchup-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .random-button, .grok-pick-button, .grok-challenge-button {
    width: 100%;
    max-width: 280px;
  }

  .matchup-cards {
    flex-direction: column;
    align-items: center;
  }

  .matchup-card {
    width: 100%;
    max-width: 280px;
  }

  .timeline-container {
    flex-direction: column;
    align-items: center;
  }

  .timeline-connector {
    display: none;
  }

  .tracker-stats {
    flex-direction: column;
  }

  .stat-card {
    width: 100%;
    max-width: 200px;
  }
}