/* ============================================================
   Global Results final universal layout authority
   Moved from 08-results-rewards-b.css so 08-results-rewards.css owns base results shell/layout.
   ============================================================ */
/* Top banner strip */
#global-results-banner {
  width: 100%;
  height: 90px;
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid #415a77;
  border-radius: 10px 10px 0 0;
}

/* Title text */
#global-results-title {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
  color: #ffd60a;
  text-shadow: 2px 2px 0 #000;
}

/* Body / content zone */
#global-results-body {
  width: 100%;
  box-sizing: border-box;
}

/* Reward / summary list */
#global-results-list {
  text-align: left;
  font-size: 14px;
}

.reward-block h4 {
  text-align: center;
  color: #ffd60a;
  margin-bottom: 4px;
  text-shadow: 1px 1px 2px #000;
}
.reward-block p {
  margin: 2px 0;
  text-align: center;
}

/* Chao result cards */
.result-chao-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 120px;
  text-align: center;
  color: white;
}
.result-chao-card .chao-wrap {
  width: 96px;
  height: 96px;
  position: relative;
}
.result-chao-card .placement {
  margin-top: 6px;
  font-weight: bold;
}

/* Footer / Finish button */
#global-results-footer {
  width: 100%;
  text-align: center;
  padding: 10px 0 16px 0;
  border-top: 2px solid #415a77;
}
#global-results-finish {
  background: #ffd60a;
  border: none;
  border-radius: 8px;
  padding: 8px 30px;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.2s;
}
#global-results-finish:hover {
  background: #ffea55;
}

