:root {
  --red: #d51123;
  --red-soft: rgba(213, 17, 35, 0.65);
  --red-glow: rgba(213, 17, 35, 0.35);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  background: #f4f6fb;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid rgba(213, 17, 35, 0.82);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 14px;
  right: 14px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.24);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.hero-shell {
  position: relative;
  min-height: 100vh;
  background: #07090d;
}

/* ─── Header ──────────────────────────────────────── */

.site-header {
  position: relative;
  z-index: 4;
  width: 100%;
  background: linear-gradient(180deg,
    rgba(5, 8, 13, 0.55) 0%,
    rgba(200, 14, 30, 0.04) 100%
  );
  backdrop-filter: blur(10px);
}

/* gradient border bottom */
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--red) 25%,
    rgba(200, 14, 30, 0.6) 50%,
    var(--red) 75%,
    transparent 100%
  );
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1150px, calc(100% - 48px));
  min-height: 96px;
  margin-inline: auto;
}

/* ─── Brand ───────────────────────────────────────── */

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 13px;
  transition: opacity 0.2s;
}
.brand:hover { opacity: 0.85; }

.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--red-glow));
  transition: filter 0.3s;
}

.brand:hover img {
  filter: drop-shadow(0 0 18px rgba(200, 14, 30, 0.6));
}

.brand strong, .brand small { display: block; }

.brand strong {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Nav ─────────────────────────────────────────── */

.main-nav {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  margin-inline-start: 70px;
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { transform: scaleX(0.6); }

.main-nav a.is-active {
  color: #fff;
  font-weight: 900;
  text-shadow: 0 0 18px var(--red-glow);
}
.main-nav a.is-active::after {
  transform: scaleX(1);
  box-shadow: 0 0 8px var(--red-glow);
}

/* ─── Nav dropdown ────────────────────────────────── */

.nav-item { position: relative; }

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-inline-end: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-item:hover .chevron,
.lang-trigger[aria-expanded="true"] .chevron {
  transform: rotate(225deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 150px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: rgba(10, 14, 22, 0.96);
  border: 1px solid var(--line);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 10;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(10, 14, 22, 0.96);
  border-inline-start: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  position: relative;
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, padding 0.15s;
}

.dropdown li a::after { display: none; }
.dropdown li a:hover {
  background: rgba(200, 14, 30, 0.1);
  color: #fff;
  padding-inline-start: 18px;
}

.dropdown li a:hover::before {
  content: "";
  position: absolute;
  inset-inline-start: 6px;
  top: 50%;
  translate: 0 -50%;
  width: 3px;
  height: 14px;
  background: var(--red);
  border-radius: 2px;
}

/* ─── Header tools ────────────────────────────────── */

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.tool-button:hover {
  background: rgba(200, 14, 30, 0.15);
  box-shadow: 0 0 12px var(--red-glow);
}

/* ─── Shared popup card ───────────────────────────── */

.popup-wrap { position: relative; }

.popup-card {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 20;
  background: rgba(10, 14, 22, 0.97);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.popup-card.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ─── Auth card ───────────────────────────────────── */

.auth-card {
  width: 260px;
  padding: 20px 18px 16px;
}

.popup-title {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  color: #fff;
}

.auth-field {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 12px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 10px;
  cursor: text;
  transition: border-color 0.2s;
}

.auth-field:focus-within {
  border-color: rgba(255,255,255,0.3);
}

.auth-field input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font: 700 13px/1 "Cairo", Tahoma, Arial, sans-serif;
  direction: rtl;
  min-width: 0;
}

.auth-field input::placeholder {
  color: rgba(255,255,255,0.3);
}

.btn-enter {
  display: block;
  width: 100%;
  height: 38px;
  margin-top: 14px;
  border: none;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-enter:hover { background: #c8000f; }
.btn-enter:active { transform: scale(0.98); }

.auth-links {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.auth-links a {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.15s;
}

.auth-links a:hover { color: #fff; }

/* ─── Language trigger & card ─────────────────────── */

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-trigger:hover,
.lang-trigger[aria-expanded="true"] {
  background: rgba(200, 14, 30, 0.15);
  border-color: rgba(200, 14, 30, 0.5);
  box-shadow: 0 0 10px var(--red-glow);
}

.lang-card {
  min-width: 140px;
  padding: 6px;
  margin: 0;
  list-style: none;
}

.lang-card li button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lang-card li button small {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 900;
}

.lang-card li button:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.lang-card li button.is-active {
  color: #fff;
  background: rgba(227,6,19,0.18);
}

.lang-card li button.is-active small {
  color: var(--red);
}

/* ─── Search overlay ──────────────────────────────── */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(5, 8, 13, 0.88);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(600px, calc(100% - 48px));
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  transform: translateY(-12px) scale(0.97);
  transition: transform 0.25s;
}

.search-overlay.is-open .search-box {
  transform: translateY(0) scale(1);
}

.search-box .icon-search {
  flex-shrink: 0;
  opacity: 0.5;
}

.search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font: 700 18px/1 "Cairo", Tahoma, Arial, sans-serif;
  direction: rtl;
  min-width: 0;
}

.search-box input::placeholder {
  color: rgba(255,255,255,0.25);
}

.search-close {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.search-close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.search-hint {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-weight: 600;
}

/* ─── CSS Icons ───────────────────────────────────── */

.icon-user,
.icon-search,
.icon-lock,
.icon-close,
.icon-share {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* user */
.icon-user::before {
  content: "";
  position: absolute;
  inset: 2px 5px 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.icon-user::after {
  content: "";
  position: absolute;
  inset: 10px 2px 1px;
  border: 2px solid currentColor;
  border-radius: 999px 999px 0 0;
}

/* search */
.icon-search::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  top: 1px;
  left: 1px;
}
.icon-search::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  right: 1px;
  bottom: 3px;
}

/* lock */
.icon-lock::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 3px;
  right: 3px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 3px;
}
.icon-lock::after {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  right: 5px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: none;
  border-radius: 99px 99px 0 0;
}

/* close X */
.icon-close::before,
.icon-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.icon-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.icon-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.icon-share::before,
.icon-share::after {
  content: "";
  position: absolute;
}

.icon-share::before {
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-share::after {
  width: 13px;
  height: 2px;
  top: 8px;
  left: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.social-card {
  display: grid;
  grid-template-columns: repeat(4, 38px);
  gap: 8px;
  width: auto;
  min-width: 0;
  padding: 10px;
}

.social-card a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  transition: background 0.2s, transform 0.2s;
}

.social-card a:hover {
  background: var(--red);
  transform: translateY(-2px);
}

/* ─── Responsive ──────────────────────────────────── */

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    padding: 0;
    transition: max-height 0.35s ease, padding 0.3s ease;
  }

  .main-nav.is-open {
    max-height: 600px;
    padding: 8px 0 16px;
    border-top: 1px solid var(--line);
  }

  .main-nav > a,
  .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
  }

  .nav-item { position: static; }

  .dropdown {
    position: static;
    translate: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown::before { display: none; }

  .nav-item.is-open .dropdown { max-height: 200px; }
  .nav-item.is-open .chevron { transform: rotate(225deg) translateY(-2px); }

  .dropdown li a {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .header-tools {
    grid-column: 2;
    grid-row: 1;
  }

}

@media (max-width: 620px) {
  .header-inner {
    width: min(100% - 28px, 1150px);
  }

  .brand span { display: none; }
}

/* ══════════════════════════════════════════════════
   Hero Slider
   ══════════════════════════════════════════════════ */

.hero-slider {
  position: relative;
  height: calc(100vh - 96px);
  min-height: 520px;
  overflow: hidden;
  background: #07090d;
}

.slides-wrap {
  position: absolute;
  inset: 0;
}

/* ── Slide ── */

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 0;
}

.slide.is-active {
  opacity: 1;
  z-index: 1;
}

.slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.07);
  transition: transform 6.5s ease;
}

.slide.is-active .slide-img {
  transform: scale(1);
}

/* ── Overlay ── */

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(5, 8, 13, 0.82) 0%,
      rgba(5, 8, 13, 0.12) 28%,
      rgba(5, 8, 13, 0.35) 58%,
      rgba(5, 8, 13, 0.97) 100%
    );
}

