@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

body {
    font-family: "Google Sans", sans-serif;
    font-size: 20px;
    background-color: #4B9CD3;
    background-color: black;
}
h1 {
  font-size: 48px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 30px 0;

  color: #4B9CD3; /* carolina blue */

  /* Neon glow effect */
  text-shadow:
    0 0 5px #4B9CD3,
    0 0 10px #4B9CD3,
    0 0 20px #4B9CD3,
    0 0 40px #4B9CD3;

  /* Optional outline for readability */
  -webkit-text-stroke: 1px black;
}
/* RESET LIST */
ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-wrap: wrap;
  gap: 80px 20px;
  justify-content: center;
}

/* EACH CARD */
li {
  width: 220px;
}

/* MAKE ENTIRE CARD CLICKABLE */
li a {
  display: block;
  height: 100%;
  padding: 18px;

  background: #ffffff;
  border-radius: 18px;

  text-align: center;
  text-decoration: none;
  color: black;

  /* chunky button feel */
  box-shadow: 0 8px 0 #ccc;

  transition: all 0.2s ease;
  position: relative;
}

/* HOVER EFFECT */
li a:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 0 #bbb;
}

/* CLICK (PRESS) EFFECT */
li a:active {
  transform: translateY(4px);
  box-shadow: 0 3px 0 #aaa;
}

/* TEAM NAME (TOP) */
.team-name {
  display: block;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;

  color: #4B9CD3;

  /* neon glow */
  text-shadow:
    0 0 5px #eee,
    0 0 10px #eee,
    0 0 20px #eee;
}

/* IMAGE (MIDDLE) */
li img {
  width: 100%;
  height: auto;
  margin: 10px 0 0 0;
}

/* SEASON (BOTTOM) */
.season {
  display: block;
  font-size: 12px;
  color: #555;
  margin-top: 8px;
  font-weight: bold;
}

/* OPTIONAL: subtle neon border glow on hover */
li a:hover {
  outline: 2px solid #4B9CD3;
  outline-offset: 3px;
}

li a {
  display: flex;
  flex-direction: column;   /* stack vertically */
  height: 100%;
  padding: 18px;

  background: #fff;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  color: black;

  box-shadow: 0 8px 0 #ccc;
}

/* TEAM NAME (TOP) */
.team-name {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: #4B9CD3;
  margin-bottom: 10px;
}

/* IMAGE (MIDDLE) */
li img {
  width: 100%;
  height: auto;
}

/* SEASON (BOTTOM) */
.season {
  margin-top: auto;   /* 👈 THIS is the magic */
  font-size: 14px;
  color: #555;
  padding-top: 0px;
}