.cup-ball-game {
  width: min(680px, 92%);
  padding: 20px 0 10px;
  color: #f4f4ef;
  text-align: center;
}

.cup-ball-game > .eyebrow {
  margin: 0 0 8px;
  color: var(--team-secondary, #cfff47);
}

.cup-ball-game > h3 {
  margin: 0;
  font: clamp(24px, 4vw, 38px)/1.04 'Archivo Black', sans-serif;
}

.cup-ball-game > p:not(.eyebrow) {
  max-width: 500px;
  margin: 12px auto 24px;
  color: #8f97a3;
  font-size: 12px;
  line-height: 1.5;
}

.cup-ball-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cup-ball-choice {
  position: relative;
  display: grid;
  min-height: 168px;
  place-items: center;
  align-content: center;
  gap: 15px;
  border: 1px solid #2f3642;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 120%, color-mix(in srgb, var(--team-primary, #ff6333) 15%, transparent), transparent 55%),
    #121720;
  color: #aeb5c0;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.cup-ball-choice:hover,
.cup-ball-choice:focus-visible {
  border-color: var(--team-primary, #ff6333);
  outline: none;
  transform: translateY(-3px);
}

.cup-ball-choice:disabled {
  cursor: default;
  opacity: 1;
  transform: none;
}

.cup-ball-shape {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-family: "Noto Color Emoji", "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
  font-size: 72px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  text-align: center;
  filter: drop-shadow(0 14px 11px rgba(0, 0, 0, .38));
  transform: translateZ(0);
  transition: filter .2s ease, transform .2s ease;
}

.cup-ball-shape::before,
.cup-ball-shape::after,
.cup-ball-shape > i::before,
.cup-ball-shape > i::after {
  content: none;
}

.cup-ball-choice > small {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.cup-ball-choice.winner {
  border-color: var(--team-secondary, #cfff47);
  background: color-mix(in srgb, var(--team-secondary, #cfff47) 8%, #121720);
}

.cup-ball-choice.winner::after {
  content: "COPA";
  position: absolute;
  top: 9px;
  right: 9px;
  padding: 4px 6px;
  border-radius: 99px;
  background: var(--team-secondary, #cfff47);
  color: #101319;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .8px;
}

.cup-ball-choice.winner .cup-ball-shape,
.cup-ball-choice.selected-correct .cup-ball-shape {
  filter:
    drop-shadow(0 0 13px color-mix(in srgb, var(--team-secondary, #cfff47) 78%, transparent))
    drop-shadow(0 12px 10px rgba(0, 0, 0, .36));
  transform: scale(1.08);
}

.cup-ball-choice.selected-wrong {
  border-color: #d85d56;
}

.cup-ball-choice.selected-wrong .cup-ball-shape {
  filter: grayscale(.8) brightness(.72);
}

.cup-ball-feedback {
  display: block;
  min-height: 16px;
  margin-top: 19px;
  color: #c8ccd2;
  font-size: 10px;
  letter-spacing: 1px;
}

@media (max-width: 560px) {
  .cup-ball-game {
    width: 95%;
    padding-top: 10px;
  }

  .cup-ball-options {
    gap: 6px;
  }

  .cup-ball-choice {
    min-height: 125px;
    gap: 10px;
  }

  .cup-ball-shape {
    width: 58px;
    height: 58px;
    font-size: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cup-ball-choice,
  .cup-ball-shape {
    transition: none;
  }
}