/* ── Content ── */

.slide-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1150px, calc(100% - 48px));
  z-index: 3;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(88px, 14vh, 140px);
}

.slide-content {
  max-width: 560px;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.75s 0.35s ease, opacity 0.75s 0.35s ease;
}

.slide.is-active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 13px;
  background: var(--red);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 4px 14px var(--red-glow);
}

.slide-title {
  margin: 0 0 18px;
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.9),
    0 4px 24px rgba(0,0,0,0.7);
}

.slide-excerpt {
  margin: 0 0 30px;
  max-width: 460px;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 600;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 6px rgba(0,0,0,0.85);
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Buttons ── */

.btn-solid {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 26px;
  background: var(--red);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px var(--red-glow);
}

.btn-solid:hover {
  background: #a80b18;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 14, 30, 0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* ── Arrows ── */

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(10, 14, 22, 0.5);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.slider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
  transform: translateY(-50%) scale(1.1);
}

.is-prev { inset-inline-start: 28px; }
.is-next { inset-inline-end: 28px; }

.arr-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 1px;
}

.is-prev .arr-icon { transform: rotate(45deg) translate(-1px, 1px); }
.is-next .arr-icon { transform: rotate(-135deg) translate(-1px, 1px); }

/* ── Footer: dots + progress + counter ── */

.slider-footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1150px, calc(100% - 48px));
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 32px;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.25s, width 0.3s, border-radius 0.3s, box-shadow 0.25s;
}

.dot.is-active {
  width: 26px;
  border-radius: 4px;
  background: var(--red);
  box-shadow: 0 0 10px var(--red-glow);
}

.slider-progress-track {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--red-glow);
}

.slide-counter {
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

#slide-num {
  color: #fff;
  font-size: 15px;
}

/* ── Responsive ── */

.nm-countdown.is-live::after {
  content: attr(data-live-label);
}

/* Final icon-only header/footer controls */
.tool-label,
.social-card a span,
.ft-soc span {
  display: none !important;
}

.site-ui-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.site-ui-icon svg,
.tool-button svg,
.social-card a svg,
.ft-soc svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-card a svg,
.ft-soc svg {
  width: 18px;
  height: 18px;
}

.site-social-icon--brand svg,
.social-card [data-social-kind="facebook"] svg,
.social-card [data-social-kind="instagram"] svg,
.social-card [data-social-kind="youtube"] svg,
.social-card [data-social-kind="tiktok"] svg,
.social-card [data-social-kind="x"] svg,
.ft-soc[data-social-kind="facebook"] svg,
.ft-soc[data-social-kind="instagram"] svg,
.ft-soc[data-social-kind="youtube"] svg,
.ft-soc[data-social-kind="tiktok"] svg,
.ft-soc[data-social-kind="x"] svg {
  fill: currentColor;
  stroke: none;
}

.tool-button {
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
}

.social-card {
  width: auto !important;
  min-width: 0 !important;
  grid-template-columns: repeat(4, 40px) !important;
  gap: 10px !important;
  padding: 14px !important;
}

.social-card a,
.ft-soc {
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  padding: 0 !important;
}

.social-card a {
  width: 40px !important;
  min-width: 40px !important;
  height: 40px !important;
}

.ft-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ft-soc {
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
}

/* Temporary Hebrew-only public site. Remove this block when language switching returns. */
.lang-trigger,
.lang-card {
  display: none !important;
}

/* Center icon glyphs regardless of hover transforms or older pill styles */
.social-card a,
.ft-soc {
  position: relative !important;
  overflow: hidden !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.social-card a svg,
.ft-soc svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  flex: none !important;
}

.social-card a:hover svg,
.ft-soc:hover svg {
  transform: translate(-50%, -50%) !important;
}

