/* css/judges.css - Style dla judges overlay */

#judges-wrap {
  position: fixed;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 50vw; /* viewport width - taka sama jak warmup */
  z-index: 9999;
  pointer-events: none;
  
  /* Animacja */
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#judges-wrap.show {
  opacity: 1;
}

/* Obrazek tła */
#judges-wrap .overlay {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.45));
}

/* SVG z tekstami */
#judges-wrap .comp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Teksty SVG */
#judges-wrap .t {
  font-family: 'Montserrat', sans-serif;
}