/* === Podium page - OBS Overlay === */
.podium-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.12) 0%, #0a0a12 70%);
  overflow: hidden;
}

.podium-container {
  width: 100%;
  max-width: 900px;
  padding: 2rem;
  text-align: center;
}

.podium-header {
  margin-bottom: 3rem;
}

.podium-logo {
  height: 80px;
  filter: drop-shadow(0 0 40px rgba(124, 58, 237, 0.6));
  animation: float 6s ease-in-out infinite;
  margin-bottom: 1rem;
}

.podium-title {
  font-size: clamp(1.2rem, 4vw, 2rem);
  background: linear-gradient(135deg, #7c3aed, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Stage layout === */
.podium-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2rem;
}

.podium-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 220px;
}

.podium-avatar {
  margin-bottom: 0.75rem;
}

.podium-medal-big {
  font-size: 3.5rem;
  display: block;
  animation: pulse-medal 2s ease-in-out infinite;
}

.slot-1 .podium-medal-big { animation-delay: 0s; }
.slot-2 .podium-medal-big { animation-delay: 0.3s; }
.slot-3 .podium-medal-big { animation-delay: 0.6s; }

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

.podium-name {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  word-break: break-word;
  max-width: 180px;
}

.winner-name {
  font-size: 1.3rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.podium-pts {
  font-size: 0.85rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

/* === Pillars === */
.podium-pillar {
  width: 100%;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1rem;
  position: relative;
  overflow: hidden;
}

.podium-pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
}

.pillar-1 {
  height: 180px;
  background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.pillar-2 {
  height: 130px;
  background: linear-gradient(180deg, #c0c0c0 0%, #808080 100%);
  box-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
}

.pillar-3 {
  height: 90px;
  background: linear-gradient(180deg, #cd7f32 0%, #8b4513 100%);
  box-shadow: 0 0 30px rgba(205, 127, 50, 0.2);
}

.pillar-label {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.3);
}

/* === Responsive === */
@media (max-width: 576px) {
  .podium-stage { gap: 0.75rem; }
  .podium-medal-big { font-size: 2.5rem; }
  .podium-name { font-size: 0.85rem; }
  .winner-name { font-size: 1rem; }
  .pillar-1 { height: 140px; }
  .pillar-2 { height: 100px; }
  .pillar-3 { height: 70px; }
  .podium-container { padding: 1rem; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
