.lv-result-wrap{
  box-sizing:border-box;
  padding:15px 12px;
  max-width:900px;
  margin:20px auto;
  display:flex;
  justify-content:center;
  font-family:"Segoe UI",sans-serif;
}

.lv-result-table{
  width:100%;
  border-collapse:collapse;
  background:#1a120d;
  color:#f5efe6;
  box-shadow:0 12px 35px rgba(0,0,0,.45);
  table-layout:auto;
}
.lv-result-table th{
  background:linear-gradient(135deg,#2a0d08,#5a1a10);
  color:#ffe7c2;
  padding:12px 10px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  border-bottom:2px solid #d4a24c;
  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(212,162,76,.25);
  text-align:center;
  color:#f5efe6;
}
.lv-result-table th:not(:last-child),
.lv-result-table td:not(:last-child){
  border-right:1px solid rgba(212,162,76,.25);
}
.lv-result-table tr{
  background:#22160f;
  transition:all 0.25s ease;
}
.lv-result-table tr:nth-child(even){
  background:#1a120d;
}
.lv-result-table tr:hover{
  background:#2d1c13;
  box-shadow:inset 0 0 12px rgba(255,215,140,0.08);
}
.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-balls::-webkit-scrollbar{
  display:none;
}
.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:16px;
  font-weight:800;
  color:#fff;
  text-shadow:
    0 1px 2px rgba(0,0,0,.95),
    0 0 3px rgba(0,0,0,.65);

  background:
    radial-gradient(circle at 32% 30%,
      #f5cf82 0%,
      #c88933 32%,
      #7b4b1d 68%,
      #24130b 100%
    );

  box-shadow:
    inset -6px -8px 12px rgba(0,0,0,.38),
    inset 2px 2px 4px rgba(255,255,255,.05),
    0 3px 8px rgba(0,0,0,.35);
  animation:ballPop .5s ease;
}
.lv-result-ball::before{
  content:"";
  position:absolute;
  top:6px;
  left:9px;
  width:10px;
  height:5px;
  border-radius:50%;
  background:rgba(255,255,255,.16);
  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% 25%,
      rgba(255,255,255,.10) 0%,
      rgba(255,255,255,.03) 16%,
      transparent 38%
    );

  pointer-events:none;
}
.lv-result-ball:hover{
  transform:translateY(-3px) scale(1.05);
  transition:.25s;
}
@keyframes ballPop{
  0%{
    transform:scale(.3) rotate(180deg);
    opacity:0;
  }
  100%{
    transform:scale(1) rotate(0);
    opacity:1;
  }
}

.lv-refresh-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  margin:10px 0;
}
.lv-refresh-btn{
  padding:7px 14px;
  font-size:13px;
  font-weight:700;
  color:#fff3dd;
  background:linear-gradient(135deg,#5a1a10,#2a0d08);
  border:1px solid rgba(212,162,76,.4);
  border-radius:5px;
  cursor:pointer;
  box-shadow:0 4px 10px rgba(0,0,0,.25);
  transition:all .25s ease;
}
.lv-refresh-btn:hover{
  background:linear-gradient(135deg,#7a2315,#3a120b);
  box-shadow:0 6px 14px rgba(212,162,76,.15);
}
.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;
  }
}