.lv-result-wrap{
  box-sizing:border-box;
  padding:15px 12px;
  max-width:900px;
  margin:20px auto;
  display:flex;
  justify-content:center;

  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.lv-result-table{
  width:100%;
  border-collapse:collapse;
  background:#0b0f14;
  color:#e7e9ee;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  table-layout:auto;
}
.lv-result-table th{
  background:
    linear-gradient(
      to bottom,
      #6f0000 0%,
      #4a0000 55%,
      #2a0000 100%
    );

  color:#ffd27a;
  padding:12px 10px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.2px;
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 -1px 0 rgba(0,0,0,.4);
}
.lv-result-table td{
  padding:12px 10px;
  border-bottom:1px solid rgba(255,255,255,.06);
  text-align:center;
  color:#e7e9ee;
}
.lv-result-table th:not(:last-child),
.lv-result-table td:not(:last-child){
  border-right:1px solid rgba(255,255,255,.06);
}
.lv-result-table tr{
  background:#0b0f14;
  transition:all .2s ease;
}
.lv-result-table tr:nth-child(even){
  background:#0f141b;
}
.lv-result-table tr:hover{
  background:#161c25;
}
.lv-result-table td:last-child{
  width:55%;
}
.lv-result-balls{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:4px;
  flex-wrap:nowrap;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  padding:6px 4px;
}
.lv-result-ball{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  position:relative;
  overflow:hidden;
  font-size:15px;
  font-weight:800;
  color:#ffffff;
  text-shadow:
    0 1px 2px rgba(0,0,0,.95),
    0 0 3px rgba(0,0,0,.55);
  background:
    radial-gradient(circle at 30% 28%,
      #5a606d 0%,
      #2f3640 32%,
      #171c24 65%,
      #07090d 100%
    );

  box-shadow:
    inset -7px -9px 12px rgba(0,0,0,.45),
    inset 2px 2px 3px rgba(255,255,255,.04),
    0 4px 10px rgba(0,0,0,.35);

  animation:ballPop .5s ease;
}

.lv-result-ball::before{
  content:"";
  position:absolute;
  top:6px;
  left:8px;
  width:10px;
  height:5px;
  border-radius:50%;
  background:rgba(255,255,255,.14);
  transform:rotate(-18deg);
  filter:blur(.5px);
  pointer-events:none;
}
.lv-result-ball::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:
    radial-gradient(circle at 35% 24%,
      rgba(255,255,255,.08) 0%,
      rgba(255,255,255,.02) 18%,
      transparent 38%
    );

  pointer-events:none;
}

.lv-result-ball:hover{
  transform:translateY(-2px) scale(1.03);

  box-shadow:
    inset -7px -9px 12px rgba(0,0,0,.45),
    inset 2px 2px 3px rgba(255,255,255,.05),
    0 7px 16px rgba(0,0,0,.42);

  transition:all .22s ease;
}
@keyframes ballPop{
  0%{
    transform:scale(.4);
    opacity:0;
  }
  100%{
    transform:scale(1);
    opacity:1;
  }
}
.lv-refresh-wrap{
  text-align:center;
  margin:5px 0;
}
.lv-refresh-btn{
  padding:6px 12px;
  font-size:13px;
  font-weight:600;
  color:#fff;
  background:#600000;
  border:1px solid #7d0000;
  border-radius:4px;
  cursor:pointer;
}
.lv-refresh-btn:hover{
  background:#7a0000;
}
.lv-refresh-btn:active{
  transform:scale(0.98);
}

.lv-date-mobile{
  display:none;
}
@media(max-width:768px){

 .lv-date-head,
  .lv-date-cell{
    display:none;
  }

  .lv-date-mobile{
    display:block;
    margin-top:6px;
    font-size:11px;
    opacity:.8;
  }
  .lv-result-table td{
    padding:6px 4px;
    font-size:12px;
  }
  .lv-result-table td:last-child{
    width:auto;
  }
  .lv-result-ball{
    width:30px;
    height:30px;
    min-width:30px;
    min-height:30px;
    font-size:14px;
  }
  .lv-result-ball::before{
    width:10px;
    height:5px;

    top:5px;
    left:6px;
  }
}