.accessibility-symbol {
  display: grid !important;
  place-items: center !important;
  width: 30px !important;
  height: 30px !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.accessibility-symbol::before,
.accessibility-symbol::after {
  content: none !important;
}

.accessibility-symbol svg {
  display: block !important;
  width: 31px !important;
  height: 31px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.15 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.accessibility-trigger {
  display: grid !important;
  place-items: center !important;
}

/* Clear text-first header tools */
.header-tools {
  gap: 10px;
}

.tool-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: auto !important;
  min-width: 42px;
  height: 36px;
  padding: 0 11px !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  white-space: nowrap;
}

.tool-button:hover {
  border-color: rgba(213, 17, 35, 0.6) !important;
  background: rgba(213, 17, 35, 0.18) !important;
}

.tool-label {
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.lang-trigger {
  min-width: 72px;
  justify-content: center;
}

.social-card a,
.ft-soc {
  min-width: 124px !important;
}

.social-card a {
  justify-content: flex-start !important;
}

.ft-social {
  flex-wrap: wrap;
  max-width: 320px;
}

.ft-soc {
  justify-content: flex-start !important;
}

/* Icon polish */
.site-ui-icon {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
}

.site-ui-icon::before,
.site-ui-icon::after {
  display: none !important;
}

.site-ui-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}

.site-ui-icon svg circle,
.site-ui-icon svg path,
.site-ui-icon svg rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-card {
  grid-template-columns: 1fr !important;
  min-width: 168px;
}

.social-card a,
.ft-soc {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px !important;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.social-card a {
  width: 100% !important;
  height: 38px;
  padding: 0 12px;
}

.ft-soc {
  width: auto !important;
  min-width: 40px;
  height: 34px;
  padding: 0 10px;
}

.social-card a svg,
.ft-soc svg {
  width: 15px;
  height: 15px;
  display: block;
  overflow: visible;
  flex: 0 0 auto;
}

.social-card a span,
.ft-soc span {
  display: inline-block;
}

.social-card a svg path,
.ft-soc svg path {
  fill: currentColor;
}

.social-card a svg rect,
.social-card a svg circle,
.ft-soc svg rect,
.ft-soc svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-card a[data-social-kind="youtube"] svg path:last-child,
.ft-soc[data-social-kind="youtube"] svg path:last-child {
  fill: #fff;
}

.social-card a:hover,
.ft-soc:hover {
  color: #fff;
}

.back-top .arr-icon {
  width: 11px !important;
  height: 11px !important;
  border: 0 !important;
  border-top: 3px solid #fff !important;
  border-left: 3px solid #fff !important;
  border-radius: 2px;
  transform: rotate(45deg) translate(2px, 2px);
}

.back-top:hover .arr-icon {
  transform: rotate(45deg) translate(0, 0);
}

/* Internal page polish */
.internal-page {
  text-rendering: optimizeLegibility;
}

.internal-page main {
  isolation: isolate;
}

.site-header,
.site-footer,
.popup-card,
.main-nav a,
.tool-button,
.lang-trigger,
.ft-links a,
.ft-soc {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-header {
  backdrop-filter: blur(14px);
}

.site-shell-ready .site-header {
  animation: siteHeaderIn 0.55s ease both;
}

.site-shell-ready .site-footer {
  animation: siteFooterIn 0.55s ease both;
}

.internal-page a:focus-visible,
.internal-page button:focus-visible,
.internal-page select:focus-visible,
.internal-page input:focus-visible {
  outline: 3px solid rgba(213, 17, 35, 0.32);
  outline-offset: 3px;
}

.internal-page .main-nav a:hover,
.internal-page .ft-links a:hover {
  transform: translateY(-1px);
}

.internal-page .popup-card {
  transform-origin: top center;
}

.internal-page .popup-card.is-open {
  animation: softMenuIn 0.18s ease both;
}

@keyframes siteHeaderIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes siteFooterIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes softMenuIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 768px) {
  .slider-arrow { display: none; }

  .slide-inner {
    padding-bottom: clamp(70px, 12vh, 100px);
  }
}

@media (max-width: 480px) {
  .hero-slider {
    min-height: 460px;
  }

  .slide-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .btn-solid,
  .btn-ghost {
    height: 40px;
    padding: 0 18px;
    font-size: 12px;
  }
}

/* ══════════════════════════════════════════════════
   Next Match
   ══════════════════════════════════════════════════ */

.next-match {
  position: relative;
  overflow: hidden;
  padding: 48px 0 52px;
  background:
    radial-gradient(ellipse 80% 120% at 50% 50%, rgba(200,14,30,0.07) 0%, transparent 65%),
    linear-gradient(180deg, #09101a 0%, #07090d 100%);
}

/* subtle pitch grid */
.next-match::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* top separator line */
.next-match::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent, var(--red) 28%, rgba(200,14,30,0.45) 50%, var(--red) 72%, transparent
  );
}

.nm-inner {
  position: relative;
  z-index: 1;
  width: min(1150px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* ── Header ── */

.nm-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.nm-eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.nm-competition {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

/* ── Match row ── */

.nm-match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  width: 100%;
}

/* ── Team ── */

.nm-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nm-crest {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nm-crest:hover { transform: scale(1.06); }

.nm-crest--home {
  border-color: rgba(200,14,30,0.5);
  box-shadow: 0 0 28px rgba(200,14,30,0.25);
}

.nm-crest--home:hover {
  box-shadow: 0 0 44px rgba(200,14,30,0.42);
}

.nm-crest img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.6));
}

.nm-crest--away {
  font-size: 28px;
  font-weight: 900;
  color: rgba(255,255,255,0.3);
}

.nm-name {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  text-align: center;
}

/* ── Center block ── */

.nm-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nm-vs {
  font-size: clamp(52px, 7vw, 76px);
  font-weight: 900;
  letter-spacing: 8px;
  color: #fff;
  text-shadow:
    0 0 24px rgba(200,14,30,0.7),
    0 0 60px rgba(200,14,30,0.3);
  line-height: 1;
}

.nm-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.nm-meta-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--red);
}

.nm-meta-icon--time {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.nm-meta-icon--time::before,
.nm-meta-icon--time::after {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  width: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: 50% 0;
}

.nm-meta-icon--time::before {
  height: 5px;
  transform: translate(-50%, -1px);
}

.nm-meta-icon--time::after {
  height: 4px;
  transform: translate(-50%, -1px) rotate(90deg);
}

.nm-meta-icon--venue::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.nm-meta-icon--venue::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.nm-time {
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}

.nm-sep-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-block;
  flex-shrink: 0;
}

/* ── Date + action buttons row ── */

.nm-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.nm-date-pill {
  padding: 0 16px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 9px;
  background: rgba(255,255,255,0.05);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.nm-jumbo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}

.nm-jumbo-btn--solid {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px var(--red-glow);
}

.nm-jumbo-btn--solid:hover {
  background: #a80b18;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200,14,30,0.5);
}


/* ── Countdown — compact strip ── */

.nm-countdown {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 22px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.nm-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}

.nm-num {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}

.nm-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
  margin-top: 3px;
}

.nm-colon {
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  opacity: 0.7;
  flex-shrink: 0;
  margin-bottom: 18px;
  padding: 0 2px;
}

.nm-countdown.is-live {
  position: relative;
}

.nm-countdown.is-live::after {
  content: "بدأت المباراة";
  position: absolute;
  inset-block-start: calc(100% + 8px);
  inset-inline: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}


/* ── Responsive ── */

@media (max-width: 768px) {
  .nm-match {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }

  .nm-center {
    grid-column: 1 / -1;
    order: -1;
    gap: 6px;
  }

  .nm-vs { font-size: 34px; }
}

@media (max-width: 480px) {
  .next-match { padding: 40px 0 44px; }
  .nm-inner   { gap: 20px; }
  .nm-unit    { padding: 0 7px; }
  .nm-num     { font-size: 17px; }
  .nm-colon   { font-size: 13px; }
}

/* ══════════════════════════════════════════════════
   Results Slider
   ══════════════════════════════════════════════════ */

.results-section {
  padding: 60px 0 70px;
  position: relative;
  background: #f4f6fb;
  border-top: none;
}

.results-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent, var(--red) 25%, rgba(200,14,30,0.45) 50%, var(--red) 75%, transparent
  );
}

.results-inner {
  width: min(1150px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Header ── */

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.results-title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.results-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 22px;
  background: var(--red);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--red-glow);
}

.res-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.res-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s, width 0.3s, border-radius 0.3s;
}

.res-dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: var(--red);
}

/* ── Slider wrap ── */

.results-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.results-viewport {
  flex: 1;
  overflow: hidden;
}

.results-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ── Arrow buttons ── */

.res-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  background: rgba(10,14,22,0.6);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.res-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 16px var(--red-glow);
  transform: scale(1.08);
}

.res-prev .arr-icon { transform: rotate(45deg) translate(-1px, 1px); }
.res-next .arr-icon { transform: rotate(-135deg) translate(-1px, 1px); }

/* ── Result card ── */

.result-card {
  flex: 0 0 auto;
  min-height: 214px;
  padding: 22px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0)),
    #202738;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: default;
}

.result-card:hover {
  border-color: rgba(15, 23, 42, 0.14);
  background: #242c3f;
  transform: translateY(-3px);
}

