/* Unified ticket check result display (ilotto upgrade) */
.ilotto-result-summary {
  width: 100%;
  text-align: left;
  margin: 12px 0;
}
.ilotto-result-summary__title {
  color: #ffd700;
  margin: 0 0 10px;
  text-align: center;
  font-size: 1.2em;
}
.ilotto-result-row {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.ilotto-result-row--win {
  border-left: 4px solid #39ff14;
}
.ilotto-result-row--none {
  border-left: 4px solid #666;
}
.ilotto-result-row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 700;
  color: #ffd700;
}
.ilotto-result-row-amount {
  font-size: 1.05em;
  color: #00ff88;
}
.ilotto-result-side-games {
  margin-top: 8px;
  font-size: 0.9em;
  color: #c8d4e3;
}
.ilotto-result-total {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 1.15em;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.ilotto-result-total__amount {
  font-size: 1.35em;
  margin-top: 6px;
}
.ilotto-result-total--win {
  background: rgba(255, 215, 0, 0.2);
  border: 2px solid #ffd700;
  color: #ffd700;
}
.ilotto-result-total--none {
  background: rgba(128, 128, 128, 0.2);
  border: 2px solid #808080;
  color: #808080;
}
.ilotto-result-legal {
  margin-top: 16px;
  padding: 14px;
  background: rgba(255, 193, 7, 0.1);
  border: 2px solid #ffc107;
  border-radius: 12px;
}
.ilotto-result-legal h4 {
  color: #ffc107;
  margin: 0 0 8px;
  font-size: 1em;
}
.ilotto-result-legal p {
  color: #ffc107;
  margin: 0;
  font-size: 0.9em;
  line-height: 1.45;
}
.ilotto-ball-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 6px 0 10px;
}
.ilotto-ball--circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1em;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}
.ilotto-ball-label {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65em;
  font-weight: 700;
  white-space: nowrap;
}
.ilotto-winning-panel {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #ffd700;
  border-radius: 12px;
}
.ilotto-winning-panel__title {
  color: #ffd700;
  margin: 0 0 15px;
  text-align: center;
  font-size: 1.1em;
}
.ilotto-winning-section {
  margin-bottom: 14px;
}
.ilotto-winning-section__label {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.05em;
  text-align: center;
}
.ilotto-game-subhead {
  text-align: center;
  margin-bottom: 8px;
  font-size: 0.9em;
  font-weight: 700;
}
.ilotto-result-message {
  margin-top: 8px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid;
  text-align: center;
  font-size: 0.9em;
  font-weight: 600;
}

/* Check last year progress */
.ilotto-chunk-progress {
  margin-top: 12px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 10px;
}
.ilotto-chunk-progress__bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin: 8px 0;
}
.ilotto-chunk-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff88, #ffd700);
  width: 0%;
  transition: width 0.35s ease;
}
.ilotto-chunk-progress__text {
  font-size: 0.88em;
  color: #ffeaa7;
  line-height: 1.4;
}
