@media (max-width:760px){
  .balls{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr)) auto minmax(0,1fr);
    gap:2px;
  }
  .balls .draw-slot{min-width:0}
  .balls .ball{
    width:min(42px,100%);
    height:auto;
    aspect-ratio:1;
    margin:0 auto;
    font-size:clamp(16px,5vw,21px);
  }
  .balls .plus{align-self:start;line-height:42px}
}
@media (max-width:340px){
  .result{padding-left:7px;padding-right:7px}
  .balls .plus{line-height:36px}
  .balls small{font-size:10px}
}
