      .badge-watermark {
        position: fixed;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
      }

      .badge-watermark img {
        width: min(75vw, 440px);
        height: auto;
        opacity: 0.06;
        user-select: none;
      }

      .site-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 1;
      }

      .site-badge {
        width: 2.5rem;
        height: auto;
        flex-shrink: 0;
        display: block;
      }

      body > main {
        position: relative;
        z-index: 1;
      }

      nav {
        display: flex;
        gap: 1rem;
        margin-bottom: 2rem;
        font-size: 0.9375rem;
      }

      nav a {
        color: #1d4ed8;
        text-decoration: none;
        font-weight: 600;
      }

      nav a:hover {
        text-decoration: underline;
      }

      nav a[aria-current="page"] {
        color: #0f172a;
        text-decoration: none;
        cursor: default;
      }

      .team-link {
        color: inherit;
        text-decoration: none;
      }

      .team-link:hover .name {
        color: #1d4ed8;
      }

      .filters {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
        margin-bottom: 1.5rem;
      }

      .filter-group {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .player-grid {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 0.75rem;
      }

      .player-card {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.875rem 1rem;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
      }

      .player-badges {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.35rem;
        flex-shrink: 0;
      }

      .position-label {
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 0.2rem 0.45rem;
        border-radius: 999px;
        white-space: nowrap;
      }

      .position-label.gk {
        background: #fef3c7;
        color: #92400e;
      }

      .position-label.df {
        background: #dbeafe;
        color: #1e40af;
      }

      .position-label.mf {
        background: #dcfce7;
        color: #166534;
      }

      .position-label.fw {
        background: #fee2e2;
        color: #991b1b;
      }

      .position-label.unknown {
        background: #f1f5f9;
        color: #475569;
      }

      .rating {
        min-width: 2.5rem;
        text-align: center;
        font-size: 0.9375rem;
        font-weight: 700;
        padding: 0.25rem 0.5rem;
        border-radius: 8px;
        background: #f8fafc;
        color: #0f172a;
      }

      .rating.high {
        background: #ede9fe;
        color: #5b21b6;
      }

      .rating.good {
        background: #cffafe;
        color: #0e7490;
      }

      .rating.average {
        background: #f1f5f9;
        color: #334155;
      }

      .rating.low {
        background: #ffedd5;
        color: #c2410c;
      }

      .player-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        margin-bottom: 0.1rem;
      }

      .player-meta {
        min-width: 0;
        flex: 1;
      }

      .player-name {
        font-weight: 600;
        margin: 0;
      }

      .player-team {
        font-size: 0.8125rem;
        color: #1d4ed8;
        margin: 0.1rem 0 0;
        text-decoration: none;
        display: inline-block;
      }

      .player-team:hover {
        text-decoration: underline;
      }

      .player-detail {
        font-size: 0.8125rem;
        color: #64748b;
        margin: 0.15rem 0 0;
      }

      .team-section + .team-section {
        margin-top: 2rem;
      }

      .team-section h2 {
        font-size: 1.125rem;
        margin: 0 0 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }

      .team-section h2 img {
        width: 1.75rem;
        height: 1.75rem;
        object-fit: contain;
      }

      .team-section h2 a {
        color: inherit;
        text-decoration: none;
      }

      .team-section h2 a:hover {
        color: #1d4ed8;
      }

      .mini-crest {
        width: 1.75rem;
        height: 1.75rem;
        object-fit: contain;
      }
