.results-screen {
  text-align: center;
  padding-top: 40px;
}

.milestone-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 20px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.milestone-card--pm {
  border-color: var(--accent-gold);
  box-shadow: 0 0 40px rgba(250, 204, 21, 0.15);
  animation: spring-in 0.6s var(--spring);
}

.mandate-counter {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  margin: 20px 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.milestone-card--pm .mandate-counter {
  color: var(--accent-gold);
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 24px;
  background: var(--panel-2);
}

.result-badge--pm {
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.2);
}

.result-badge--minister {
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
}

.result-badge--opposition {
  border: 2px solid var(--muted);
  color: var(--text);
}

.result-badge--out {
  border: 2px solid var(--accent-red);
  color: var(--accent-red);
}

.confetti {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 100;
}

.confetti-piece {
  position: absolute;
  width: 10px; height: 20px;
  background: var(--accent-gold);
  top: -20px;
  animation: confetti-fall 3s linear forwards;
}

.game-summary {
  text-align: right;
  margin-top: 32px;
  background: var(--panel-2);
  border-radius: var(--radius);
  padding: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-item:last-child {
  border-bottom: none;
}

/* Buy Me a Coffee Support Card */
.support-card {
  background: linear-gradient(135deg, rgba(255, 221, 0, 0.08) 0%, rgba(24, 24, 27, 0.95) 100%);
  border: 1px solid rgba(255, 221, 0, 0.35);
  border-radius: var(--radius);
  padding: 24px 18px;
  margin-bottom: 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.support-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #FFDD00;
  border-radius: 50%;
  font-size: 26px;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(255, 221, 0, 0.35);
  animation: float-pulse 3s ease-in-out infinite;
}

@keyframes float-pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.04); }
}

.support-card__title {
  color: #FFDD00;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.support-card__text {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0 0 16px 0;
}

.btn-coffee {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  padding: 14px 24px;
  background: #FFDD00;
  color: #000000;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 221, 0, 0.35);
  transition: transform 0.2s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.2s ease;
}

.btn-coffee:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(255, 221, 0, 0.5);
  color: #000000;
}

.btn-coffee:active {
  transform: scale(0.97);
}

