.v110-scoreboard-nav {
  position: relative;
}

.v110-scoreboard-nav::after {
  position: absolute;
  right: 7px;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f7c95c;
  box-shadow: 0 0 10px rgba(247, 201, 92, 0.55);
  content: "";
}

.v110-scoreboard-overlay {
  position: fixed;
  inset: 0;
  z-index: 1900;
  display: grid;
  place-items: center;
  padding: 18px;
}

.v110-scoreboard-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(1, 6, 14, 0.78);
  backdrop-filter: blur(10px);
}

.v110-scoreboard-overlay > section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1040px, 100%);
  max-height: min(860px, calc(100vh - 36px));
  overflow: hidden;
  border: 1px solid rgba(142, 164, 195, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(247, 201, 92, 0.1), transparent 34%),
    linear-gradient(155deg, rgba(9, 20, 37, 0.99), rgba(4, 12, 25, 0.99));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.56);
  color: #edf4ff;
}

.v110-scoreboard-overlay > section > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(142, 164, 195, 0.16);
}

.v110-scoreboard-overlay > section > header > div {
  display: grid;
  gap: 5px;
}

.v110-scoreboard-overlay > section > header span,
.v110-scoreboard-list > header span,
.v110-scoreboard-policy > span {
  color: #f7c95c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.v110-scoreboard-overlay > section > header h1,
.v110-scoreboard-list > header h2 {
  margin: 0;
  color: #f7faff;
}

.v110-scoreboard-overlay > section > header h1 {
  font-size: clamp(22px, 4vw, 34px);
}

.v110-scoreboard-overlay > section > header p {
  margin: 0;
  color: #aebed2;
  line-height: 1.5;
}

.v110-scoreboard-overlay > section > header > button {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(142, 164, 195, 0.22);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  color: #dce8f8;
  font-size: 25px;
}

.v110-scoreboard-overlay main {
  display: grid;
  gap: 18px;
  overflow: auto;
  padding: 22px 24px 28px;
  overscroll-behavior: contain;
}

.v110-scoreboard-policy {
  display: grid;
  gap: 9px;
  padding: 16px 18px;
  border: 1px solid rgba(247, 201, 92, 0.28);
  border-radius: 16px;
  background: rgba(247, 201, 92, 0.055);
}

.v110-scoreboard-policy > strong {
  color: #f5f8ff;
  font-size: 15px;
}

.v110-scoreboard-policy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.v110-scoreboard-policy b {
  padding: 6px 9px;
  border: 1px solid rgba(247, 201, 92, 0.22);
  border-radius: 999px;
  color: #e8d39d;
  font-size: 11px;
}

.v110-scoreboard-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.v110-scoreboard-metric {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(142, 164, 195, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.032);
}

.v110-scoreboard-metric > span {
  color: #91a5c0;
  font-size: 11px;
  font-weight: 800;
}

.v110-scoreboard-metric > strong {
  color: #f7faff;
  font-size: 22px;
}

.v110-scoreboard-metric > p {
  margin: 0;
  color: #8497b2;
  font-size: 10px;
  line-height: 1.4;
}

.v110-scoreboard-metric.is-hit > strong,
.v110-scoreboard-metric.is-accuracy > strong {
  color: #78e0b9;
}

.v110-scoreboard-metric.is-miss > strong {
  color: #ff8e9a;
}

.v110-scoreboard-metric.is-hold > strong {
  color: #ffc36a;
}

.v110-scoreboard-list {
  display: grid;
  gap: 12px;
}

.v110-scoreboard-list > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.v110-scoreboard-list > header > div {
  display: grid;
  gap: 4px;
}

.v110-scoreboard-list > header button,
.v110-scoreboard-state button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(142, 164, 195, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: #d9e6f7;
  font-weight: 800;
}

.v110-scoreboard-entries {
  display: grid;
  gap: 10px;
}

.v110-scoreboard-entry {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(142, 164, 195, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.026);
}

.v110-scoreboard-entry.is-secret {
  border-color: rgba(96, 184, 255, 0.24);
}

.v110-scoreboard-entry.is-hold {
  border-color: rgba(255, 187, 91, 0.25);
  background: rgba(48, 31, 13, 0.28);
}

.v110-scoreboard-entry > header,
.v110-scoreboard-entry > footer,
.v110-scoreboard-forecast,
.v110-scoreboard-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.v110-scoreboard-entry > header > div {
  display: grid;
  gap: 3px;
}

.v110-scoreboard-entry > header span {
  color: #dce8f8;
  font-size: 12px;
  font-weight: 800;
}

.v110-scoreboard-entry > header em,
.v110-scoreboard-entry > footer {
  color: #8296b1;
  font-size: 10px;
  font-style: normal;
}

.v110-scoreboard-entry > header > b {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(75, 166, 241, 0.13);
  color: #87caff;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.v110-scoreboard-entry.is-hold > header > b {
  background: rgba(255, 187, 91, 0.13);
  color: #ffc36a;
}

.v110-scoreboard-match {
  justify-content: center;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.14);
  color: #eef5ff;
  font-weight: 900;
}

.v110-scoreboard-match > span {
  flex: 1 1 0;
  text-align: center;
}

.v110-scoreboard-match > i {
  color: #7085a2;
  font-size: 10px;
  font-style: normal;
}

.v110-scoreboard-forecast {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.v110-scoreboard-forecast > div {
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  border: 1px solid rgba(142, 164, 195, 0.12);
  border-radius: 12px;
}

.v110-scoreboard-forecast span {
  color: #8497b2;
  font-size: 10px;
  font-weight: 800;
}

.v110-scoreboard-forecast strong {
  color: #eef5ff;
  font-size: 14px;
}

.v110-scoreboard-forecast em {
  color: #8ca1bd;
  font-size: 10px;
  font-style: normal;
}

.v110-scoreboard-forecast .is-hit strong,
.v110-scoreboard-forecast .is-hit em {
  color: #78e0b9;
}

.v110-scoreboard-forecast .is-miss strong,
.v110-scoreboard-forecast .is-miss em {
  color: #ff8e9a;
}

.v110-scoreboard-forecast .is-hold-no-pick strong,
.v110-scoreboard-forecast .is-hold-no-pick em {
  color: #ffc36a;
}

.v110-scoreboard-entry > footer {
  flex-wrap: wrap;
  padding-top: 2px;
}

.v110-scoreboard-state {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 260px;
  padding: 28px;
  border: 1px dashed rgba(142, 164, 195, 0.24);
  border-radius: 16px;
  text-align: center;
}

.v110-scoreboard-state strong {
  color: #f1f6ff;
  font-size: 17px;
}

.v110-scoreboard-state p,
.v110-scoreboard-disclaimer {
  margin: 0;
  color: #91a3bb;
  line-height: 1.55;
}

.v110-scoreboard-state.is-error {
  border-color: rgba(255, 121, 135, 0.32);
}

.v110-scoreboard-disclaimer {
  padding: 4px 2px;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 900px) {
  .v110-scoreboard-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .v110-scoreboard-overlay {
    align-items: end;
    padding: 0;
  }

  .v110-scoreboard-overlay > section {
    width: 100%;
    max-height: 92vh;
    border-radius: 22px 22px 0 0;
  }

  .v110-scoreboard-overlay > section > header,
  .v110-scoreboard-overlay main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .v110-scoreboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v110-scoreboard-forecast {
    grid-template-columns: 1fr;
  }

  .v110-scoreboard-entry > footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v110-scoreboard-overlay,
  .v110-scoreboard-overlay * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
