.match-detail {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 40px;
  box-sizing: border-box;
}

.match-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.meta-item {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 10px 14px;
  text-align: center;
}

.meta-label {
  display: block;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.meta-value {
  display: block;
  font-size: var(--fs-body);
  font-weight: 600;
  margin-top: 4px;
}

.team-name {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  word-break: break-word;
}

.team-name.left {
  text-align: right;
  width: 100%;
}

.team-name.right {
  text-align: left;
  width: 100%;
}

.score-block {
  text-align: center;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.score-main {
  font-size: var(--fs-h1);
  font-weight: 700;
}

.score-notes {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.score-tag {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: var(--fs-xs);
  text-transform: uppercase;
}

.match-table {
  display: grid;
  gap: 12px;
  margin-top: 100px;
}

.match-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 200px;
  align-items: center;
}

.match-cell {
  text-align: center;
  min-height: 28px;
  font-size: var(--fs-body);
}

.header-row .match-cell {
  min-height: 48px;
  font-size: var(--fs-h2);
  margin-bottom: 50px;
}

.mvp-row {
  margin-top: 12px;
  padding-top: 10px;
  font-weight: 600;
  font-size: var(--fs-body);
}

.goal-ball {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
}

.mvp {
  width: 22px;
  height: 26px;
  margin-left: 4px;
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
  font-size: var(--fs-body);
}

.empty {
  text-align: center;
  font-size: var(--fs-body);
  opacity: 0.7;
}

@media (max-width: 900px) {
  .match-meta {
    grid-template-columns: 1fr;
  }

  .match-table,
  .match-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .match-table {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .match-detail {
    padding: 0 16px;
    margin: 20px auto 40px;
  }

  .team-name {
    font-size: var(--fs-h2);
  }

  .score-main {
    font-size: var(--fs-h1);
  }

  .goal-ball {
    width: 18px;
    height: 18px;
    margin-left: 6px;
    margin-right: 4px;
  }

  .mvp {
    width: 15px;
    height: 18px;
    margin-left: 6px;
    margin-right: 4px;
  }
}
