/* Fase 20B.19 · Preparando partida unificada */
#crowGamesOverlay .games-prep-layer{
  position:absolute;
  z-index:18;
  inset:69px 0 0;
  display:none;
  place-items:center;
  padding:24px 18px calc(24px + var(--safeB));
  background:
    radial-gradient(circle at 50% 15%,rgba(140,41,71,.11),transparent 34%),
    linear-gradient(180deg,rgba(13,13,17,.985),rgba(10,10,13,.995));
  backdrop-filter:blur(12px);
}
#crowGamesOverlay .games-prep-layer.active{display:grid}
#crowGamesOverlay .crow-games-sheet{position:relative}
#crowGamesOverlay .games-prep-card{
  width:min(100%,420px);
  text-align:center;
  padding:30px 24px 27px;
  border:1px solid #38323a;
  border-radius:22px;
  background:
    radial-gradient(circle at 50% 0,rgba(184,134,98,.12),transparent 43%),
    linear-gradient(180deg,#171419,#111116 74%);
  box-shadow:0 24px 60px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.025);
}
#crowGamesOverlay .games-prep-hourglass-wrap{
  position:relative;
  width:92px;
  height:92px;
  margin:0 auto 14px;
  display:grid;
  place-items:center;
}
#crowGamesOverlay .games-prep-hourglass-wrap:before{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(184,134,98,.12),rgba(140,41,71,.035) 52%,transparent 72%);
  box-shadow:0 0 30px rgba(184,134,98,.07);
}
#crowGamesOverlay .games-prep-hourglass{
  position:relative;
  z-index:1;
  display:grid;
  place-items:center;
  width:68px;
  height:68px;
  border:1px solid #4a3e45;
  border-radius:50%;
  background:rgba(16,15,19,.86);
  color:#d1a27e;
  font-size:37px;
  line-height:1;
  transform-origin:50% 58%;
  animation:gamesPrepSwing 1.05s ease-in-out infinite alternate;
}
#crowGamesOverlay .games-prep-kicker{
  color:#b88662;
  text-transform:uppercase;
  letter-spacing:.17em;
  font-size:9px;
  font-weight:750;
}
#crowGamesOverlay .games-prep-title{
  margin:9px 0 7px;
  font:30px/1.05 Georgia,"Times New Roman",serif;
  letter-spacing:-.025em;
  color:#eee7df;
}
#crowGamesOverlay .games-prep-copy{
  max-width:34ch;
  margin:0 auto;
  color:#9b928b;
  font-size:11.5px;
  line-height:1.52;
}
#crowGamesOverlay .games-prep-dots{
  display:flex;
  justify-content:center;
  gap:5px;
  margin-top:17px;
}
#crowGamesOverlay .games-prep-dots i{
  width:5px;
  height:5px;
  border-radius:50%;
  background:#755d50;
  animation:gamesPrepDot 1.05s ease-in-out infinite;
}
#crowGamesOverlay .games-prep-dots i:nth-child(2){animation-delay:.15s}
#crowGamesOverlay .games-prep-dots i:nth-child(3){animation-delay:.30s}

/* Respaldo visual: si la consulta de preguntas tarda más que la capa superior,
   el núcleo conserva exactamente el mismo lenguaje visual, nunca vuelve al ♜. */
#crowGamesOverlay .games-prep-inline{
  display:grid;
  place-items:center;
  min-height:360px;
  padding:24px 8px;
}
#crowGamesOverlay .games-prep-inline .games-prep-card{width:min(100%,420px)}

@keyframes gamesPrepSwing{
  0%{transform:rotate(-13deg) translateX(-3px)}
  100%{transform:rotate(13deg) translateX(3px)}
}
@keyframes gamesPrepDot{
  0%,65%,100%{opacity:.28;transform:translateY(0)}
  32%{opacity:1;transform:translateY(-3px)}
}

/* En escritorio el contenido oculto ya no puede colapsar el modal mientras
   la capa absoluta de preparación está activa. */
@media(min-width:621px){
  #crowGamesOverlay.games-is-preparing .crow-games-sheet{
    min-height:min(520px,calc(100vh - 72px));
    max-height:calc(100vh - 48px);
    overflow:hidden;
  }
}

@media(max-width:620px){
  #crowGamesOverlay .games-prep-layer{
    position:fixed;
    inset:max(68px,var(--safeT)) 0 0;
    padding:20px 16px calc(28px + var(--safeB));
  }
  #crowGamesOverlay .games-prep-card{
    width:min(100%,390px);
    padding:27px 20px 25px;
    border-radius:21px;
  }
  #crowGamesOverlay .games-prep-hourglass-wrap{width:86px;height:86px;margin-bottom:12px}
  #crowGamesOverlay .games-prep-hourglass{width:64px;height:64px;font-size:35px}
  #crowGamesOverlay .games-prep-title{font-size:28px}
  #crowGamesOverlay .games-prep-copy{font-size:11.5px}
  #crowGamesOverlay .games-prep-inline{min-height:62dvh;padding:20px 0}
  #crowGamesOverlay .games-prep-inline .games-prep-card{width:min(100%,390px)}
}
@media(prefers-reduced-motion:reduce){
  #crowGamesOverlay .games-prep-hourglass,
  #crowGamesOverlay .games-prep-dots i{animation:none}
}
html[data-theme="light"] #crowGamesOverlay .games-prep-layer{
  background:radial-gradient(circle at 50% 15%,rgba(140,41,71,.055),transparent 34%),rgba(248,243,237,.985);
}
html[data-theme="light"] #crowGamesOverlay .games-prep-card{
  background:radial-gradient(circle at 50% 0,rgba(184,134,98,.11),transparent 43%),linear-gradient(180deg,#fffdf9,#f7f2eb 74%);
  border-color:#d9cec3;
  box-shadow:0 24px 60px rgba(71,56,45,.12);
}
html[data-theme="light"] #crowGamesOverlay .games-prep-hourglass{background:#fffaf5;border-color:#d6c8bc;color:#9f704f}
html[data-theme="light"] #crowGamesOverlay .games-prep-title{color:#302822}
html[data-theme="light"] #crowGamesOverlay .games-prep-copy{color:#756b63}