/* colored top accent */
.result-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rc-color);
  border-radius: 12px 12px 0 0;
}

.result-card.is-win  { --rc-color: #22c55e; }
.result-card.is-draw { --rc-color: #c7a646; }
.result-card.is-loss { --rc-color: var(--red); }

/* top meta */
.rc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rc-comp {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--rc-color) 18%, transparent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  color: color-mix(in srgb, var(--rc-color) 42%, #fff);
  max-width: 68%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rc-date {
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,0.58);
}

/* match row */
.rc-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rc-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex: 1;
}

.rc-crest {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,0.62);
  overflow: hidden;
}

.rc-crest--sakh {
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.1);
}

.rc-crest img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.rc-name {
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,0.78);
  text-align: center;
  display: -webkit-box;
  min-height: 32px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 100%;
}

/* score */
.rc-score {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 92px;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.rc-dash {
  font-size: 18px;
  color: rgba(255,255,255,0.32);
}

/* details link */
.rc-details-link {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,0.56);
  border-bottom: 1px dashed rgba(255,255,255,0.22);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.rc-details-link--disabled {
  cursor: default;
  opacity: 0.75;
  pointer-events: none;
}

.rc-details-link::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(-135deg) translate(-1px, 1px);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.rc-details-link:hover {
  color: var(--rc-color);
  border-color: color-mix(in srgb, var(--rc-color) 45%, transparent);
}

.rc-details-link:hover::after {
  transform: rotate(-135deg) translate(-3px, 1px);
}

/* ── Results: dark cards on light section ── */

.results-section .results-title { color: #111827; }

.results-section .res-dot { background: rgba(0,0,0,0.14); }
.results-section .res-dot.is-active { background: var(--red); }

.results-section .result-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0)),
    #202738;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
  cursor: default;
}

.results-section .result-card:hover {
  background: #252d40;
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.18);
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .results-slider-wrap { gap: 8px; }
  .res-arrow { width: 34px; height: 34px; }
}

@media (max-width: 480px) {
  .results-section { padding: 44px 0 50px; }
}

/* ══════════════════════════════════════════════════
   News + League Table
   ══════════════════════════════════════════════════ */

.nt-section {
  padding: 60px 0 70px;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.nt-inner {
  width: min(1150px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.club-news {
  display: none;
}

/* ── Shared heading ── */

.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.sec-title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 22px;
  background: var(--red);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--red-glow);
}

.sec-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  transition: opacity 0.2s;
}
.sec-more:hover { opacity: 0.7; }

.sec-meta {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,0.32);
}

/* ── News list ── */

.news-list { display: flex; flex-direction: column; }

.news-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.news-item:first-child { padding-top: 0; }
.news-item:last-child  { border-bottom: none; padding-bottom: 0; }

.ni-thumb {
  flex-shrink: 0;
  width: 96px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.ni-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ni-thumb:hover img { transform: scale(1.07); }

.ni-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ni-cat {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red);
}

.ni-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  color: #111827;
}

.ni-title a { color: inherit; transition: color 0.2s; }
.ni-title a:hover { color: var(--red); }

.ni-date {
  font-size: 11px;
  font-weight: 600;
  color: rgba(0,0,0,0.32);
}

/* ── League Table ── */

.league-table-block {
  position: static;
  width: 100%;
}

.league-table-head {
  margin-bottom: 16px;
}

.league-table-wrap {
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #f7f8fb;
}

.lt-scroll {
  overflow-x: auto;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.lt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.lt-table thead th {
  padding: 4px 8px 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  border-bottom: 2px solid rgba(0,0,0,0.08);
  text-align: center;
  white-space: nowrap;
}

.lt-table thead th.lt-name { text-align: start; }

.lt-table tbody tr { transition: background 0.15s; }
.lt-table tbody tr:hover { background: rgba(15, 23, 42, 0.025); }

.lt-table tbody tr.lt-playoff-row:hover {
  background: transparent;
}

.lt-table tbody td {
  padding: 14px 10px;
  text-align: center;
  color: #4b5563;
  font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.lt-table tbody tr:last-child td { border-bottom: none; }

.lt-playoff-row td {
  padding: 0 8px 12px !important;
  border-bottom: none !important;
  text-align: start !important;
}

.lt-playoff-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-size: 11px;
  font-weight: 900;
}

.lt-playoff-row span::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
}

.lt-rank {
  width: 28px;
  color: rgba(0,0,0,0.28);
  font-size: 11px;
}

.lt-name { text-align: start !important; }

.lt-team-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: #111827;
  font-weight: 700;
  font-size: 15px;
}

.lt-crest {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: rgba(0,0,0,0.36);
}

.lt-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.lt-pts-col {
  font-weight: 900;
  color: #111827;
}

/* Sakhnin row */
.lt-row--sakh { background: rgba(227, 6, 19, 0.06); }

.lt-row--sakh td { color: #111827; font-weight: 700; }

.lt-row--sakh .lt-team-inner { color: var(--red); }

.lt-row--sakh .lt-pts-col { color: var(--red); }

.lt-row--sakh:hover { background: rgba(227, 6, 19, 0.09) !important; }

/* ── Featured news cards ── */

.news-featured-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.news-featured-card {
  position: relative;
  display: block;
  height: 215px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
}

.nf-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}

.news-featured-card:hover .nf-bg { transform: scale(1.06); }

.nf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,8,13,0.08) 0%,
    rgba(5,8,13,0.48) 52%,
    rgba(5,8,13,0.92) 100%
  );
}

.nf-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1;
}

.nf-title {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.48;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}

.nf-date {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}

/* ── League table header right ── */

.lt-head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.lt-full-link { font-size: 11px; }
.lt-full-link.is-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: auto;
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .nt-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .league-table-block { position: static; }
}

@media (max-width: 600px) {
  .news-featured-row {
    grid-template-columns: 1fr;
  }
  .news-featured-card { height: 190px; }
}

@media (max-width: 480px) {
  .nt-section { padding: 44px 0 52px; }
  .ni-thumb { width: 76px; height: 56px; }
  .ni-title { font-size: 13px; }
}

/* ══════════════════════════════════════════════════
   Videos Section
   ══════════════════════════════════════════════════ */

.videos-section {
  padding: 60px 0 70px;
  background: #f4f6fb;
  position: relative;
}

.videos-section .sec-title { color: #000; }
.videos-section .sec-more  { color: #ca0f20; }
.videos-section .sec-more:hover { color: #000; opacity: 1; }

.vid-inner {
  width: min(1150px, calc(100% - 48px));
  margin-inline: auto;
}

/* ── Grid ── */

.vid-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  align-items: start;
}

/* ── Card base ── */

.vid-card {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.vid-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 16px 44px rgba(0,0,0,0.45);
}

/* ── Thumbnail ── */

.vid-thumb-wrap {
  position: relative;
  aspect-ratio: 18 / 9;
  overflow: hidden;
}

.vid-thumb-wrap--sm {
  flex-shrink: 0;
  width: 124px;
  aspect-ratio: 16 / 9;
}

.vid-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.vid-card:hover .vid-thumb { transform: scale(1.05); }

.vid-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 28%, rgba(0,0,0,0.62) 100%);
}

