.public-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 22px 24px;
  border-bottom: 4px solid #ec4899;
}

.public-header-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.public-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.public-brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #ec4899;
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.public-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.public-kicker {
  margin: 0 0 4px;
  color: #f9a8d4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.public-header h1 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.public-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.public-nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.public-nav a:hover,
.public-nav a.active {
  color: #ffffff;
  background: rgba(236, 72, 153, 0.9);
}

@media (max-width: 700px) {
  .public-header {
    padding: 18px 14px;
  }

  .public-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-brand-icon {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .public-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .public-nav a {
    text-align: center;
    padding: 9px 8px;
  }
}
body {
  margin: 0;
  background: transparent;
  font-family: Arial, Helvetica, sans-serif;
  color: #111827;
}
* {
  box-sizing: border-box;
}
.schedule-widget {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.eyebrow {
  margin: 0 0 6px;
  color: #ec4899;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
h1 {
  margin: 0 0 20px;
  font-size: 34px;
}
.public-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 18px;
}
.public-filters select {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  font-weight: 700;
}
.game-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 14px;

    display: grid;
    grid-template-columns: 170px 1fr auto;
    gap: 16px;
    align-items: center;

    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);

    transition: transform .25s ease, box-shadow .25s ease,border-color 0.25s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236,72,153,.35);
  box-shadow: 0 26px 60px rgba(17, 24, 39, 0.22);
}
.date {
  font-weight: 900;
}
.time,
.field {
  color: #6b7280;
  font-size: 14px;
  margin-top: 4px;
}
.matchup {
  font-size: 20px;
  font-weight: 900;
}
.score {
  font-size: 18px;
  font-weight: 900;
  margin-top: 6px;
}
.status {
  display: inline-block;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
  font-size: 12px;
  background: #eef2ff;
  color: #3730a3;
}
.status.Final {
  background: #dcfce7;
  color: #166534;
}
.status.Postponed,
.status.RainOut {
  background: #fef3c7;
  color: #92400e;
}
.status.Cancelled {
  background: #fee2e2;
  color: #991b1b;
}
@media (max-width: 800px) {
    .public-filters {
        grid-template-columns: 1fr;
    }

    .schedule-widget {
        padding: 14px;
    }

    .game-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .date {
        margin-bottom: 10px;
    }

    .matchup {
        font-size: 18px;
    }
}
