.wlPlayCard{
  grid-template-columns:minmax(0, 1.65fr) minmax(250px, .55fr);
}
.wlBoardWrap{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
  overflow:auto;
}
.wlToolbar{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
}
.wlFilterLabel{
  display:flex;
  flex-direction:column;
  gap:6px;
  color:rgba(234,242,255,.78);
  font-size:12px;
  font-weight:800;
}
.wlFilterLabel .input{
  min-height:42px;
  border-radius:14px;
  border-color:rgba(255,255,255,.14);
  background:rgba(15,23,42,.62);
  color:#f8fbff;
}
.wlContentGrid{
  display:grid;
  grid-template-columns:minmax(190px, .78fr) minmax(0, 1.22fr);
  gap:12px;
  min-height:420px;
}
#wlStage .wlToolbar,
#wlStage .wlWordList{
  display:none;
}
#wlStage .wlContentGrid{
  grid-template-columns:1fr;
  min-height:520px;
}
#wlStage .wlBoardWrap{
  padding:18px;
}
#wlStage .wlGame{
  min-height:520px;
}
.wlWordList{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:0;
  overflow:auto;
  padding-right:2px;
}
.wlWordCard{
  width:100%;
  text-align:left;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:13px;
  color:#f8fbff;
  background:
    radial-gradient(180px 90px at 12% 16%, rgb(var(--guide-accent-rgb, 56 189 248) / .14), transparent 70%),
    rgba(255,255,255,.045);
  cursor:pointer;
  transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.wlWordCard:hover,
.wlWordCard.active{
  transform:translateY(-1px);
  border-color:rgb(var(--guide-accent-rgb, 56 189 248) / .48);
  box-shadow:0 12px 28px rgba(0,0,0,.18), 0 0 0 1px rgb(var(--guide-accent-rgb, 56 189 248) / .16);
}
.wlWordCard.locked{
  opacity:.48;
  cursor:not-allowed;
  transform:none;
  filter:saturate(.75);
}
.wlWordCard.locked:hover{
  border-color:rgba(255,255,255,.12);
  box-shadow:none;
}
.wlFilterLabel .input:disabled{
  opacity:.72;
  cursor:not-allowed;
}
.wlWordCardTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}
.wlWord{
  font-size:20px;
  font-weight:900;
}
.wlBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:24px;
  padding:3px 8px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  color:#f8fbff;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.07);
  white-space:nowrap;
}
.wlStatus-strengthening{ background:rgba(250,204,21,.16); border-color:rgba(250,204,21,.32); }
.wlStatus-mastered{ background:rgba(34,197,94,.18); border-color:rgba(34,197,94,.36); }
.wlStatus-discovered{ background:rgba(56,189,248,.15); border-color:rgba(56,189,248,.32); }
.wlMeta{
  margin-top:6px;
  color:rgba(226,232,240,.72);
  font-size:12px;
  line-height:1.35;
}
.wlGame{
  min-width:0;
  min-height:100%;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(280px 160px at 80% 15%, rgb(var(--guide-accent-rgb, 56 189 248) / .14), transparent 68%),
    rgba(7,14,24,.50);
  padding:16px;
  display:flex;
  align-items:stretch;
  justify-content:center;
}
.wlEmpty{
  width:100%;
  min-height:160px;
  display:grid;
  place-items:center;
  text-align:center;
  color:rgba(234,242,255,.72);
  line-height:1.55;
}
.wlGamePanel{
  width:min(680px, 100%);
  min-height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
}
.wlGameKicker{
  color:rgb(var(--guide-accent-rgb, 56 189 248) / .95);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}
.wlInstruction,
.wlQuestion{
  font-size:19px;
  font-weight:850;
  line-height:1.45;
}
.wlSentence{
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.055);
  color:#f8fbff;
  font-size:22px;
  line-height:1.55;
}
.wlBlank{
  display:inline-flex;
  min-width:96px;
  justify-content:center;
  margin:0 4px;
  padding:0 8px 2px;
  border-bottom:2px solid rgb(var(--guide-accent-rgb, 56 189 248) / .82);
  color:#ffffff;
  font-weight:900;
}
.wlOptionGrid,
.wlDoorGrid,
.wlGameButtons{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(150px, 1fr));
  gap:10px;
}
.wlOption,
.wlDoor{
  min-height:58px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    rgba(15,23,42,.62);
  color:#f8fbff;
  font-size:17px;
  font-weight:850;
  line-height:1.25;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.wlDoor{
  min-height:112px;
  padding:14px;
  text-align:left;
}
.wlOption:hover,
.wlDoor:hover{
  transform:translateY(-1px);
  border-color:rgb(var(--guide-accent-rgb, 56 189 248) / .44);
}
.wlOption.correct,
.wlDoor.correct{
  border-color:rgba(34,197,94,.48);
  background:linear-gradient(180deg, rgba(34,197,94,.24), rgba(56,189,248,.13));
  box-shadow:0 0 0 1px rgba(34,197,94,.14), 0 0 22px rgba(34,197,94,.14);
}
.wlOption.softWrong,
.wlDoor.softWrong{
  animation:wlSoftWrong .34s ease;
  opacity:.72;
}
.wlFeedback,
.wlMeaningReveal,
.wlMeaningLocked,
.wlExample{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.11);
  background:rgba(255,255,255,.05);
  padding:12px;
  color:rgba(244,248,255,.88);
  line-height:1.55;
}
.wlFeedback{
  background:rgb(var(--guide-accent-rgb, 56 189 248) / .10);
  border-color:rgb(var(--guide-accent-rgb, 56 189 248) / .22);
  font-weight:800;
}
.wlMeaningReveal{
  background:rgba(34,197,94,.12);
  border-color:rgba(34,197,94,.28);
}
.wlMeaningLocked{
  color:rgba(226,232,240,.72);
  font-size:13px;
}
.wlSideCard{
  min-height:100%;
}
.wlSideTitle{
  font-size:25px;
  font-weight:950;
}
.wlSideMeta{
  margin-top:4px;
  color:rgba(226,232,240,.72);
  font-size:13px;
}
.wlExample{
  margin-top:12px;
  font-size:14px;
}
.wlGameButtons{
  margin-top:12px;
}
.wlProgressTiny{
  margin-top:12px;
  color:rgba(226,232,240,.72);
  font-size:12px;
  line-height:1.5;
}
@keyframes wlSoftWrong{
  0%, 100%{ transform:translateX(0); }
  32%{ transform:translateX(-4px); }
  66%{ transform:translateX(4px); }
}
@media (max-width: 940px){
  .wlToolbar,
  .wlContentGrid{
    grid-template-columns:1fr;
  }
  .wlContentGrid{
    min-height:0;
  }
  .wlWordList{
    max-height:320px;
  }
  .wlDoorGrid,
  .wlOptionGrid,
  .wlGameButtons{
    grid-template-columns:1fr;
  }
  .wlSentence{
    font-size:19px;
  }
}
