/* Game of the Year timeline — deliberately angular: no rounded corners, strong lines. */

.goty-timeline {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  position: relative;
}

.goty-timeline::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 7px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent-alt));
}

.goty-year {
  position: relative;
  padding: 0 0 2.25rem 2.4rem;
}

.goty-year::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  background: var(--accent-strong);
  border: 2px solid var(--surface-strong);
  box-shadow: 0 0 0 1px var(--accent-strong);
}

.goty-year:last-child {
  padding-bottom: 0.4rem;
}

.goty-year-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.goty-year-number {
  font-family: "Space Mono", monospace;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  background: var(--ink);
  padding: 0.4rem 0.6rem;
  border: 0;
}

.goty-year-title {
  margin: 0;
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.goty-year-ceremony {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.goty-winner {
  position: relative;
  background: var(--surface-strong);
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--accent-strong);
  border-radius: 0;
  padding: 1.1rem 1.2rem;
}

.goty-badge {
  margin: 0 0 0.5rem;
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffffff;
  background: var(--accent-strong);
  padding: 0.22rem 0.55rem;
}

.goty-winner-title {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  line-height: 1.2;
}

.goty-facts {
  margin: 0 0 0.6rem;
  font-size: 0.86rem;
  color: var(--accent-alt);
  font-weight: 500;
}

.goty-summary {
  margin: 0 0 0.9rem;
  color: var(--ink);
  max-width: 60ch;
}

.goty-nominees,
.goty-extra-demakes {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-left: 2px solid var(--line-strong);
  border-radius: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.62);
}

.goty-nominees-heading {
  margin: 0 0 0.55rem;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.goty-nominee-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.goty-nominee {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  padding: 0.5rem 0.65rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 0;
}

.goty-nominee-name {
  font-weight: 700;
}

.goty-nominee-studio {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Angular override of the shared .button for demake actions. */
.goty-play-demake.button {
  margin-left: auto;
  border-radius: 0;
  border: 1px solid var(--accent-strong);
  background: var(--accent-strong);
  box-shadow: none;
  letter-spacing: 0.02em;
}

.goty-winner > .goty-play-demake.button {
  margin-left: 0;
  margin-top: 0.2rem;
}

.goty-play-demake.button:hover {
  transform: translate(-1px, -1px);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 rgba(15, 23, 42, 0.18);
}

.goty-empty {
  list-style: none;
  border: 1px dashed var(--line-strong);
  border-radius: 0;
  padding: 1.4rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 560px) {
  .goty-year {
    padding-left: 1.9rem;
  }

  .goty-year-number {
    font-size: 1.2rem;
  }

  .goty-winner-title {
    font-size: 1.2rem;
  }

  .goty-play-demake.button {
    margin-left: 0;
    width: 100%;
  }
}

/* AI-written year-level retrospective on the Game of the Year timeline */
.goty-editorial {
  margin: 0.75rem 0 0;
  max-width: 70ch;
  line-height: 1.65;
  color: var(--muted);
}
