* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: #1f2937;
  background:
    linear-gradient(rgba(243, 244, 246, 0.92), rgba(243, 244, 246, 0.96)),
    url("../images/stadio-fiumicello.jpg") no-repeat center top;
  background-size: cover;
}

.gold-page {
  min-height: 100vh;
  padding: 22px 12px 34px 12px;
}

.gold-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.gold-hero {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  padding: 22px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 14px 34px rgba(0,0,0,0.13);
  text-align: center;
}

.gold-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 152, 139, 0.10);
  color: #07988b;
  border: 1px solid rgba(7, 152, 139, 0.16);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.gold-hero h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #111827;
}

.gold-hero p {
  margin: 9px 0 0 0;
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
}

.champion-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.30), transparent 34%),
    linear-gradient(135deg, #07988b 0%, #056f66 100%);
  color: white;
  border-radius: 24px;
  padding: 20px 22px;
  margin-bottom: 16px;
  box-shadow: 0 16px 38px rgba(7, 152, 139, 0.28);
}

.champion-card::after {
  content: "★";
  position: absolute;
  right: 18px;
  top: 6px;
  font-size: 96px;
  line-height: 1;
  opacity: 0.12;
}

.champion-label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.88;
}

.champion-year {
  margin-top: 4px;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.champion-name {
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.winner-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(21, 33, 61, 0.08);
  animation: cardIn 0.45s ease both;
}

.winner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(21, 33, 61, 0.12);
}

.winner-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(7, 152, 139, 0.10);
  color: #07988b;
  border: 1px solid rgba(7, 152, 139, 0.16);
  font-size: 12px;
  font-weight: 900;
}

.winner-card strong {
  color: #111827;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 900;
  text-transform: uppercase;
}

.winner-card.latest {
  border-color: rgba(7, 152, 139, 0.28);
  box-shadow: 0 12px 30px rgba(7, 152, 139, 0.13);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .winners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .gold-page {
    padding: 14px 8px 24px 8px;
  }

  .gold-hero {
    border-radius: 20px;
    padding: 18px 16px;
  }

  .gold-hero h1 {
    font-size: 28px;
  }

  .champion-card {
    border-radius: 20px;
    padding: 18px;
  }

  .champion-year {
    font-size: 30px;
  }

  .champion-name {
    font-size: 19px;
  }

  .winners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .winner-card {
    min-height: 104px;
    border-radius: 18px;
    padding: 13px;
  }

  .winner-card strong {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .winners-grid {
    grid-template-columns: 1fr;
  }

  .winner-card {
    min-height: auto;
  }
}
