/* File: projects/css/broadcaster.css */
  body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #e2e8f0;
  background-color: #0d1117;
}

  body::before {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, #0f172a, #020617 70%);
    z-index: -1;
    filter: blur(60px);
  }

 h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(to right, #00f0ff, #ff4f9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 16px #ffffff22;
}

h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

  #currPanel h2 {
    font-size: 1.75rem;
    color: #f472b6;
  }

  #previousCaptain,
#nextCaptain,
#currentCaptain {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #7dd3fc;
  letter-spacing: 0.03em;
}
.text-player-name {
  font-weight: 600;
  color: #f1f5f9;
  font-size: 1rem;
}

.text-player-meta {
  font-size: 0.85rem;
  color: #94a3b8;
}


  #previousPickInfo,
  #currentStatus {
    font-size: 1rem;
    color: #94a3b8;
  }

  #prevTeamList,
  #currTeamList,
  #nextTeamList {
    font-size: 1.05rem;
    font-weight: 500;
  }

  #draftPanels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    text-align: center;
  }

  #prevPanel,
  #currPanel,
  #nextPanel {
    position: relative;
    min-height: 300px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(14px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    opacity: 1;
    animation: fadeIn 0.8s ease-out forwards;
    transition: all 0.3s ease;
    padding: 1.5rem;
  }

  .current-pick-box {
    animation: pulse 1.8s infinite ease-in-out;
    border: 2px solid #f472b6;
    border-radius: 1rem;
  }

  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(244, 114, 182, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(244, 114, 182, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 114, 182, 0); }
  }

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

#autoPickTimer {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #facc15;
  letter-spacing: 0.025em;
  text-shadow: 0 0 8px #facc1522;
}

  #countdownPanel {
    text-align: center;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(14px);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 1rem;
    margin-top: 2rem;
  }

  .text-sg-pink {
    color: #f472b6;
  }

  .text-green-400 {
    color: #4ade80;
  }

  .text-red-800 {
    color: #991b1b;
  }

  .text-blue-400 {
    color: #60a5fa;
  }

  .text-gray-400 {
    color: #9ca3af;
  }

  .text-gray-300 {
    color: #d1d5db;
  }

  .text-red-600 {
    color: #dc2626;
  }

  .text-xs {
    font-size: 0.75rem;
  }

  .text-sm {
    font-size: 0.875rem;
  }

  .text-base {
    font-size: 1rem;
  }

  .text-lg {
    font-size: 1.125rem;
  }

  .text-xl {
    font-size: 1.25rem;
  }

  .text-2xl {
    font-size: 1.5rem;
  }

  .font-semibold {
    font-weight: 600;
  }

  .font-bold {
    font-weight: 700;
  }

  .font-extrabold {
    font-weight: 800;
  }

  .animate-pulse {
    animation: pulse 1.8s infinite ease-in-out;
  }

  .animate__pulse {
    animation: pulse 1.8s infinite;
  }

  .animate__infinite {
    animation-iteration-count: infinite;
  }

  .rounded-xl {
    border-radius: 1rem;
  }

  .shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }

  .shadow-lg {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
  }

  .transition-opacity {
    transition: opacity 0.3s ease;
  }

  .transition-all {
    transition: all 0.3s ease;
  }

#prevPanel,
#currPanel,
#nextPanel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.requirements-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #334155;
  font-size: 0.875rem;
  color: #cbd5e1;
  font-family: 'Inter', sans-serif;
}

.requirements-footer .text-xs {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0.015em;
}