/* ── Play button ── */

.vid-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 24px rgba(200,14,30,0.55);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  z-index: 2;
}

.vid-play-btn:hover {
  background: #a80b18;
  transform: translate(-50%, -50%) scale(1.13);
  box-shadow: 0 6px 32px rgba(200,14,30,0.7);
}

.vid-play-btn--sm {
  width: 36px;
  height: 36px;
}

.vid-triangle {
  display: block;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #fff;
  margin-left: 3px;
}

.vid-triangle--sm {
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-width: 10px;
  margin-left: 2px;
}

/* ── Duration badge ── */

.vid-duration {
  position: absolute;
  bottom: 9px;
  right: 9px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
  z-index: 2;
}

/* ── Featured card info ── */

.vid-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.vid-cat {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red);
}

.vid-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}

.vid-views {
  font-size: 11px;
  font-weight: 600;
  color: #808080;
}

/* ── Sidebar small cards ── */

.vid-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vid-card--small {
  display: flex;
  border-radius: 10px;
}

.vid-info-sm {
  padding: 12px 14px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vid-title-sm {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Video Modal ── */

.vid-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.vid-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.vid-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.vid-modal-box {
  position: relative;
  width: 100%;
  max-width: 920px;
  transform: scale(0.93) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.vid-modal.is-open .vid-modal-box {
  transform: scale(1) translateY(0);
}

.vid-modal-close {
  position: absolute;
  top: -48px;
  inset-inline-end: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.1);
  color: #000;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.vid-modal-close:hover { background: rgba(255,255,255,0.22); }

.vid-frame-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.vid-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .vid-grid { grid-template-columns: 1fr; }
  .vid-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .vid-sidebar { grid-template-columns: 1fr; }
  .vid-thumb-wrap--sm { width: 100px; }
}

@media (max-width: 480px) {
  .videos-section { padding: 44px 0 52px; }
  .vid-play-btn { width: 44px; height: 44px; }
}

/* ══════════════════════════════════════════════════
   Squad Strip
   ══════════════════════════════════════════════════ */

.squad-strip {
  padding: 64px 0 72px;
  background: #fff;
}

.squad-inner {
  width: min(1150px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, 33.333%) 1fr;
  align-items: start;
  gap: 36px;
}

.squad-head {
  grid-column: 1;
  margin: 0;
}

.squad-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.squad-image-arrows {
  position: static;
  display: flex;
  align-items: center;
  gap: 8px;
}

.squad-image-arrows .squad-arrow {
  width: 34px;
  height: 34px;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  box-shadow: none;
}

.squad-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 50%;
  background: #fff;
  color: #111827;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s, border-color 0.18s, background 0.18s, color 0.18s;
}

.squad-all-link {
  color: rgba(15, 23, 42, 0.46);
}

.squad-all-link:hover {
  color: var(--red);
}

.squad-arrow:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

#squad-prev .arr-icon {
  transform: rotate(45deg) translate(-1px, 1px);
}

#squad-next .arr-icon {
  transform: rotate(-135deg) translate(-1px, 1px);
}

.squad-card {
  position: relative;
  grid-column: 1;
  width: 100%;
  min-height: 430px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(155deg, #ffffff 0%, #f7f8fb 45%, #eef1f6 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.1);
  transition: opacity 0.2s, transform 0.2s;
}

.club-shop-panel {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-height: 430px;
  padding: 0;
}

.club-shop-link {
  color: rgba(15, 23, 42, 0.46);
}

.club-shop-link:hover {
  color: var(--red);
}

.club-shop-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-content: stretch;
}

.shop-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 374px;
  padding: 18px 16px 20px;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.shop-fav {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #f1f3f7;
  cursor: pointer;
}

.shop-fav::before {
  content: "♥";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #cbd1dc;
  font-size: 13px;
  line-height: 1;
}

.shop-item__visual {
  display: grid;
  place-items: center;
  width: 100%;
  height: 190px;
  margin: 14px 0 22px;
  position: relative;
}

.shop-item__visual img {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.shop-item__visual--shirt::before,
.shop-item__visual--pants::before,
.shop-item__visual--boots::before {
  content: "";
  position: absolute;
  inset: 6px 14px;
  background: #f7f7f8;
}

.shop-item__visual--shirt::before {
  clip-path: polygon(24% 9%, 38% 0, 62% 0, 76% 9%, 92% 28%, 78% 43%, 72% 34%, 72% 100%, 28% 100%, 28% 34%, 22% 43%, 8% 28%);
  background:
    linear-gradient(90deg, transparent 0 39%, var(--red) 39% 45%, transparent 45% 55%, var(--red) 55% 61%, transparent 61%),
    #f9fafb;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.shop-item__visual--boots::before {
  inset: 62px 8px 44px;
  border-radius: 44px 18px 14px 22px;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(227, 6, 19, 0.72) 42% 58%, transparent 58%),
    #222936;
  box-shadow: -28px 24px 0 -2px #cdd3df, 32px 18px 0 -4px #d4dae5;
  transform: rotate(-7deg);
}

.shop-item__visual--pants::before {
  inset: 10px 42px;
  clip-path: polygon(18% 0, 82% 0, 82% 100%, 57% 100%, 50% 42%, 43% 100%, 18% 100%);
  background: var(--red);
}

.shop-cat {
  color: var(--red) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.shop-item strong {
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.shop-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 20px;
  font-size: 13px;
  font-weight: 900;
}

.shop-price del {
  color: #b8bec8;
}

.shop-price span {
  color: var(--red);
}

.shop-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 36px;
  margin-top: auto;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.shop-cart:hover {
  background: #c8000f;
}

.ticket-coming-grid {
  align-items: stretch;
}

.ticket-coming-card {
  isolation: isolate;
  align-items: flex-start;
  min-height: 374px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    #131b2b;
  color: #fff;
  text-align: right;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ticket-coming-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 0, 28, 0.42);
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.22);
}

.ticket-coming-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: -1;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.ticket-card-glow {
  position: absolute;
  inset-inline-start: -34px;
  top: -46px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(230, 0, 28, 0.34);
  filter: blur(28px);
  opacity: 0.65;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.ticket-coming-card:hover .ticket-card-glow {
  transform: translate(18px, 18px) scale(1.12);
  opacity: 0.9;
}

.ticket-card-icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: var(--red);
  box-shadow: 0 18px 32px rgba(230, 0, 28, 0.28);
}

.ticket-card-icon::before,
.ticket-card-icon::after,
.ticket-card-icon span::before,
.ticket-card-icon span::after {
  content: "";
  position: absolute;
  background: #fff;
}

.ticket-card-icon::before,
.ticket-card-icon::after {
  inset-inline: 13px;
  height: 3px;
  border-radius: 999px;
}

.ticket-card-icon::before {
  top: 17px;
}

.ticket-card-icon::after {
  bottom: 17px;
}

.ticket-card-icon span::before,
.ticket-card-icon span::after {
  top: 13px;
  bottom: 13px;
  width: 3px;
  border-radius: 999px;
}

