@charset "UTF-8";
:root {
  --fg: #111;
  --bg: #fff;
  --muted: #666;
  --brand: #0b57d0;
  --card: #f6f8fa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans;
  color: var(--fg);
  background: var(--bg);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.2rem;
}

img {
  max-width: 100%;
  height: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-bottom: 1px solid #eee;
  background: var(--bg);
}

.topbar .brand {
  font-weight: 700;
  text-decoration: none;
  color: var(--fg);
  font-size: 1.5rem;
  flex-wrap: nowrap;
  text-transform: uppercase;
}

.topbar .brand img {
  height: 40px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.topbar .menu {
  margin-left: auto;
  display: flex;
  list-style: none;
  padding: 0;
  flex-wrap: nowrap;
}

.topbar .menu > li + li::before {
  content: "·";
  color: var(--muted);
  margin: 0 0.5rem;
  flex-wrap: nowrap;
}

.topbar .menu a {
  text-decoration: none;
  color: var(--fg);
  opacity: 0.85;
  white-space: nowrap;
}

.topbar .menu a:hover {
  opacity: 1;
}

.topbar .menu > li {
  position: relative;
}

.topbar .menu details {
  position: relative;
}

.topbar .menu details > summary {
  list-style: none;
  cursor: pointer;
}

.topbar .menu details > summary::-webkit-details-marker {
  display: none;
}

.topbar .menu details > summary::after {
  content: "▾";
  margin-left: 0.25rem;
  font-size: 0.7em;
}

.topbar .menu details > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  border: 1px solid #eee;
  list-style: none;
  padding: 0;
  margin: 0;
}

.topbar .menu details[open] > ul {
  display: block;
}

.topbar .menu details > ul li {
  white-space: nowrap;
}

.topbar .menu details > ul li + li {
  border-top: 1px solid #eee;
}

.topbar .menu details > ul a {
  display: block;
  padding: 0.4rem 0.75rem;
  opacity: 1;
}

.hamb {
  display: none;
}

/* Mobile */
@media (max-width: 800px) {
  .hamb {
    display: inline-block;
    margin-left: auto;
  }
  .topbar .menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1rem;
    overflow-y: auto;
    z-index: 100;
  }
  body.menu-open .topbar .menu {
    display: flex;
  }
  .topbar .menu > li + li::before {
    content: none;
  }
  .topbar .menu details > ul {
    position: static;
    border: none;
  }
}
.footer {
  border-top: 1px solid #eee;
  padding: 1rem;
  text-align: center;
  color: var(--muted);
}

.footer img {
  display: block;
  margin: 0 auto 0.5rem;
  height: 120px;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.25rem 0 1rem;
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.section-header .sub {
  color: var(--muted);
  margin-top: -0.5rem;
}

.player-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 1.5rem;
}

.player-list a {
  color: black;
}

.announcement {
  background-color: #fff4e5; /* light warm tone */
  border: 1px solid #ffd59e;
  border-left: 6px solid #ff9800; /* accent color */
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.4;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.announcement strong {
  color: #d17f00;
}

.stat-button {
  display: inline-block;
  font-size: 0.9em;
  margin-left: 8px;
  padding: 4px 6px;
  background: #eee;
  border-radius: 4px;
  text-decoration: none;
}

.stat-button:hover {
  background: #ddd;
}

p2 {
  font-size: 1.2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  position: relative;
  background: var(--card);
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
}

.card .fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 2;
}

.card .card-body {
  padding: 1rem;
  min-height: 120px;
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.card .card-body h3 {
  margin: 0.2rem 0 0.25rem;
}

.card .card-body .kicker {
  color: var(--muted);
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
}

.card.has-thumb {
  background-size: cover;
  background-position: center;
  color: #fff;
}

.card.has-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.card.has-thumb .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card.has-thumb .card-body h3 {
  margin: 0;
}

.tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}

.tab {
  display: inline-block;
  padding: 0.4rem 0.7rem;
  border: 1px solid #eee;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  text-decoration: none;
  color: var(--fg);
  background: #fafafa;
}

.tab.active {
  background: var(--bg);
  font-weight: 600;
}

.prose h1 {
  margin-top: 0;
}

.player .meta {
  color: var(--muted);
}

.player-layout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.player-photo {
  flex: 0 0 40%;
}

.player-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.player-content {
  flex: 1;
}

@media (max-width: 768px) {
  .player-layout {
    flex-direction: column;
  }
  .player-photo {
    flex-basis: auto;
  }
}
/* Hero image header */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.herot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-text {
  position: relative;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

h1 {
  font-size: 3rem;
}

/* Player team sections */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .team-grid {
    flex-direction: row;
  }
}
.team {
  flex: 1;
  text-align: center;
}

.team img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.team-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.team-list li + li {
  margin-top: 0.25rem;
}

.album-grid {
  column-count: 3;
  column-gap: 1rem;
}

@media (max-width: 768px) {
  .album-grid {
    column-count: 2;
  }
}
@media (max-width: 480px) {
  .album-grid {
    column-count: 1;
  }
}
.album-grid img {
  width: 100%;
  border-radius: 8px;
  display: block;
  margin-bottom: 1rem;
  break-inside: avoid;
}

.photo-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.photo-modal.open {
  display: flex;
}

.photo-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

/*# sourceMappingURL=main.css.map */