.game-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.game-card .game-row {
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  list-style: none;
}

.game-card .game-row::-webkit-details-marker {
  display: none;
}

.game-card[open] .game-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-toggle {
  color: #ffb27e;
  font-weight: 850;
}

.game-toggle span {
  display: inline-block;
  margin-left: 4px;
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.game-card[open] .game-toggle span {
  transform: rotate(45deg);
}

.box-score {
  padding: 16px 18px 20px;
  background: rgba(3, 13, 31, 0.36);
}

.box-score-title {
  margin-bottom: 10px;
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.box-score-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.box-score table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.04);
}

.box-score th,
.box-score td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #edf3fb;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.box-score thead th {
  color: #ffb27e;
  font-size: 0.76rem;
}

.box-score th:first-child {
  min-width: 210px;
  text-align: left;
}

.box-score tbody tr:last-child th,
.box-score tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 760px) {
  .box-score {
    padding: 14px 12px 16px;
  }

  .box-score table {
    min-width: 480px;
  }

  .box-score th,
  .box-score td {
    padding: 9px 10px;
  }
}