.ticket-card-icon span::before {
  inset-inline-start: 18px;
}

.ticket-card-icon span::after {
  inset-inline-end: 18px;
  opacity: 0.55;
}

.ticket-coming-card .shop-cat {
  color: #ffb4bf !important;
}

.ticket-coming-card strong {
  color: #fff;
  font-size: 23px;
  text-align: start;
}

.ticket-coming-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.ticket-coming-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.squad-card.is-switching {
  opacity: 0.45;
  transform: translateY(4px);
}

.squad-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.18), transparent 34%),
    radial-gradient(circle at 78% 16%, rgba(15, 23, 42, 0.11), transparent 26%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
  pointer-events: none;
}

.squad-number {
  position: absolute;
  top: 22px;
  inset-inline-start: 22px;
  z-index: 1;
  color: rgba(227, 6, 19, 0.16);
  font-size: 96px;
  font-weight: 900;
  line-height: 0.8;
}

.squad-watermark {
  position: absolute;
  z-index: 0;
  top: 58px;
  left: 50%;
  width: 260px;
  height: 260px;
  object-fit: contain;
  transform: translateX(-50%);
  opacity: 0.075;
  filter: grayscale(1) contrast(1.15);
  pointer-events: none;
}

.squad-card img {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 58px;
  width: min(310px, 92%);
  max-height: 390px;
  object-fit: contain;
  object-position: bottom center;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.18));
  transition: transform 0.28s;
}

.squad-card img.squad-watermark {
  z-index: 0;
  bottom: auto;
  max-height: none;
  filter: grayscale(1) contrast(1.15);
}

.squad-card:hover img {
  transform: translateX(-50%) scale(1.035);
}

.squad-meta {
  position: absolute;
  z-index: 2;
  inset-inline: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(8px);
}

.squad-meta strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.squad-meta span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .squad-inner {
    grid-template-columns: minmax(280px, 420px);
    justify-content: start;
  }

  .club-shop-panel {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .squad-strip {
    padding: 48px 0 56px;
  }

  .squad-inner {
    width: min(100% - 28px, 1150px);
    grid-template-columns: 1fr;
  }

  .squad-card {
    min-height: 410px;
  }

  .club-shop-panel {
    padding: 22px;
  }

  .club-shop-items {
    grid-template-columns: 1fr;
  }

  .shop-item {
    min-height: 190px;
  }

  .squad-controls {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

}

/* ══════════════════════════════════════════════════
   Partners + Newsletter
   ══════════════════════════════════════════════════ */

.partners-newsletter {
  padding: 62px 0 72px;
  background: #f4f6fb;
}

.pn-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 26px;
  width: min(1150px, calc(100% - 48px));
  margin-inline: auto;
}

.partners-block {
  display: grid;
  align-content: start;
}

.partners-panel,
.newsletter-panel {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #f7f8fb;
}

.partners-panel {
  padding: 30px 0;
}

.pn-head {
  margin-bottom: 16px;
}

.partners-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: partnersMove 26s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 160px;
  height: 110px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #fff;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.partner-logo--image img {
  width: 100%;
  height: 100%;
  padding: 16px;
  transform-origin: center;
}

.partner-logo--image span {
  position: absolute;
  inset-inline: 10px;
  bottom: 10px;
  padding: 7px 8px;
  border-radius: 10px;
  background: rgba(10, 16, 28, 0.86);
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.18s, transform 0.18s;
  text-align: center;
}

.partner-logo--image:hover span {
  opacity: 1;
  transform: translateY(0);
}

.partner-logo:nth-child(2n) {
  color: var(--red);
}

@keyframes partnersMove {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

.newsletter-panel {
  position: relative;
  display: grid;
  align-content: center;
  padding: 34px 30px;
  background:
    radial-gradient(circle at 16% 18%, rgba(227, 6, 19, 0.14), transparent 30%),
    linear-gradient(145deg, #121a29, #07090d);
}

.newsletter-panel::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  pointer-events: none;
}

.newsletter-kicker {
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 12px 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.newsletter-panel h2 {
  position: relative;
  z-index: 1;
  margin: 10px 0 22px;
  color: #fff;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
}

.newsletter-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 0 12px;
}

.newsletter-form input:first-child {
  grid-column: 1 / -1;
}

.newsletter-form input {
  min-width: 0;
  height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.48);
}

.newsletter-form button {
  height: 48px;
  min-width: 96px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #c8000f;
}

@media (max-width: 900px) {
  .pn-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .partners-newsletter {
    padding: 48px 0 56px;
  }

  .pn-inner {
    width: min(100% - 28px, 1150px);
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════
   Footer
   ══════════════════════════════════════════════════ */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 58px 0 26px;
  background:
    radial-gradient(circle at 18% 18%, rgba(227, 6, 19, 0.18), transparent 30%),
    linear-gradient(145deg, #111827, #05070b);
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.45;
  pointer-events: none;
}

.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1150px, calc(100% - 48px));
  margin-inline: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 7px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  color: rgba(255,255,255,0.42);
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 780px) {
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-contact {
    justify-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

}

/* Footer redesign */
.site-footer {
  padding: 54px 0 24px;
  background:
    radial-gradient(circle at var(--fx, 18%) 24%, rgba(213, 17, 35, 0.2), transparent 26%),
    radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #101725 0%, #07090d 100%);
  animation: footerGlow 9s ease-in-out infinite alternate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  display: block;
  background:
    radial-gradient(circle at 22% 34%, rgba(213, 17, 35, 0.18), transparent 28%),
    radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.055), transparent 26%);
  filter: blur(2px);
  animation: footerAura 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), rgba(227, 6, 19, 0.25), transparent);
}

.footer-inner {
  grid-template-columns: 1.2fr 1.7fr 0.9fr;
  align-items: start;
  gap: 34px;
  padding-bottom: 28px;
}

