/* Start practice (simple layout) */
.practiceHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:16px;
  padding-bottom:12px;
  border-bottom:1px solid #1d2b44;
}
.practiceBrand{display:flex;align-items:center;gap:12px}
.practiceBtns{display:flex;flex-wrap:wrap;gap:10px;align-items:center}

.status{
  color:#a9b6d3;
  font-weight:800;
  border:1px solid #1d2b44;
  background:rgba(255,255,255,.03);
  padding:8px 10px;
  border-radius:12px;
  font-size:13px;
}

.practice{
  display:grid;
  grid-template-columns: 1fr 1.35fr;
  gap:14px;
  align-items:start;
}

.termsCard{
  border:1px solid #1d2b44;
  background:#0f1b2d;
  border-radius:14px;
  padding:14px;
  box-shadow:0 10px 22px rgba(0,0,0,.35);
}
.practiceTitle{
  margin:0 0 8px;
  font-size:22px;
  letter-spacing:-.2px;
}
.practiceLead{
  margin:0 0 12px;
  color:#a9b6d3;
  line-height:1.5;
  font-size:13px;
}

.bank{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:10px;
  border:1px solid #1d2b44;
  border-radius:12px;
  background:rgba(0,0,0,.10);
  min-height: 120px;
}
.term{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid #1d2b44;
  background:rgba(255,255,255,.03);
  color:#eaf1ff;
  font-size:13px;
  font-weight:800;
  cursor:grab;
  user-select:none;
}
.term:active{cursor:grabbing}
.term.selected{outline:2px solid #2f7dd1;outline-offset:2px}
.term.correct{border-color:rgba(42,160,106,.75)}
.term.wrong{border-color:rgba(240,86,86,.75)}

.hint{margin-top:10px;color:#a9b6d3;font-size:12px;line-height:1.4}

.boxes{
  border:1px solid #1d2b44;
  background:#0f1b2d;
  border-radius:14px;
  padding:14px;
  box-shadow:0 10px 22px rgba(0,0,0,.35);
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
.box{
  border:1px solid #1d2b44;
  border-radius:12px;
  background:rgba(0,0,0,.10);
  padding:12px;
  min-height: 130px;
}
.box.drop{outline:2px dashed rgba(47,125,209,.65);outline-offset:2px}
.box h2{
  margin:0 0 8px;
  font-size:14px;
  letter-spacing:-.1px;
}
.slot{display:flex;flex-wrap:wrap;gap:8px}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid #1d2b44;
  background:rgba(255,255,255,.03);
  font-size:12px;
  font-weight:800;
}
.pill button{
  border:0;background:transparent;color:#a9b6d3;cursor:pointer;font-weight:900;line-height:1;padding:0
}
.pill button:hover{color:#eaf1ff}

@media (max-width: 980px){
  .practice{grid-template-columns:1fr}
  .boxes{grid-template-columns:1fr}
  .practiceHeader{flex-direction:column;align-items:flex-start}
}
