/* === Projector Display === */
body[data-page="display"] {
  overflow: hidden;
}

.display-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  height: 100vh;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

.sidebar {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.sidebar h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.display-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2vh 2vw;
  text-align: center;
}

.display-header {
  margin-bottom: 3vh;
}

.display-team {
  font-size: clamp(2rem, 4vh, 3rem);
  color: var(--color-gray-600);
}

.display-speaker {
  font-size: clamp(3rem, 6vh, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-gray-900);
}

.display-prompt {
  font-size: clamp(2.5rem, 5vh, 4rem);
  max-width: 90%;
  margin-bottom: 3vh;
  font-weight: 500;
  min-height: 15vh;
}

.display-timer {
  font-size: clamp(8rem, 22vh, 15rem);
  line-height: 1;
}

.display-phase {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-600);
  margin-top: 2rem;
}

.reconnect-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  font-size: 3rem;
}

/* === Podium === */
.podium-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background: var(--bg-gradient);
}
.podium-title {
  font-size: 5rem;
  margin-bottom: 2rem;
  color: var(--color-gray-900);
}
.podium-stands {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  height: 50vh;
}
.podium-stand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 15vw;
  background: var(--color-gray-800);
  color: white;
  border-radius: 8px 8px 0 0;
  padding-top: 1rem;
  transition: height 1s ease-out;
}
.podium-stand-1 { background: linear-gradient(to top, #cda715, #f5d44f); height: 80%; }
.podium-stand-2 { background: linear-gradient(to top, #9e9e9e, #cccccc); height: 60%; }
.podium-stand-3 { background: linear-gradient(to top, #b07c50, #d9a071); height: 40%; }
.podium-stand .team-name { font-size: 2rem; font-weight: bold; margin-bottom: 0.5rem; text-align: center; }
.podium-stand .team-score { font-size: 1.5rem; font-weight: normal; margin-bottom: 1rem; }

/* === MVP === */
.mvp-container {
  margin-top: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1.5rem 3rem;
}
.mvp-title {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  color: var(--color-gray-900);
}
.mvp-name {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-gray-900);
}
.mvp-detail {
  font-size: 1.5rem;
  color: var(--color-gray-600);
  margin-top: 0.25rem;
}