.footer-club {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-club-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-club-head img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-club-head strong {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.footer-club p {
  max-width: 310px;
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  transition: background 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-col,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-col h3,
.footer-contact h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.footer-col a,
.footer-contact span {
  color: rgba(255,255,255,0.56);
  font-size: 12px;
  font-weight: 800;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact {
  justify-items: start;
  text-align: start;
}

.footer-bottom {
  border-top: 0;
  padding-top: 18px;
}

.floating-top-button {
  position: fixed;
  z-index: 250;
  right: 22px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--red);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(213, 17, 35, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-top-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(213, 17, 35, 0.36);
}

.top-arrow {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
}

.top-arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(45deg) translate(2px, 2px);
}

@keyframes footerGlow {
  from { --fx: 16%; }
  to { --fx: 42%; }
}

@keyframes footerAura {
  from { transform: translate3d(-2%, 0, 0) scale(1); opacity: 0.82; }
  to { transform: translate3d(3%, -3%, 0) scale(1.08); opacity: 1; }
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 620px) {
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1150px);
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .floating-top-button {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final polish */
.results-section,
.nt-section,
.videos-section,
.players-section,
.squad-strip,
.partners-newsletter {
  scroll-margin-top: 96px;
}

::selection {
  background: rgba(213, 17, 35, 0.28);
  color: inherit;
}

.sec-head {
  min-height: 34px;
}

.result-card,
.news-featured-card,
.league-table-wrap,
.vid-card,
.squad-card,
.club-shop-panel,
.partners-panel,
.newsletter-panel {
  will-change: transform;
}

.site-footer {
  padding: 50px 0 22px;
  background:
    radial-gradient(circle at 22% 20%, rgba(213, 17, 35, 0.16), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.055), transparent 22%),
    linear-gradient(180deg, #101723 0%, #07090d 100%);
}

.site-footer::before {
  inset: -22% -6%;
  filter: blur(12px);
  opacity: 0.72;
}

.footer-inner,
.footer-bottom {
  width: min(1150px, calc(100% - 48px));
}

.footer-inner {
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-club-head img {
  width: 58px;
  height: 58px;
}

.footer-col a,
.footer-contact span,
.footer-club p {
  color: rgba(255,255,255,0.62);
}

.floating-top-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.floating-top-button:hover {
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.24);
}

.top-arrow::before {
  border-color: var(--red);
}

.newsletter-panel {
  padding: 28px;
}

.newsletter-kicker {
  margin-inline: 6px;
}

.newsletter-form {
  padding: 0 6px;
}

.newsletter-form input {
  background: rgba(255,255,255,0.1);
}

.newsletter-form button {
  box-shadow: 0 12px 26px rgba(213, 17, 35, 0.22);
}

.lt-table tbody td {
  vertical-align: middle;
}

.vid-card,
.shop-item,
.partner-logo {
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.shop-item:hover,
.partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

/* Cookie notice */
.cookie-notice {
  position: fixed;
  z-index: 245;
  left: 50%;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(720px, calc(100% - 48px));
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(213, 17, 35, 0.18), transparent 38%),
    rgba(8, 13, 22, 0.94);
  color: #fff;
  box-shadow: 0 24px 64px rgba(0,0,0,0.32);
  backdrop-filter: blur(14px);
  transform: translate(-50%, 18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.cookie-notice.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.cookie-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.cookie-copy strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
}

.cookie-copy p {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-btn {
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.13);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.cookie-btn--primary {
  border-color: var(--red);
  background: var(--red);
}

.cookie-btn--soft {
  background: rgba(255,255,255,0.1);
}

.cookie-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.68);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 275;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, visibility 0.22s;
}

.cookie-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 14, 0.72);
  backdrop-filter: blur(10px);
}

.cookie-modal__box {
  position: relative;
  width: min(560px, 100%);
  max-height: min(680px, calc(100vh - 36px));
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: #0b111c;
  color: #fff;
  box-shadow: 0 32px 90px rgba(0,0,0,0.45);
}

.cookie-modal__close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.cookie-modal__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  font-weight: 900;
}

.cookie-modal__box h2 {
  margin: 16px 0 10px;
  font-size: 24px;
  font-weight: 900;
}

.cookie-modal__content {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.cookie-modal__content a,
.cookie-modal__policy {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-modal__policy {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 900;
}

.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

@media (max-width: 720px) {
  .cookie-notice {
    left: 14px;
    right: 14px;
    bottom: 76px;
    grid-template-columns: auto 1fr;
    width: auto;
    transform: translateY(18px);
  }

  .cookie-notice.is-visible {
    transform: translateY(0);
  }

  .cookie-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

.cookie-btn {
    flex: 1;
  }
}

/* Accessibility widget */
.accessibility-widget {
  position: fixed;
  z-index: 270;
  left: 18px;
  bottom: 26px;
  display: grid;
  justify-items: center;
  gap: 12px;
  direction: rtl;
  isolation: isolate;
}

.accessibility-trigger {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(213, 17, 35, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}

.accessibility-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(213, 17, 35, 0.36);
}

.accessibility-symbol {
  position: relative;
  width: 29px;
  height: 29px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.accessibility-symbol::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: translateX(-50%);
}

.accessibility-symbol::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(currentColor, currentColor) center 11px / 3px 9px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) center 14px / 17px 3px no-repeat,
    linear-gradient(135deg, transparent 43%, currentColor 45% 58%, transparent 60%) 7px 19px / 8px 8px no-repeat,
    linear-gradient(45deg, transparent 43%, currentColor 45% 58%, transparent 60%) 14px 19px / 8px 8px no-repeat;
}

.accessibility-panel {
  display: grid;
  gap: 10px;
  width: 248px;
  max-height: calc(100dvh - 112px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 10px 8px 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #eef2f6;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.22);
  position: absolute;
  left: 0;
  bottom: 72px;
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 23, 42, 0.32) transparent;
}

.accessibility-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.accessibility-panel-head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 34px;
  color: #111827;
  font-size: 11px;
  font-weight: 900;
}

.accessibility-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: #34435a;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.accessibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.accessibility-grid button {
  display: grid;
  gap: 8px;
  place-items: center;
  min-height: 86px;
  padding: 10px 6px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}

.accessibility-grid button:hover,
.accessibility-grid button.is-active {
  border-color: #0b5b88;
  box-shadow: inset 0 0 0 1px rgba(11, 91, 136, 0.2);
  transform: translateY(-2px);
}

.accessibility-grid button span {
  font-size: 24px;
  line-height: 1;
}

.accessibility-grid button small {
  color: #111827;
  font-size: 10px;
  font-weight: 900;
}

.accessibility-reset {
  position: sticky;
  bottom: 0;
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  background: #07527d;
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

body.access-font {
  font-size: 108%;
}

body.access-font .accessibility-widget,
body.access-spacing .accessibility-widget,
body.access-readable .accessibility-widget,
body.access-height .accessibility-widget {
  font-size: 16px;
  line-height: 1.35;
  word-spacing: normal;
  font-family: "Cairo", Tahoma, Arial, sans-serif;
}

body.access-contrast {
  filter: contrast(1.18);
}

body.access-gray {
  filter: grayscale(1);
}

body.access-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

body.access-spacing {
  word-spacing: 0.14em;
}

body.access-images img,
body.access-images .slide-img,
body.access-images .vid-thumb,
body.access-images .nf-bg {
  visibility: hidden !important;
}

body.access-readable {
  font-family: Arial, Tahoma, sans-serif;
}

body.access-height {
  line-height: 1.9;
}

body.access-align :where(p, h1, h2, h3, h4, h5, h6, li, td, th, label, input, textarea) {
  text-align: start;
}

body.access-motion *,
body.access-motion *::before,
body.access-motion *::after {
  animation: none !important;
  transition: none !important;
}

body.access-cursor,
body.access-cursor * {
  cursor: crosshair !important;
}

@media (max-width: 720px) {
  .accessibility-widget {
    left: 12px;
    bottom: 18px;
  }

  .accessibility-panel {
    width: min(248px, calc(100vw - 24px));
    bottom: 68px;
  }
}

/* ══════════════════════════════════════════════════
   Players Showcase Section
   ══════════════════════════════════════════════════ */

.players-section {
  position: relative;
  overflow: hidden;
  background: #080c14;
}

.pl-inner {
  width: min(1150px, calc(100% - 48px));
  margin-inline: auto;
  padding: 72px 0;
}

.pl-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

/* in RTL grid: column-1 = right (visual), column-2 = left (details) */
.pl-visual {
  position: relative;
  overflow: hidden;
}

.pl-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: opacity 0.18s;
}

