/* Alhijaz FC — Premium public UI layer (unified polish) */

/* ── Account auth (login, register, reset) ── */
.account-login-page {
  min-height: calc(100vh - 12rem);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.account-form {
  width: min(100%, 24rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 0.85rem;
  border: 1px solid var(--color-border, #e5e7eb);
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.account-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.account-form .form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.account-form .form-group input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 0.5rem;
  font-size: 1rem;
}

.account-form__remember {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.account-form__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.account-form__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}

.account-form__sep {
  color: var(--color-text-muted, #6b7280);
}

.form-error {
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.5rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
}

/* ── Customer account area ── */
.account-area {
  width: min(100%, 42rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.account-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.account-toolbar--split {
  justify-content: space-between;
}

.account-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border, #e5e7eb);
  background: #fff;
  color: var(--neutral-700, #374151);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.account-back-link::before {
  content: "←";
  font-size: 1rem;
  line-height: 1;
}

[dir="rtl"] .account-back-link::before {
  content: "→";
}

.account-back-link:hover {
  border-color: rgba(26, 122, 58, 0.35);
  color: var(--color-primary, #1a7a3a);
  box-shadow: 0 4px 16px rgba(26, 122, 58, 0.08);
  transform: translateY(-1px);
}

.account-welcome {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border, #e5e7eb);
  background: linear-gradient(135deg, #fff 0%, #fff8f9 100%);
  box-shadow: 0 8px 28px rgba(26, 122, 58, 0.06);
}

.account-welcome__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1a7a3a, #0f5a2a);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.account-welcome__greeting {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  line-height: 1.4;
}

.account-welcome__email {
  margin: 0;
  font-size: 0.875rem;
  color: var(--neutral-500, #6b7280);
}

.account-card-grid {
  display: grid;
  grid-gap: 0.85rem;
  gap: 0.85rem;
}

.account-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border, #e5e7eb);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.account-card:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 122, 58, 0.25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.account-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(26, 122, 58, 0.08);
  font-size: 1.25rem;
}

.account-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1 1;
  min-width: 0;
}

.account-card__title {
  font-size: 1rem;
  font-weight: 800;
}

.account-card__desc {
  font-size: 0.85rem;
  color: var(--neutral-500, #6b7280);
  line-height: 1.45;
}

.account-card__chevron,
.account-order-card__chevron {
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--neutral-400, #9ca3af);
  font-weight: 300;
}

[dir="rtl"] .account-card__chevron,
[dir="rtl"] .account-order-card__chevron {
  transform: scaleX(-1);
}

.account-area__actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 0.25rem;
}

.account-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 2.5rem 1.5rem;
  border: 1px dashed var(--color-border, #e5e7eb);
  border-radius: 1rem;
  background: var(--neutral-50, #fafafa);
  text-align: center;
}

.account-empty__icon {
  font-size: 2rem;
}

.account-orders-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.account-order-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  grid-gap: 0.85rem 1rem;
  gap: 0.85rem 1rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border, #e5e7eb);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.account-order-card:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 122, 58, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.account-order-card__main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.account-order-card__number {
  font-weight: 800;
  font-size: 0.95rem;
}

.account-order-card__date {
  font-size: 0.8rem;
  color: var(--neutral-500, #6b7280);
}

.account-order-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.account-order-card__total {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-primary, #1a7a3a);
}

.account-status {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--neutral-100, #f3f4f6);
  color: var(--neutral-600, #4b5563);
}

.account-status--success {
  background: #ecfdf5;
  color: #047857;
}

.account-status--warning {
  background: #fffbeb;
  color: #b45309;
}

.account-status--danger {
  background: #fffbeb;
  color: #92400e;
}

.account-order-detail {
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.account-order-detail__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--neutral-100, #f3f4f6);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.account-order-detail__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neutral-500, #6b7280);
}

.account-order-detail__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

.account-order-detail__date {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--neutral-500, #6b7280);
}

.account-order-detail__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 0.75rem;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--neutral-100, #f3f4f6);
}

.account-order-detail__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: var(--neutral-50, #fafafa);
}

.account-order-detail__stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neutral-500, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.account-order-detail__stat-value {
  font-size: 1.1rem;
  font-weight: 800;
}

.account-order-detail__stat-value--total {
  color: var(--color-primary, #1a7a3a);
}

.account-order-detail__items-wrap {
  padding: 1.25rem 1.5rem 1.5rem;
}

.account-order-detail__items-title {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.account-order-detail__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.account-order-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--neutral-100, #f3f4f6);
  background: #fff;
}

.account-order-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.account-order-item__name {
  font-weight: 700;
  line-height: 1.35;
}

.account-order-item__variant,
.account-order-item__qty {
  font-size: 0.82rem;
  color: var(--neutral-500, #6b7280);
}

.account-order-item__price {
  flex-shrink: 0;
  font-weight: 800;
  color: var(--neutral-800, #1f2937);
}

@media (max-width: 640px) {
  .account-order-card {
    grid-template-columns: 1fr auto;
  }

  .account-order-card__chevron {
    display: none;
  }

  .account-toolbar--split {
    flex-direction: column;
    align-items: stretch;
  }

  .account-order-detail__header {
    flex-direction: column;
  }
}
:focus-visible {
  outline: 2px solid var(--color-primary, #1a7a3a);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline-offset: 3px;
}

/* ── Secondary button alias ── */
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2, 0.5rem);
  padding: var(--input-padding-y, 0.65rem) var(--space-6, 1.5rem);
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  background: #fff;
  color: var(--color-primary, #1a7a3a);
  border: 2px solid var(--color-border, #e5e7eb);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--secondary:hover:not(:disabled) {
  border-color: var(--color-primary, #1a7a3a);
  background: #fff5f7;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 122, 58, 0.12);
}

/* ── Active navigation ── */
.desktop-nav__link--active,
.desktop-nav__dropdown-link--active {
  color: var(--color-primary, #1a7a3a) !important;
  background: rgba(26, 122, 58, 0.08);
}

.desktop-nav__link--active {
  font-weight: 800;
}

.mobile-nav__link--active,
.mobile-nav__sublink--active {
  color: var(--color-primary, #1a7a3a);
  background: rgba(26, 122, 58, 0.08);
  font-weight: 700;
}

.mobile-nav__link,
.mobile-nav__sublink {
  transition: background 0.15s ease, color 0.15s ease;
}

.mobile-nav__link:hover,
.mobile-nav__sublink:hover {
  background: var(--neutral-100, #f3f4f6);
}

/* ── Match fixtures grid ── */
.match-fixtures-grid {
  display: grid;
  grid-gap: var(--space-5, 1.25rem);
  gap: var(--space-5, 1.25rem);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .match-fixtures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .match-fixtures-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Premium match card enhancements ── */
.match-card-interactive {
  border: 1px solid rgba(26, 122, 58, 0.08);
  height: 100%;
}

.match-card-interactive__competition {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--neutral-100, #f3f4f6);
  color: var(--neutral-600, #4b5563);
}

.match-card-interactive__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-lg, 0.75rem);
  background: linear-gradient(135deg, #1a7a3a, #0f5a2a);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 4px 14px rgba(26, 122, 58, 0.25);
}

.match-card-interactive__score-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.match-card-interactive__meta {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--neutral-500, #6b7280);
}

.match-card-interactive__cta {
  margin-top: 1rem;
  align-self: center;
}

.match-card-interactive--clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* ── Player roster cards ── */
.player-list-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: var(--radius-xl, 1rem);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  min-height: 100%;
}

.player-list-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(26, 122, 58, 0.22);
}

.player-list-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg, 0.75rem);
  background: linear-gradient(135deg, #1a7a3a, #0f5a2a);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
}

.player-list-card__body h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.player-list-card__position {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neutral-500, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Standings panel ── */
.standings-panel {
  overflow-x: auto;
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: var(--radius-xl, 1rem);
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.standings-panel .standings-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  margin: 0;
}

.standings-panel .standings-table thead {
  background: linear-gradient(180deg, #fafafa, #f3f4f6);
}

.standings-panel .standings-table th {
  padding: 0.85rem 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neutral-600, #4b5563);
  text-align: start;
  border-bottom: 1px solid var(--color-border, #e5e7eb);
}

.standings-panel .standings-table td {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--neutral-100, #f3f4f6);
}

.standings-panel .standings-table tbody tr:last-child td {
  border-bottom: 0;
}

.standings-panel .standings-table__highlight td {
  background: rgba(26, 122, 58, 0.06);
  font-weight: 700;
}

.standings-panel .standings-table__highlight td:first-child {
  box-shadow: inset 3px 0 0 var(--color-primary, #1a7a3a);
}

.standings-panel .standings-table__pos {
  font-weight: 800;
  color: var(--neutral-500, #6b7280);
  width: 2.5rem;
}

.standings-panel .standings-table__team {
  font-weight: 700;
}

.standings-panel .standings-table__pts {
  font-weight: 900;
  color: var(--color-primary, #1a7a3a);
}

/* ── News cards (listing pages) ── */
.listing-grid .news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: var(--radius-xl, 1rem);
  overflow: hidden;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.listing-grid .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.listing-grid .news-card__image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #fde8ec 0%, #f3f4f6 100%);
  position: relative;
}

.listing-grid .news-card__badge {
  position: absolute;
  top: 0.75rem;
  inset-inline-start: 0.75rem;
}

.listing-grid .news-card__body {
  padding: 1.15rem 1.25rem 0.5rem;
  flex: 1 1;
}

.listing-grid .news-card__read {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1.25rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary, #1a7a3a);
  text-decoration: none;
}

/* ── Empty states ── */
.listing-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px dashed var(--color-border, #e5e7eb);
  border-radius: var(--radius-xl, 1rem);
  color: var(--neutral-500, #6b7280);
  background: var(--neutral-50, #fafafa);
}

/* ── Breadcrumb polish ── */
.breadcrumb {
  margin-bottom: 1rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  -webkit-margin-start: 0.5rem;
          margin-inline-start: 0.5rem;
  color: var(--neutral-400, #9ca3af);
}

.breadcrumb__item a {
  color: var(--neutral-600, #4b5563);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb__item a:hover {
  color: var(--color-primary, #1a7a3a);
}

.breadcrumb__item span[aria-current="page"] {
  color: var(--color-primary, #1a7a3a);
  font-weight: 700;
}

/* ── Hero secondary CTA ── */
.hero-slider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-slider__actions .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  background: transparent;
}

.hero-slider__actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ── Page hero with image ── */
.page-hero--image {
  min-height: 16rem;
  display: flex;
  align-items: flex-end;
}

.page-hero--image .page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.92) 0%,
    rgba(26, 122, 58, 0.55) 45%,
    rgba(26, 122, 58, 0.25) 100%
  );
}

.page-hero--image .page-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 2.5rem 3rem;
}

.page-hero--image .page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.page-hero--image .page-hero__intro {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

/* ── Footer refinement ── */
.site-footer__brand p {
  line-height: 1.65;
  max-width: 28rem;
}

.site-footer__column a:hover {
  color: var(--color-primary-light, #22a04a);
}

/* ── Section rhythm ── */
.homepage-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.homepage-section--alt {
  background: var(--neutral-50, #fafafa);
}

.homepage-match .match-card-interactive__link {
  max-width: 36rem;
  margin-inline: auto;
}

.homepage-match__countdown {
  margin-top: 1.5rem;
}

/* ── Competition cards ── */
.listing-card--highlight {
  border-color: rgba(26, 122, 58, 0.35);
  background: linear-gradient(180deg, #fff 0%, #fff8f9 100%);
  box-shadow: 0 8px 28px rgba(26, 122, 58, 0.08);
}

.listing-card__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--color-primary, #1a7a3a);
  color: #fff;
}

.listing-card__meta {
  font-size: 0.875rem;
  color: var(--neutral-500, #6b7280);
  margin: 0;
}

/* ── CMS / prose content ── */
.content-page__body :where(h2, h3, h4) {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  font-weight: 800;
}

.content-page__body :where(p, ul, ol) {
  line-height: 1.75;
  max-width: 68ch;
}

.content-page__body :where(ul, ol) {
  -webkit-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
}

.content-page__body :where(a:not(.btn)) {
  color: var(--color-primary, #1a7a3a);
  font-weight: 600;
  text-underline-offset: 2px;
}

.content-page__body :where(a:not(.btn):hover) {
  text-decoration: underline;
}

/* ── Header elevation ── */
.site-header {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.97);
}

/* ═══════════════════════════════════════════════════════════════
   Alhijaz FC — Public Visual Redesign 2026
   Editorial sports platform · club identity · broadcast energy
   ═══════════════════════════════════════════════════════════════ */

:root {
  --hc-green: #1a7a3a;
  --hc-green-dark: #0f5a2a;
  --hc-green-glow: rgba(26, 122, 58, 0.35);
  --hc-black: #0a0a0a;
  --hc-charcoal: #141414;
  --hc-yellow: #ffd100;
  --hc-white: #ffffff;
  --hc-cream: #faf8f5;
  --hc-font-display: clamp(2.5rem, 6vw, 4.5rem);
  --hc-font-hero: clamp(2.25rem, 5.5vw, 4rem);
  --hc-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Top News Ticker ── */
.top-news-ticker {
  position: relative;
  z-index: 400;
  background: linear-gradient(90deg, var(--hc-green-dark), var(--hc-green) 40%, var(--hc-green-dark));
  color: var(--hc-white);
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  overflow: hidden;
}

.top-news-ticker__inner {
  display: flex;
  align-items: stretch;
  min-height: 2.5rem;
  max-width: 100%;
  isolation: isolate;
}

/* Static label — never moves */
.top-news-ticker__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  flex-shrink: 0;
  padding: 0.45rem 0.85rem;
  background: var(--hc-green-dark);
  -webkit-border-end: 2px solid rgba(255, 255, 255, 0.18);
          border-inline-end: 2px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
}

.top-news-ticker__crest {
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  flex-shrink: 0;
}

.top-news-ticker__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.15;
}

.top-news-ticker__brand-compact {
  display: none;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--hc-yellow);
}

.top-news-ticker__label {
  color: var(--hc-yellow);
  font-size: 0.68rem;
}

.top-news-ticker__category {
  opacity: 0.92;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

/* Scrolling viewport — clips animated content */
.top-news-ticker__viewport {
  flex: 1 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding-inline: 1rem 0.75rem;
}

.top-news-ticker__marquee {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker-marquee-ltr linear infinite;
}

.top-news-ticker__viewport:hover .top-news-ticker__marquee {
  animation-play-state: paused;
}

.top-news-ticker__sequence {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  -webkit-padding-end: 3rem;
          padding-inline-end: 3rem;
}

.top-news-ticker__static {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}

.top-news-ticker__static .top-news-ticker__link {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes ticker-marquee-ltr {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

[dir="rtl"] .top-news-ticker__marquee {
  animation-name: ticker-marquee-rtl;
}

@keyframes ticker-marquee-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.top-news-ticker__sep {
  flex-shrink: 0;
  padding-inline: 1.25rem;
  opacity: 0.45;
  font-size: 0.55rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.top-news-ticker__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.5rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.top-news-ticker__link:hover {
  opacity: 0.92;
  color: var(--hc-white);
}

.top-news-ticker__headline {
  font-weight: 600;
}

.top-news-ticker__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  color: var(--hc-yellow);
  flex-shrink: 0;
}

.top-news-ticker__arrow {
  transition: transform 0.2s var(--hc-ease);
}

.top-news-ticker__link:hover .top-news-ticker__arrow {
  transform: translateX(4px);
}

[dir="rtl"] .top-news-ticker__link:hover .top-news-ticker__arrow {
  transform: translateX(-4px);
}

@media (max-width: 640px) {
  .top-news-ticker__brand {
    padding: 0.45rem 0.65rem;
    gap: 0.4rem;
  }

  .top-news-ticker__brand-text {
    display: none;
  }

  .top-news-ticker__brand-compact {
    display: block;
  }

  .top-news-ticker__viewport {
    padding-inline: 0.65rem 0.5rem;
  }

  .top-news-ticker__sequence {
    -webkit-padding-end: 2rem;
            padding-inline-end: 2rem;
  }

  .top-news-ticker__sep {
    padding-inline: 0.85rem;
  }

  .top-news-ticker__cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-news-ticker__marquee {
    animation: none;
  }
}

/* ── Premium Navigation ── */
.site-header {
  background: rgba(10, 10, 10, 0.94) !important;
  color: var(--hc-white) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
  -webkit-backdrop-filter: blur(16px) !important;
          backdrop-filter: blur(16px) !important;
}

.site-header a {
  color: inherit !important;
}

.site-header a:hover {
  color: var(--hc-yellow) !important;
}

.site-header__inner {
  min-height: 80px !important;
}

.site-header__logo img {
  border-radius: 0 !important;
  border: none;
  box-shadow: none;
  background: transparent;
  transition: transform 0.3s var(--hc-ease);
}

.site-header__logo:hover img {
  transform: scale(1.05);
}

.desktop-nav__link {
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  position: relative;
}

.desktop-nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  inset-inline: 0;
  height: 2px;
  background: var(--hc-green);
  transform: scaleX(0);
  transition: transform 0.25s var(--hc-ease);
}

.desktop-nav__link:hover::after,
.desktop-nav__link--active::after {
  transform: scaleX(1);
}

.site-header__tickets {
  background: var(--hc-green) !important;
  color: var(--hc-white) !important;
  border: none !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.site-header__tickets:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--hc-green-glow);
}

.site-header--matchday {
  border-bottom-color: var(--hc-green) !important;
}

.site-header__matchday-strip {
  display: none;
}

.mobile-nav__trigger {
  color: var(--hc-white);
}

/* ── Editorial Hero ── */
.hero-editorial {
  position: relative;
  min-height: clamp(26rem, 72vh, 44rem);
  overflow: hidden;
  background: var(--hc-black);
}

.hero-editorial__pitch-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.06;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255, 255, 255, 0.4) 79px, rgba(255, 255, 255, 0.4) 80px),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(255, 255, 255, 0.15) 31%, transparent 32%);
}

.hero-editorial__slide {
  position: relative;
}

.hero-editorial__media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 75% 50%, rgba(26, 122, 58, 0.35), transparent 60%),
    linear-gradient(115deg, #0a0a0a 0%, #0a1f12 35%, #0f5a2a 70%, #22a04a 100%);
  background-size: cover;
  background-position: center;
}

.hero-editorial__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(26, 122, 58, 0.25) 100%);
}

.hero-editorial__shape {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  width: 45%;
  background: linear-gradient(135deg, transparent 40%, rgba(26, 122, 58, 0.2) 100%);
  -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.hero-editorial__watermark {
  position: absolute !important;
  inset-inline-end: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(22rem, 42vw, 36rem) !important;
  height: clamp(22rem, 42vw, 36rem) !important;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
  border-radius: 0;
  object-fit: contain;
}

.hero-editorial__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  min-height: clamp(26rem, 72vh, 44rem);
  padding-block: clamp(3rem, 8vw, 5rem);
}

.hero-editorial__copy {
  max-width: 38rem;
}

.hero-editorial__title {
  font-size: var(--hc-font-hero);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0.5rem 0 1rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-editorial__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  max-width: 32rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.hero-editorial__actions {
  gap: 1rem;
}

.hero-editorial__dots {
  bottom: 1.5rem !important;
}

@media (max-width: 768px) {
  .hero-editorial__watermark {
    width: min(70vw, 18rem) !important;
    height: min(70vw, 18rem) !important;
    inset-inline-end: -1rem;
    opacity: 0.08;
  }
  .hero-editorial__shape {
    width: 60%;
  }
}

/* ── Matchday Broadcast Hero ── */
.matchday-hero {
  min-height: clamp(28rem, 78vh, 48rem) !important;
}

.matchday-hero::before {
  content: "MATCHDAY";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(4rem, 18vw, 12rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.matchday-hero__bg {
  background:
    radial-gradient(ellipse 100% 80% at 50% 120%, rgba(26, 122, 58, 0.6), transparent),
    linear-gradient(180deg, #0a0a0a 0%, #0a1f12 50%, #0f5a2a 100%) !important;
}

.matchday-hero__score {
  font-size: clamp(2.5rem, 8vw, 4.5rem) !important;
  font-weight: 900 !important;
}

.matchday-hero__vs {
  font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
  font-weight: 900;
  color: var(--hc-yellow);
}

/* ── Match Showcase ── */
.match-showcase {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--hc-cream);
  overflow: hidden;
}

.match-showcase__bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(5rem, 20vw, 14rem);
  font-weight: 900;
  color: rgba(26, 122, 58, 0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}

.match-showcase__grid {
  display: grid;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .match-showcase__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}

.match-showcase__panel {
  background: var(--hc-white);
  border-radius: 0;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s var(--hc-ease), box-shadow 0.35s ease;
}

.match-showcase__panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

.match-showcase__panel--next {
  border-top: 4px solid var(--hc-green);
}

.match-showcase__panel--result {
  background: var(--hc-charcoal);
  color: var(--hc-white);
  border-top: 4px solid var(--hc-yellow);
}

.match-showcase__panel--win {
  border-top-color: #22c55e;
}

.match-showcase__panel--loss {
  border-top-color: var(--hc-charcoal);
}

.match-showcase__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hc-green);
  margin-bottom: 0.35rem;
}

.match-showcase__panel--result .match-showcase__eyebrow {
  color: var(--hc-yellow);
}

.match-showcase__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.match-showcase__versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: 1rem;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.match-showcase__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.match-showcase__crest {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--hc-cream);
  display: grid;
  place-items: center;
  border: 2px solid rgba(26, 122, 58, 0.2);
  transition: transform 0.3s var(--hc-ease);
}

.match-showcase__panel:hover .match-showcase__crest {
  transform: scale(1.06);
}

.match-showcase__crest--away {
  background: #eee;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--hc-charcoal);
}

.match-showcase__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.match-showcase__vs {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--hc-green);
}

.match-showcase__comp,
.match-showcase__venue {
  font-size: 0.75rem;
  opacity: 0.75;
}

.match-showcase__countdown {
  margin-bottom: 1.25rem;
}

.match-showcase__outcome {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-radius: 2px;
}

.match-showcase__outcome--win {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
}

.match-showcase__outcome--loss {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.match-showcase__outcome--draw {
  background: rgba(255, 255, 255, 0.1);
  color: #d1d5db;
}

.match-showcase__scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: 1rem;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.match-showcase__score-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.match-showcase__score-num {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.match-showcase__score-sep {
  font-size: 2rem;
  opacity: 0.5;
}

.match-showcase__score-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.match-showcase__report-link {
  color: var(--hc-yellow);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.match-showcase__report-link:hover {
  text-decoration: underline;
}

/* ── Editorial News ── */
.editorial-news {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--hc-white);
  overflow: hidden;
}

.editorial-news__bg-word {
  position: absolute;
  top: 1rem;
  inset-inline-end: 5%;
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  line-height: 1;
}

.editorial-news__header {
  margin-bottom: 2rem;
}

.editorial-news__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hc-green);
  margin-bottom: 0.35rem;
}

.editorial-news__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.02em;
}

.editorial-news__hero-grid {
  display: grid;
  grid-gap: 1.25rem;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .editorial-news__hero-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: stretch;
  }
}

.editorial-news__featured {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--hc-charcoal);
  color: var(--hc-white);
  overflow: hidden;
  transition: transform 0.35s var(--hc-ease);
}

.editorial-news__featured:hover {
  transform: translateY(-3px);
  color: var(--hc-white);
}

.editorial-news__featured-media {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(26, 122, 58, 0.5), transparent),
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8)),
    url("/brand/logo.png") center / 40% no-repeat,
    var(--hc-green-dark);
  position: relative;
}

.editorial-news__featured-badge {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  background: var(--hc-green);
  color: var(--hc-white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
}

.editorial-news__featured-body {
  padding: 1.5rem;
}

.editorial-news__featured-body h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 900;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.editorial-news__featured-body p {
  opacity: 0.85;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.editorial-news__read {
  font-weight: 800;
  color: var(--hc-yellow);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.editorial-news__secondary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.editorial-news__secondary-item {
  flex: 1 1;
  padding: 1.25rem;
  background: var(--hc-cream);
  -webkit-border-start: 4px solid var(--hc-green);
          border-inline-start: 4px solid var(--hc-green);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}

.editorial-news__secondary-item:hover {
  background: #f0ebe3;
  transform: translateX(4px);
  color: inherit;
}

[dir="rtl"] .editorial-news__secondary-item:hover {
  transform: translateX(-4px);
}

.editorial-news__secondary-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.editorial-news__secondary-item p {
  font-size: 0.875rem;
  opacity: 0.75;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.editorial-news__grid {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin-bottom: 2rem;
}

.editorial-news__card {
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.editorial-news__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  color: inherit;
}

.editorial-news__card-media {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--hc-green-dark), var(--hc-charcoal));
}

.editorial-news__card h4 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
}

.editorial-news__card-link {
  display: block;
  padding: 0 1rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hc-green);
  text-transform: uppercase;
}

.editorial-news__actions {
  text-align: center;
}

/* ── Player Spotlight Full Bleed ── */
.player-spotlight {
  position: relative;
  padding: 0 !important;
  margin-block: 0;
  background: var(--hc-black) !important;
  color: var(--hc-white) !important;
  overflow: hidden;
  min-height: clamp(22rem, 50vh, 32rem);
}

.player-spotlight__inner {
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-items: end !important;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  min-height: clamp(22rem, 50vh, 32rem);
  padding-block: clamp(2.5rem, 6vw, 4rem) !important;
  position: relative;
}

@media (min-width: 900px) {
  .player-spotlight__inner {
    grid-template-columns: minmax(0, 48%) minmax(0, 52%) !important;
    align-items: end !important;
    gap: clamp(1rem, 3vw, 2rem);
  }
}

.player-spotlight__content {
  position: relative;
  z-index: 3;
  isolation: isolate;
}

@media (min-width: 900px) {
  .player-spotlight__content::after {
    content: "";
    position: absolute;
    inset-inline-end: -12%;
    top: 0;
    bottom: 0;
    width: 45%;
    background: linear-gradient(to inline-end, rgba(0, 0, 0, 0.75), transparent);
    pointer-events: none;
    z-index: -1;
  }
}

.player-spotlight__eyebrow {
  color: var(--hc-yellow) !important;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.player-spotlight__name {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.player-spotlight__number {
  display: block;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 0.85;
  color: var(--hc-green);
  margin-bottom: 0.25rem;
}

.player-spotlight__headline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.9;
  margin: 0 0 0.5rem;
}

.player-spotlight__meta {
  opacity: 0.75;
  margin-bottom: 1.25rem;
}

.player-spotlight__bg-number {
  position: absolute;
  inset-inline-start: -0.15em;
  top: -0.35em;
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.035);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.player-spotlight__visual {
  position: relative !important;
  inset: auto !important;
  min-height: clamp(16rem, 42vw, 28rem);
  z-index: 1 !important;
}

.player-spotlight__glow {
  position: absolute;
  inset-inline: 5%;
  bottom: 0;
  height: 88%;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 65% at 50% 85%, rgba(26, 122, 58, 0.55), transparent 68%),
    radial-gradient(ellipse 45% 40% at 50% 100%, rgba(26, 122, 58, 0.28), transparent 72%);
  pointer-events: none;
}

.player-spotlight__photo-wrap {
  position: absolute;
  inset-inline: -4%;
  bottom: 0;
  height: 100%;
  z-index: 2;
  display: block;
  text-decoration: none;
  transition: transform 0.4s var(--hc-ease);
}

.player-spotlight:hover .player-spotlight__photo-wrap {
  transform: translateY(-4px) scale(1.015);
}

.player-spotlight__photo {
  object-fit: contain !important;
  object-position: bottom center !important;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.55));
}

.player-spotlight__silhouette {
  position: absolute;
  inset-inline: 10%;
  bottom: 0;
  height: 92%;
  z-index: 2;
  background: linear-gradient(to top, rgba(26, 122, 58, 0.18), transparent 55%);
  -webkit-clip-path: polygon(18% 100%, 82% 100%, 100% 8%, 0 8%);
          clip-path: polygon(18% 100%, 82% 100%, 100% 8%, 0 8%);
  display: grid;
  place-items: center;
}

.player-spotlight__silhouette-number {
  font-size: clamp(8rem, 22vw, 14rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}

.player-spotlight__others {
  position: relative;
  z-index: 2;
  padding-bottom: 1.5rem !important;
}

@media (max-width: 899px) {
  .player-spotlight__inner {
    grid-template-areas:
      "content"
      "visual";
  }

  .player-spotlight__content {
    grid-area: content;
  }

  .player-spotlight__visual {
    grid-area: visual;
    min-height: clamp(14rem, 55vw, 20rem);
  }

  .player-spotlight__photo-wrap {
    inset-inline: 0;
  }
}

/* ── Stats Dramatic ── */
.homepage-stats-showcase--dramatic {
  background: linear-gradient(135deg, var(--hc-green-dark) 0%, var(--hc-green) 50%, #0a1f12 100%) !important;
  color: var(--hc-white) !important;
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5rem) 0 !important;
}

.homepage-stats-showcase--dramatic .container {
  position: relative;
  z-index: 1;
}

.section-header--light .section-header__title,
.section-header--light .section-header__eyebrow {
  color: var(--hc-white) !important;
}

.section-header--light .section-header__line {
  background: var(--hc-yellow) !important;
}

/* ── Homepage rhythm ── */
.homepage--redesign .homepage-section--standings {
  background: var(--hc-cream);
  padding: clamp(3rem, 6vw, 4rem) 0;
}

.homepage--redesign .homepage-section--store {
  background: var(--hc-white);
  padding: clamp(3rem, 6vw, 4rem) 0;
}

.homepage-store-grid {
  display: grid;
  grid-gap: 1.25rem;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.homepage-campaign--strip {
  background: linear-gradient(90deg, var(--hc-green-dark), var(--hc-green));
  color: var(--hc-white);
}

.homepage-campaign--strip .homepage-campaign__title {
  color: var(--hc-white);
}

/* ── Newsletter dramatic ── */
.homepage-newsletter--dramatic {
  background: var(--hc-black) !important;
  position: relative;
  overflow: hidden;
}

.homepage-newsletter--dramatic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(26, 122, 58, 0.3), transparent);
  pointer-events: none;
}

/* ── Footer premium ── */
.site-footer {
  background: var(--hc-charcoal) !important;
  color: var(--hc-white) !important;
  border-top: 3px solid var(--hc-green);
}

.site-footer__club-name {
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer a:hover {
  color: var(--hc-yellow) !important;
}

/* ── Hide old homepage ticker ── */
.homepage--redesign .homepage-ticker,
.homepage--redesign .homepage-quick {
  display: none !important;
}

/* ── Micro-interactions ── */
.homepage--redesign .btn-glow:hover {
  box-shadow: 0 8px 32px var(--hc-green-glow);
}

.homepage--redesign .news-card:hover,
.homepage--redesign .listing-card:hover {
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .match-showcase__panel:hover,
  .editorial-news__featured:hover,
  .editorial-news__card:hover,
  .site-header__logo:hover img,
  .player-listing__card:hover,
  .news-listing-editorial__featured:hover,
  .news-listing-editorial__card:hover {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Secondary Pages — Editorial Page Heroes
   ═══════════════════════════════════════════════════════════════ */

.page-hero--editorial {
  position: relative;
  min-height: clamp(14rem, 32vh, 22rem);
  background: var(--hc-black);
  color: var(--hc-white);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-bottom: 3px solid var(--hc-green);
}

.page-hero--editorial.page-hero--image .page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero--editorial.page-hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(26, 122, 58, 0.35) 100%);
}

.page-hero__pitch-lines {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255, 255, 255, 0.5) 59px, rgba(255, 255, 255, 0.5) 60px);
}

.page-hero__shape {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  width: 40%;
  background: linear-gradient(135deg, transparent 35%, rgba(26, 122, 58, 0.25) 100%);
  -webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-hero__bg-word {
  position: absolute;
  top: 50%;
  inset-inline-end: 3%;
  transform: translateY(-50%);
  font-size: clamp(4rem, 16vw, 11rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.08em;
  pointer-events: none;
  line-height: 1;
}

.page-hero__bg-logo {
  position: absolute;
  top: 50%;
  inset-inline-end: clamp(1rem, 4vw, 3rem);
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 0;
  opacity: 0.12;
  width: clamp(7rem, 20vw, 13rem);
  height: clamp(7rem, 20vw, 13rem);
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.25);
}

.page-hero__bg-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(1) brightness(1.35);
}

.page-hero--editorial .page-hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.page-hero__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hc-yellow);
  margin-bottom: 0.5rem;
}

.page-hero--editorial .page-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.05;
}

.page-hero--editorial .page-hero__intro {
  max-width: 36rem;
  margin-top: 0.75rem;
  opacity: 0.85;
  line-height: 1.6;
}

.page-hero--news { border-bottom-color: var(--hc-green); }
.page-hero--fixtures { border-bottom-color: var(--hc-yellow); }
.page-hero--results { border-bottom-color: #22c55e; }
.page-hero--players { border-bottom-color: var(--hc-green); }
.page-hero--sponsors { border-bottom-color: var(--hc-yellow); }

/* ── Content page wrappers ── */
.content-page-wrap {
  animation: page-enter 0.45s var(--hc-ease) both;
}

@keyframes page-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.content-page-wrap__breadcrumb {
  padding-top: 0.75rem;
}

.content-page {
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.content-page--news { background: var(--hc-white); }
.content-page--fixtures { background: var(--hc-cream); }
.content-page--results { background: var(--hc-charcoal); color: var(--hc-white); }
.content-page--players { background: var(--hc-black); color: var(--hc-white); }
.content-page--sponsors { background: var(--hc-cream); }

.content-page--results .listing-empty,
.content-page--players .listing-empty {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Editorial News Listing Page ── */
.news-listing-editorial__hero-grid {
  display: grid;
  grid-gap: 1.25rem;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 900px) {
  .news-listing-editorial__hero-grid {
    grid-template-columns: 1.45fr 1fr;
  }
}

.news-listing-editorial__featured {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--hc-white);
  background: var(--hc-charcoal);
  overflow: hidden;
  transition: transform 0.35s var(--hc-ease);
}

.news-listing-editorial__featured:hover {
  transform: translateY(-4px);
  color: var(--hc-white);
}

.news-listing-editorial__featured-media {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(26, 122, 58, 0.55), transparent),
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.85)),
    url("/brand/logo.png") center / 35% no-repeat,
    var(--hc-green-dark);
  position: relative;
}

.news-listing-editorial__badge {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  background: var(--hc-green);
  color: var(--hc-white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
}

.news-listing-editorial__featured-body {
  padding: 1.5rem;
}

.news-listing-editorial__featured-body h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.news-listing-editorial__featured-body p {
  opacity: 0.85;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.news-listing-editorial__read {
  font-weight: 800;
  color: var(--hc-yellow);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.news-listing-editorial__secondary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-listing-editorial__secondary-item {
  flex: 1 1;
  padding: 1.25rem;
  background: var(--hc-cream);
  -webkit-border-start: 4px solid var(--hc-green);
          border-inline-start: 4px solid var(--hc-green);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}

.news-listing-editorial__secondary-item:hover {
  background: #f0ebe3;
  transform: translateX(4px);
  color: inherit;
}

[dir="rtl"] .news-listing-editorial__secondary-item:hover {
  transform: translateX(-4px);
}

.news-listing-editorial__secondary-item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.news-listing-editorial__secondary-item p {
  font-size: 0.875rem;
  opacity: 0.75;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-listing-editorial__grid {
  display: grid;
  grid-gap: 1.25rem;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.news-listing-editorial__card {
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-listing-editorial__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  color: inherit;
}

.news-listing-editorial__card-media {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--hc-green-dark), var(--hc-charcoal));
}

.news-listing-editorial__card h3 {
  padding: 1rem 1rem 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
}

.news-listing-editorial__card-excerpt {
  padding: 0 1rem;
  font-size: 0.875rem;
  opacity: 0.75;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-listing-editorial__card-link {
  display: block;
  padding: 0.75rem 1rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hc-green);
  text-transform: uppercase;
}

/* ── Match Listings (Fixtures / Results) ── */
.match-listing__featured {
  background: var(--hc-white);
  border-top: 4px solid var(--hc-green);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.match-listing--results .match-listing__featured {
  background: var(--hc-charcoal);
  color: var(--hc-white);
  border-top-color: var(--hc-yellow);
}

.match-listing__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hc-green);
  margin-bottom: 0.5rem;
}

.match-listing--results .match-listing__eyebrow {
  color: var(--hc-yellow);
}

.match-listing__featured-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: 1rem;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.match-listing__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-weight: 700;
}

.match-listing__crest {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--hc-cream);
  display: grid;
  place-items: center;
  border: 2px solid rgba(26, 122, 58, 0.2);
  overflow: hidden;
}

.match-listing__crest--away {
  background: #eee;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--hc-charcoal);
}

.match-listing__vs {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--hc-green);
}

