/* ============================================================
   antesala — cabecera fija (bplay argentina)
   Marca-wordmark con ficha de casino · NO logo split heredado.
   ============================================================ */

.antesala {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(6,19,12,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--linde-suave);
}

.antesala__fila {
  max-width: 86rem;
  margin-inline: auto;
  padding: 1rem var(--canal);
  display: flex;
  align-items: center;
  gap: var(--aire-m);
}

/* — marca: ficha (chip) + wordmark "bplay" + sufijo .ar — */
.marca {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.02em;
  color: var(--marfil);
}
.marca__ficha {
  width: 1.65rem; height: 1.65rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--esmeralda-viva), var(--esmeralda-honda));
  border: 2px dashed var(--oro);          /* canto de ficha de casino */
  box-shadow: 0 0 14px -2px rgba(17,180,110,.7);
}
.marca__tld { color: var(--oro); font-weight: 600; }

/* — navegación: anclas internas (envoltura WP: nav > ul > li > a) — */
.timon { margin-left: auto; }
.timon > ul {
  display: flex;
  gap: clamp(1rem, 2vw, 2.2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.timon a {
  font-size: .96rem;
  font-weight: 500;
  color: var(--marfil-medio);
  position: relative;
  padding-block: .2rem;
  transition: color .18s ease;
}
.timon a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--esmeralda);
  transition: width .22s ease;
}
.timon a:hover { color: var(--marfil); }
.timon a:hover::after { width: 100%; }

.antesala__cta { white-space: nowrap; padding: .8em 1.4em; }

/* CTA compacta solo para móvil — vive entre marca y burger */
.antesala__movil { display: none; }

/* — burger (checkbox-hack, sin JS) — */
.fosforo { display: none; }
.brasa {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 2.4rem; height: 2.4rem;
  align-items: center; justify-content: center;
  border: 1px solid var(--linde);
  border-radius: 10px;
  background: transparent;
}
.brasa span {
  width: 1.2rem; height: 2px;
  background: var(--marfil);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.cortina {
  display: none;
  flex-direction: column;
  gap: .4rem;
  padding: var(--aire-s) var(--canal) var(--aire-m);
  border-top: 1px solid var(--linde-suave);
  background: rgba(6,19,12,.96);
}
.cortina ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.cortina a {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--marfil-medio);
  padding: .7rem 0;
  border-bottom: 1px solid var(--linde-suave);
}
.cortina .ficha { margin-top: .8rem; }

@media (max-width: 920px) {
  .timon, .antesala__cta { display: none; }
  .antesala__movil {
    display: inline-flex;
    margin-left: auto;
    padding: .66em 1.2em;
    font-size: .92rem;
  }
  .brasa { display: flex; margin-left: .7rem; }
  .fosforo:checked ~ .cortina { display: flex; }
  .fosforo:checked ~ .antesala__fila .brasa span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .fosforo:checked ~ .antesala__fila .brasa span:nth-child(2) { opacity: 0; }
  .fosforo:checked ~ .antesala__fila .brasa span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
