/* =========================================================
   WordSqueezer Premium — Solo Squeeze Tac Toe
   ========================================================= */

.solo-page{
  padding:20px 0 40px;
}

.solo-page h1{
  font-size:clamp(3rem,7vw,5.7rem);
  line-height:.88;
  letter-spacing:-.065em;
  margin:0 0 20px;
}

.solo-lead{
  max-width:680px;
  margin:0 0 24px;
  color:var(--muted);
  font-size:1.05rem;
}

.solo-start-card{
  max-width:680px;
  margin:24px 0;
  padding:24px;
  border:2px solid var(--ink);
  border-radius:var(--radius,18px);
  background:var(--paper);
}

.solo-start-card h2{
  margin:5px 0 10px;
  font-size:1.55rem;
}

.solo-start-card p{
  max-width:590px;
  color:var(--muted);
}

.solo-stats-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:8px;
  margin:20px 0 30px;
}

.solo-stats-grid article{
  min-width:0;
  padding:14px;
  border:1px solid var(--line);
  border-radius:11px;
  background:var(--paper);
}

.solo-stats-grid small,
.solo-result-grid small,
.solo-live-stats small{
  display:block;
  margin-bottom:4px;
  color:var(--muted);
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.08em;
}

.solo-stats-grid strong{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  font-size:1.18rem;
}

.solo-topbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin:18px 0 10px;
}

.solo-topbar > div:first-child > strong{
  display:block;
  margin-top:3px;
  font-size:1.25rem;
}

.solo-timer{
  flex:0 0 105px;
}

.solo-live-stats{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:16px;
}

.solo-live-stats > span{
  min-width:105px;
  padding:9px 11px;
  border:1px solid var(--line);
  border-radius:9px;
  background:var(--paper);
}

.solo-live-stats strong{
  display:block;
}

.squeeze-cell.solo-owned{
  background:rgba(229,138,43,.09);
}

.solo-result-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
  margin:16px 0;
}

.solo-result-grid > div{
  min-width:0;
  padding:13px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
}

.solo-result-grid strong{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  font-size:1.15rem;
}

.solo-new-board-form{
  margin-top:16px;
}

.arena-solo-card{
  margin:24px 0 30px;
  padding:24px;
  border:2px solid var(--ink);
  border-radius:var(--radius,18px);
  background:var(--paper);
}

.arena-solo-card h2{
  margin:5px 0 8px;
  font-size:1.55rem;
}

.arena-solo-card p{
  max-width:650px;
  color:var(--muted);
}

.arena-solo-meta{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin:14px 0 18px;
}

.arena-solo-meta span{
  padding:6px 9px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-size:.68rem;
  font-weight:900;
}

@media(max-width:820px){
  .solo-stats-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .solo-stats-grid article:last-child{
    grid-column:1 / -1;
  }
}

@media(max-width:720px){
  .solo-start-card,
  .arena-solo-card{
    padding:18px;
  }

  .solo-result-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .solo-topbar{
    align-items:flex-end;
  }
}
@media (min-width: 721px){
  #solo-squeeze-board{
    width:min(100%, 380px);
    margin:0 auto;
  }
}