.match-listing--results .match-listing__vs {
  color: var(--hc-yellow);
}

.match-listing__datetime {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.match-listing__comp,
.match-listing__venue {
  font-size: 0.875rem;
  opacity: 0.75;
  margin: 0 0 0.25rem;
}

.match-listing__actions {
  margin-top: 1.25rem;
}

.match-listing__featured .btn {
  min-width: min(100%, 14rem);
}

.match-listing--fixtures .match-fixtures-grid,
.match-listing--results .match-fixtures-grid {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}

@media (min-width: 768px) {
  .match-listing--fixtures .match-fixtures-grid,
  .match-listing--results .match-fixtures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.content-page--fixtures .match-card-interactive {
  background: var(--hc-white);
  border-top: 3px solid var(--hc-green);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s var(--hc-ease), box-shadow 0.3s ease;
}

.content-page--fixtures .match-card-interactive--hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.content-page--results .match-card-interactive {
  background: rgba(255, 255, 255, 0.06);
  color: var(--hc-white);
  border-top: 3px solid var(--hc-yellow);
  border-radius: 0;
  transition: transform 0.3s var(--hc-ease), background 0.3s ease;
}

.content-page--results .match-card-interactive--hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.content-page--results .match-card-interactive__competition {
  color: var(--hc-yellow);
}

.content-page--results .match-card-interactive__score {
  font-size: 1.75rem;
  font-weight: 900;
}

/* ── Player Listing ── */
.player-listing {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.player-listing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(18rem, 42vw, 22rem);
  padding: 0;
  text-decoration: none;
  color: var(--hc-white);
  background: var(--hc-charcoal);
  overflow: hidden;
  border-bottom: 3px solid var(--hc-green);
  transition: transform 0.35s var(--hc-ease), box-shadow 0.35s ease;
}

.player-listing__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(26, 122, 58, 0.25);
  color: var(--hc-white);
}

.player-listing__card:hover .player-listing__spotlight {
  opacity: 1;
}

.player-listing__card:hover .player-listing__photo-stage {
  transform: translateY(-6px) scale(1.02);
}

.player-listing__card--featured {
  grid-column: 1 / -1;
  min-height: clamp(20rem, 40vh, 28rem);
}

@media (min-width: 900px) {
  .player-listing__card--featured {
    grid-column: span 2;
    min-height: clamp(22rem, 36vh, 30rem);
  }

  .player-listing__card--featured .player-listing__photo-stage {
    height: 92%;
  }
}

.player-listing__visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.player-listing__spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.92;
  background:
    radial-gradient(ellipse 85% 72% at 50% 88%, rgba(26, 122, 58, 0.58), transparent 68%),
    radial-gradient(ellipse 60% 48% at 50% 100%, rgba(26, 122, 58, 0.32), transparent 74%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.06), transparent 55%);
  transition: opacity 0.35s ease;
}

