:root {
  --blue: #1c4587;
  --blue-dark: #102b57;
  --white: #ffffff;
  --muted: #dce7ff;
  --red: #ea4c5f;
  --yellow: #f1cf56;
  --sky: #a6bbff;
  --ink: #07142b;
  --panel: rgba(255,255,255,.10);
  --border: rgba(255,255,255,.18);
  --shadow: 0 22px 55px rgba(0,0,0,.25);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(241,207,86,.2), transparent 24rem),
    radial-gradient(circle at 90% 16%, rgba(234,76,95,.18), transparent 24rem),
    linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  line-height: 1.6;
}

.banner {
  background: var(--blue);
  padding: clamp(10px, 2vw, 24px);
}

.banner img {
  display: block;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.intro {
  padding: clamp(38px, 7vw, 80px) 0 24px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 950;
}

h1, h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  text-transform: uppercase;
  text-shadow: 6px 6px 0 rgba(7,20,43,.45);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.5rem);
}

.intro p:last-child,
.lead {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.highlight-team,
.imelda,
.card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.highlight-team {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 26px;
  padding: clamp(24px, 4vw, 38px);
  margin: 24px 0;
}

.medal,
.badge {
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.14);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.medal {
  width: 100px;
  height: 100px;
  font-size: 3.5rem;
}

.players {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.players li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--white);
  font-weight: 850;
}

.players li::before {
  content: "🎯 ";
}

.highlight-team p,
.imelda p,
.card li {
  color: var(--muted);
}

strong {
  color: var(--white);
}

.imelda {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 26px;
  padding: clamp(26px, 5vw, 46px);
  margin: 26px 0;
  background:
    linear-gradient(135deg, rgba(241,207,86,.30), rgba(234,76,95,.20)),
    rgba(255,255,255,.12);
  overflow: hidden;
}

.imelda::after {
  content: "QUART DE FINALE";
  position: absolute;
  right: -14px;
  bottom: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  font-size: clamp(2rem, 6vw, 5rem);
  color: rgba(255,255,255,.08);
  transform: rotate(-4deg);
  pointer-events: none;
}

.badge {
  width: 100px;
  height: 100px;
  font-size: 3rem;
  background: rgba(241,207,86,.28);
}

.imelda h2 {
  color: var(--white);
  text-shadow: 4px 4px 0 rgba(7,20,43,.45);
}

.imelda p {
  position: relative;
  max-width: 820px;
  font-size: 1.12rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0 60px;
}

.card {
  padding: clamp(22px, 4vw, 32px);
}

.card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.card li + li {
  margin-top: 12px;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 34px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 760px) {
  .highlight-team,
  .imelda,
  .cards {
    grid-template-columns: 1fr;
  }

  .medal,
  .badge {
    width: 76px;
    height: 76px;
    font-size: 2.4rem;
  }

  .banner img {
    border-radius: 12px;
  }
}