.pl-bg-num {
  position: absolute;
  bottom: -24px;
  left: 10px;
  font-size: 200px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.07);
  user-select: none;
  pointer-events: none;
  letter-spacing: -8px;
  transition: opacity 0.18s;
}

.pl-photo-fade {
  position: absolute;
  inset: 0;
  /* RTL: fade from left (adjacent to details panel) to transparent right */
  background: linear-gradient(to right, #080c14 0%, transparent 55%);
  pointer-events: none;
}

.pl-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px 48px 20px;
  background: linear-gradient(160deg, #0d1321, #080c14);
}

.pl-eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.pl-badge {
  display: inline-block;
  padding: 3px 14px;
  border-radius: 999px;
  background: rgba(213,17,35,0.15);
  border: 1px solid rgba(213,17,35,0.3);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
  transition: opacity 0.18s;
}

.pl-name {
  margin: 0 0 22px;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  transition: opacity 0.18s;
}

.pl-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
  transition: opacity 0.18s;
}

.pl-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.pl-sval {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.pl-slbl {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.46);
}

.pl-sdiv {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.pl-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pl-arr {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}

.pl-arr:hover {
  background: var(--red);
  border-color: var(--red);
}

.pl-arr .arr-icon {
  width: 0;
  height: 0;
}

/* RTL: prev = rightward arrow, next = leftward */
.pl-arr--prev .arr-icon {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
}

.pl-arr--next .arr-icon {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 7px solid #fff;
}

.pl-thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}

.pl-thumb {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  background-size: cover;
  background-position: center top;
  background-color: #1a2235;
  cursor: pointer;
  transition: border-color 0.18s, transform 0.18s;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 900;
  overflow: hidden;
}

.pl-thumb.is-active {
  border-color: var(--red);
  transform: scale(1.18);
  box-shadow: 0 0 0 3px rgba(213,17,35,0.22);
}

.pl-thumb:hover:not(.is-active) {
  border-color: rgba(255,255,255,0.38);
}

/* Switch transition: add class to stage, fade content out/in */
.pl-stage.is-switching .pl-photo,
.pl-stage.is-switching .pl-bg-num,
.pl-stage.is-switching .pl-badge,
.pl-stage.is-switching .pl-name,
.pl-stage.is-switching .pl-stats-row {
  opacity: 0;
}

@media (max-width: 760px) {
  .pl-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pl-visual {
    height: 320px;
  }

  .pl-photo-fade {
    background: linear-gradient(to top, #080c14 0%, transparent 55%);
  }

  .pl-details {
    padding: 28px 20px 32px;
  }

  .pl-name {
    font-size: 28px;
  }
}

/* ══════════════════════════════════════════════════
   New Footer grid (ft-* classes)
   ══════════════════════════════════════════════════ */

.ft-inner {
  position: relative;
  z-index: 1;
  width: min(1150px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ft-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.ft-col--brand {
  gap: 14px;
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ft-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.ft-logo strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
}

.ft-logo small {
  display: block;
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
}

.ft-desc {
  margin: 0;
  color: rgba(255,255,255,0.5);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.78;
}

.ft-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-soc {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  transition: background 0.18s, transform 0.18s, border-color 0.18s;
}

.ft-soc:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

.ft-col-title {
  margin: 0 0 2px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.ft-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ft-links a {
  color: rgba(255,255,255,0.5);
  font-size: 12.5px;
  font-weight: 700;
  transition: color 0.16s;
}

.ft-links a:hover {
  color: #fff;
}

.ft-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ft-contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255,255,255,0.5);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.4;
}

.ft-contact a {
  color: inherit;
  transition: color 0.16s;
}

.ft-contact a:hover {
  color: #fff;
}

.ft-ci {
  flex-shrink: 0;
  margin-top: 1px;
  width: 14px;
  font-size: 13px;
  line-height: 1;
}

.ft-ci--map::before  { content: "📍"; }
.ft-ci--mail::before { content: "✉"; }
.ft-ci--phone::before { content: "☎"; }

.ft-bottom {
  position: relative;
  z-index: 1;
}

.ft-bottom-inner {
  width: min(1150px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-bottom: 0;
}

.ft-copy {
  color: rgba(255,255,255,0.32);
  font-size: 11px;
  font-weight: 700;
}

.ft-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ft-bottom-links a {
  color: rgba(255,255,255,0.32);
  font-size: 11px;
  font-weight: 700;
  transition: color 0.16s;
}

.ft-bottom-links a:hover {
  color: rgba(255,255,255,0.72);
}

.ft-dot-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 920px) {
  .ft-inner {
    grid-template-columns: 1fr 1fr;
  }
  .ft-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .ft-inner {
    grid-template-columns: 1fr;
  }
  .ft-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ══════════════════════════════════════════════════
   Back-to-top (new .back-top)
   ══════════════════════════════════════════════════ */

.back-top {
  position: fixed;
  z-index: 250;
  right: 22px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--red);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(213,17,35,0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.24s, visibility 0.24s, transform 0.24s, box-shadow 0.2s;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  box-shadow: 0 22px 44px rgba(213,17,35,0.4);
  transform: translateY(-4px);
}

.back-top.is-visible:hover {
  transform: translateY(-4px);
}

.back-top .arr-icon {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #fff;
}

@media (max-width: 560px) {
  .back-top {
    right: 14px;
    bottom: 90px;
    width: 44px;
    height: 44px;
  }
}

.nm-countdown.is-live::after {
  content: attr(data-live-label);
}

/* Final icon-only header/footer controls */
.tool-label,
.social-card a span,
.ft-soc span {
  display: none !important;
}

.site-ui-icon {
  display: grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 auto !important;
}

.site-ui-icon svg,
.tool-button svg,
.social-card a svg,
.ft-soc svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-card a svg,
.ft-soc svg {
  width: 18px !important;
  height: 18px !important;
}

.social-card [data-social-kind="facebook"] svg,
.social-card [data-social-kind="instagram"] svg,
.social-card [data-social-kind="youtube"] svg,
.social-card [data-social-kind="tiktok"] svg,
.social-card [data-social-kind="x"] svg,
.ft-soc[data-social-kind="facebook"] svg,
.ft-soc[data-social-kind="instagram"] svg,
.ft-soc[data-social-kind="youtube"] svg,
.ft-soc[data-social-kind="tiktok"] svg,
.ft-soc[data-social-kind="x"] svg {
  fill: currentColor !important;
  stroke: none !important;
}

.tool-button {
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
}

.social-card {
  width: auto !important;
  min-width: 0 !important;
  grid-template-columns: repeat(4, 40px) !important;
  gap: 10px !important;
  padding: 14px !important;
}

.social-card a,
.ft-soc {
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  padding: 0 !important;
}

.social-card a {
  width: 40px !important;
  min-width: 40px !important;
  height: 40px !important;
}

.ft-social {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.ft-soc {
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
}