.player-listing__bg-number {
  position: absolute;
  top: -5%;
  inset-inline-end: -5%;
  z-index: 2;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.player-listing__photo-stage {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 86%;
  z-index: 3;
  transition: transform 0.35s var(--hc-ease);
}

.player-listing__photo {
  object-fit: contain !important;
  object-position: bottom center !important;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.5));
}

.player-listing__content {
  position: relative;
  z-index: 4;
  margin-top: auto;
  width: 100%;
  padding: 1.25rem;
  isolation: isolate;
}

.player-listing__content::before {
  content: "";
  position: absolute;
  inset: -1.5rem 0 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.62) 45%,
    transparent 100%
  );
  pointer-events: none;
}

.player-listing__number {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--hc-green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.player-listing__name {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
}

.player-listing__position {
  font-size: 0.875rem;
  color: var(--hc-yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

@media (max-width: 768px) {
  .player-listing {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
  }

  .player-listing__card {
    min-height: clamp(16rem, 52vw, 18rem);
  }

  .player-listing__photo-stage {
    height: 80%;
  }

  .player-listing__content {
    padding: 1rem;
  }

  .player-listing__name {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }
}

@media (min-width: 1366px) {
  .player-listing__card {
    min-height: 20rem;
  }

  .player-listing__photo-stage {
    height: 88%;
  }
}

/* ── Player Spotlight photo cutout (club-redesign overrides) ── */
.player-spotlight__photo-wrap {
  position: absolute;
  inset-inline: -4%;
  bottom: 0;
  height: 100%;
  overflow: visible;
  pointer-events: auto;
  z-index: 2;
}

.player-spotlight__photo {
  object-fit: contain !important;
  object-position: bottom center !important;
  display: block;
}

/* ── Staff listing ── */
.staff-listing {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.staff-listing__card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.staff-listing__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.staff-listing__photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #f3f4f6;
}

.staff-listing__photo--placeholder {
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(26, 122, 58, 0.35);
  background: linear-gradient(180deg, #fff8f9 0%, #f3f4f6 100%);
}

.staff-listing__body {
  padding: 1rem 1.1rem 1.15rem;
}

.staff-listing__group {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary, #1a7a3a);
}

.staff-listing__name {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.staff-listing__role {
  margin: 0;
  font-size: 0.875rem;
  color: var(--neutral-500, #6b7280);
}

/* ── Player profile hero enhancement ── */
.player-profile-hero {
  background: var(--hc-black) !important;
  border-bottom: 3px solid var(--hc-green);
}

.player-profile-hero__name {
  font-size: clamp(2.5rem, 6vw, 4rem) !important;
  text-transform: uppercase;
}

/* ── Sponsors page ── */
.content-page--sponsors .listing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.content-page--sponsors .listing-card {
  background: var(--hc-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  min-width: 160px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-page--sponsors .listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .content-page-wrap {
    animation: none;
  }
}

/* Alhijaz FC — Premium experience layer */

/* ── Matchday Hero ── */
.matchday-hero {
  position: relative;
  min-height: clamp(22rem, 55vh, 36rem);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.matchday-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26, 122, 58, 0.45), transparent),
    linear-gradient(135deg, #0d0d0d 0%, #0a1f12 40%, #0f5a2a 100%);
  background-size: cover;
  background-position: center;
}

.matchday-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.35) 100%);
}

.matchday-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.matchday-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.matchday-hero__status--live {
  color: var(--hc-yellow, #ffd100);
  animation: matchday-pulse 1.5s ease-in-out infinite;
}

@keyframes matchday-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.matchday-hero__versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: 1rem 1.5rem;
  gap: 1rem 1.5rem;
  align-items: center;
  max-width: 52rem;
  margin-inline: auto;
}

.matchday-hero__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.matchday-hero__crest {
  width: clamp(4.5rem, 12vw, 5.5rem);
  height: clamp(4.5rem, 12vw, 5.5rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.matchday-hero__crest img {
  border-radius: 50%;
  object-fit: cover;
}

.matchday-hero__crest-placeholder {
  font-size: 2rem;
  font-weight: 900;
}

.matchday-hero__team-name {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 800;
  line-height: 1.25;
}

.matchday-hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.matchday-hero__vs,
.matchday-hero__score {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0.05em;
}

.matchday-hero__score {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.matchday-hero__datetime,
.matchday-hero__venue {
  font-size: 0.875rem;
  opacity: 0.9;
}

.matchday-hero__slogan {
  margin: 1.25rem auto 0;
  max-width: 40ch;
  font-size: 1.05rem;
  font-weight: 600;
}

.matchday-hero__countdown {
  margin-top: 1.5rem;
}

.matchday-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.matchday-hero--static .matchday-hero__status--live {
  animation: none;
}

@media (max-width: 640px) {
  .matchday-hero__versus {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .matchday-hero__team--away {
    order: 3;
  }
  .matchday-hero__center {
    order: 2;
  }
}

/* ── Player Spotlight ── */
.player-spotlight {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.player-spotlight__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .player-spotlight__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.player-spotlight__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f87171;
  margin-bottom: 0.75rem;
}

.player-spotlight__name {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

.player-identity-badge {
  display: block;
  width: 32px;
  height: 32px;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
  object-position: center;
}

.player-spotlight__identity-badge {
  margin: 0 0 0.65rem;
}

.player-spotlight__number {
  display: block;
  font-size: 0.45em;
  opacity: 0.35;
  line-height: 1;
}

.player-spotlight__headline {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.player-spotlight__meta {
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.player-spotlight__visual {
  position: relative;
  min-height: clamp(16rem, 35vw, 24rem);
}

/* ── Player Spotlight photo cutout ── */
.player-spotlight__photo-wrap {
  position: absolute;
  inset-inline: -4%;
  bottom: 0;
  height: 100%;
  overflow: visible;
  pointer-events: auto;
  z-index: 2;
}

.player-spotlight__photo {
  object-fit: contain !important;
  object-position: bottom center !important;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.55));
}

.player-spotlight__silhouette {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}

.player-spotlight__glow {
  position: absolute;
  inset: 10% 20%;
  background: radial-gradient(circle, rgba(26, 122, 58, 0.5), transparent 70%);
  filter: blur(24px);
}

.player-spotlight__bg-number {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: 900;
  opacity: 0.08;
  line-height: 1;
}

.player-spotlight__others {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.player-spotlight__mini {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.player-spotlight__mini:hover {
  background: rgba(26, 122, 58, 0.35);
}

/* ── Campaign banner ── */
.homepage-campaign {
  background: linear-gradient(90deg, #0f5a2a, #1a7a3a);
  color: #fff;
  padding-block: 1rem;
}

.homepage-campaign__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.homepage-campaign__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

/* ── Match Center ── */
.match-center__hero {
  background: var(--hc-white, #fff);
  border-top: 4px solid var(--hc-green, #1a7a3a);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.match-center__scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: 1rem;
  gap: 1rem;
  align-items: center;
}

.match-center__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.match-center__team-name {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
}

.match-center__middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.match-center__score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.match-center__score-sep {
  opacity: 0.45;
}

.match-center__vs {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--hc-green, #1a7a3a);
}

.match-center__status {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(26, 122, 58, 0.08);
  color: var(--hc-green, #1a7a3a);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-center__status--live {
  background: var(--hc-green, #1a7a3a);
  color: #fff;
}

.match-center__datetime {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.85;
}

.match-center__facts {
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.match-center__fact {
  background: #fff;
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
}

.match-center__fact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neutral-500, #6b7280);
  margin-bottom: 0.25rem;
}

.match-center__fact-value {
  font-size: 0.95rem;
  font-weight: 700;
}

.match-center__section {
  margin-top: 2.5rem;
}

.match-center__section--highlight {
  background: #fff;
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 1rem;
  padding: 1.5rem;
}

.match-center__section--empty,
.match-center__note {
  color: var(--neutral-600, #4b5563);
  line-height: 1.6;
}

.match-center__note {
  margin: 1rem 0 0;
}

.match-center__actions {
  margin-top: 2rem;
}

.match-center__section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.match-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-border-start: 2px solid var(--color-border, #e5e7eb);
          border-inline-start: 2px solid var(--color-border, #e5e7eb);
}

.match-timeline__item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.65rem 0 0.65rem 1rem;
}

.match-timeline__minute {
  font-weight: 800;
  color: var(--color-primary, #1a7a3a);
  min-width: 2.5rem;
}

.match-stats-grid {
  display: grid;
  grid-gap: 0.65rem;
  gap: 0.65rem;
}

.match-stats-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-gap: 0.5rem;
  gap: 0.5rem;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border, #e5e7eb);
  font-size: 0.9rem;
}

.match-stats-row__home,
.match-stats-row__away {
  font-weight: 800;
  text-align: center;
}

.match-stats-row__label {
  text-align: center;
  color: var(--neutral-600, #4b5563);
  font-weight: 600;
}

/* ── Trophy Room ── */
.trophy-room__grid {
  display: grid;
  grid-gap: 1.25rem;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}

.trophy-card {
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 122, 58, 0.1);
}

.trophy-card__visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #fde8ec, #f3f4f6);
  display: grid;
  place-items: center;
}

.trophy-card__year {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary, #1a7a3a);
  opacity: 0.85;
}

.trophy-card__body {
  padding: 1.15rem 1.25rem 1.25rem;
}

.trophy-card__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

/* ── Club Timeline ── */
.club-timeline {
  position: relative;
  -webkit-padding-start: 0.5rem;
          padding-inline-start: 0.5rem;
}

.club-timeline__track {
  position: absolute;
  inset-inline-start: 4.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary, #1a7a3a), transparent);
}

.club-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.club-timeline__item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  grid-gap: 1.25rem;
  gap: 1.25rem;
  padding-bottom: 2rem;
}

.club-timeline__year {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-primary, #1a7a3a);
}

.club-timeline__content h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

/* ── Formation Pitch ── */
.formation-pitch__field {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, minmax(3.5rem, 1fr));
  grid-gap: 0.5rem;
  gap: 0.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #1a5f2a 0%, #145a24 100%);
  border: 2px solid rgba(255, 255, 255, 0.25);
  min-height: 22rem;
}

.formation-pitch__label {
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--color-primary, #1a7a3a);
}

.formation-pitch__player {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.35rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
  font-size: 0.65rem;
  text-align: center;
  transition: background 0.15s ease;
}

.formation-pitch__player:hover {
  background: rgba(26, 122, 58, 0.55);
}

.formation-pitch__number {
  font-weight: 900;
  font-size: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  .matchday-hero__status--live {
    animation: none;
  }
  .trophy-card:hover {
    transform: none;
  }
  .site-intro {
    animation: none;
    opacity: 0;
  }
}

/* ── Player profile ── */
.player-profile {
  --player-profile-red: #1a7a3a;
  --player-profile-red-glow: rgba(26, 122, 58, 0.45);
}

.player-profile-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.player-profile-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 78% 55%, var(--player-profile-red-glow), transparent 68%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(26, 122, 58, 0.18), transparent 60%),
    linear-gradient(145deg, #0a0a0a 0%, #140008 42%, #3d0010 100%);
}

.player-profile-hero__bg-number {
  position: absolute;
  inset-inline-end: 8%;
  top: 50%;
  transform: translateY(-52%);
  font-size: clamp(9rem, 24vw, 18rem);
  font-weight: 900;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.05);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.player-profile-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(1.75rem, 4vw, 2.75rem) clamp(2rem, 5vw, 3.5rem);
}

.player-profile-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  padding: 0.45rem 0.85rem 0.45rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.player-profile-hero__back:hover {
  background: rgba(26, 122, 58, 0.28);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.player-profile-hero__back-icon {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  -webkit-border-start: 2px solid currentColor;
          border-inline-start: 2px solid currentColor;
  -webkit-border-after: 2px solid currentColor;
          border-block-end: 2px solid currentColor;
  transform: rotate(45deg);
  -webkit-margin-start: 0.15rem;
          margin-inline-start: 0.15rem;
}

[dir="rtl"] .player-profile-hero__back-icon {
  transform: rotate(-135deg);
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0.15rem;
          margin-inline-end: 0.15rem;
}

.player-profile-hero__layout {
  display: grid;
  grid-gap: clamp(1.5rem, 4vw, 2.5rem);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: end;
}

@media (min-width: 900px) {
  .player-profile-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 48%);
    gap: clamp(2rem, 4vw, 3.5rem);
    min-height: clamp(20rem, 38vw, 30rem);
  }
}

.player-profile-hero__content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

.player-profile-hero__name {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.player-profile-hero__name-line {
  display: block;
}

.player-profile-hero__identity-badge {
  margin: 0.85rem 0 0.65rem;
}

.player-profile-hero__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  letter-spacing: 0.02em;
}

.player-profile-hero__intro {
  margin: 1rem 0 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.55;
}

.player-profile-hero__visual {
  position: relative;
  min-height: clamp(16rem, 52vw, 22rem);
  z-index: 1;
}

@media (min-width: 900px) {
  .player-profile-hero__visual {
    min-height: clamp(20rem, 36vw, 28rem);
  }
}

.player-profile-hero__glow {
  position: absolute;
  inset: 8% 12% 0;
  background: radial-gradient(circle at 50% 75%, var(--player-profile-red-glow), transparent 72%);
  filter: blur(28px);
  z-index: 0;
}

.player-profile-hero__photo-wrap {
  position: absolute;
  inset-inline: -2%;
  bottom: 0;
  height: 100%;
  z-index: 2;
}

.player-profile-hero__photo {
  object-fit: contain !important;
  object-position: bottom center !important;
  display: block;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.55));
}

.player-profile-hero__silhouette {
  position: absolute;
  inset-inline: 8%;
  bottom: 0;
  height: 92%;
  z-index: 1;
  background: linear-gradient(to top, rgba(26, 122, 58, 0.2), transparent 58%);
  -webkit-clip-path: polygon(16% 100%, 84% 100%, 100% 6%, 0 6%);
          clip-path: polygon(16% 100%, 84% 100%, 100% 6%, 0 6%);
  display: grid;
  place-items: center;
}

.player-profile-hero__silhouette-number {
  font-size: clamp(7rem, 20vw, 12rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
}

/* Profile body sections */
.player-profile-body {
  background: linear-gradient(180deg, #f8f8f8 0%, #fff 12rem);
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2.5rem, 6vw, 4rem);
}

.player-profile-body__inner {
  display: grid;
  grid-gap: clamp(2rem, 4vw, 3rem);
  gap: clamp(2rem, 4vw, 3rem);
}

.player-profile-section__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #111;
}

.player-profile-info__grid,
.player-profile-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 9.5rem), 1fr));
  grid-gap: 0.85rem;
  gap: 0.85rem;
  margin: 0;
}

.player-profile-info__card,
.player-profile-stats__card {
  padding: 1.1rem 1.15rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.player-profile-info__card dt,
.player-profile-stats__card dt {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.player-profile-info__card dd,
.player-profile-stats__card dd {
  margin: 0.35rem 0 0;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 900;
  color: var(--player-profile-red, #1a7a3a);
  line-height: 1.15;
}

.player-profile-about__content {
  max-width: 46rem;
  padding: 1.35rem 1.5rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.player-profile-about__content p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #374151;
}

.player-profile-squad__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 14rem), 1fr));
  grid-gap: 0.85rem;
  gap: 0.85rem;
}

.player-profile-squad__card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.player-profile-squad__card:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 122, 58, 0.25);
  box-shadow: 0 12px 28px rgba(26, 122, 58, 0.1);
}

.player-profile-squad__thumb {
  position: relative;
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.75rem;
  border-radius: 0.45rem;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1a1a, #3d0010);
}

.player-profile-squad__photo {
  object-fit: contain !important;
  object-position: bottom center !important;
}

.player-profile-squad__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-weight: 900;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.35);
}

