.app { max-width: 480px; }

.week-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-weight: 600;
}

.score-summary {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
.summary-score {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  transition: color 0.3s;
}
.summary-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.summary-max {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 700;
}

.progress-bar-wrap {
  height: 8px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #f9a825);
  border-radius: 999px;
  width: 0%;
  transition: width 0.6s ease;
}

.t-game-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.t-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  cursor: pointer;
}
.t-card:hover { background: var(--surface-hover); transform: translateY(-1px); }
.t-card.scored { border-color: var(--accent); }

.t-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.t-thumb svg { width: 100%; height: 100%; display: block; }

.t-info { flex: 1; min-width: 0; }
.t-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.t-pts {
  text-align: right;
  flex-shrink: 0;
  min-width: 64px;
}
.t-pts-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.t-pts-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

.t-card.unplayed .t-pts-value { color: var(--text-muted); font-size: 1rem; }

.t-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.share-toast {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 700;
}

.t-hint {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-bottom: 24px;
}