.player-profile-squad__details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.player-profile-squad__number {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--player-profile-red, #1a7a3a);
  letter-spacing: 0.04em;
}

.player-profile-squad__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 899px) {
  .player-profile-hero__bg-number {
    inset-inline-end: 4%;
    top: auto;
    bottom: 12%;
    transform: none;
    font-size: clamp(6rem, 28vw, 10rem);
    opacity: 0.7;
  }

  .player-profile-squad__card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .player-profile-hero__back,
  .player-profile-squad__card {
    transition: none;
  }
}

/* ── Site intro ── */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #0d0d0d;
  animation: site-intro-fade 1.2s ease forwards;
  pointer-events: none;
}

.site-intro__crest {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), rgba(26, 122, 58, 0.4));
  box-shadow: 0 0 40px rgba(26, 122, 58, 0.35);
}

.site-intro__mark {
  font-size: 2rem;
}

.site-intro__name {
  margin-top: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.85rem;
}

@keyframes site-intro-fade {
  0% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* ── First team page ── */
.first-team-page__intro {
  padding-block: 2.5rem 1.5rem;
}

.first-team-page__intro h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
}

.first-team-page__meta {
  margin-top: 0.75rem;
  color: var(--color-text-muted, #6b7280);
  font-weight: 600;
}

.first-team-formation {
  padding-bottom: 3rem;
}

.first-team-formation h2 {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.first-team-page__empty {
  padding-bottom: 3rem;
  color: var(--color-text-muted, #6b7280);
}

