:root {
  --red: #66121d;
  --red-deep: #4c0c15;
  --navy: #061936;
  --navy-2: #0b274f;
  --gold: #d7b15d;
  --gold-bright: #f4ce70;
  --white: #ffffff;
  --paper: #000000;
  --ink: #101828;
  --muted: #667085;
  --shadow: 0 18px 50px rgba(6, 25, 54, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body::selection {
  color: var(--white);
  background: var(--red);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 32px rgba(6, 25, 54, 0.18);
}

.header-top {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 54px 66px;
  column-gap: 36px;
  align-items: center;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 clamp(20px, 7.6vw, 150px);
}

.header-top::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.08);
}

.brand {
  grid-column: 1;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-width: max-content;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
}

.header-links,
.sponsor-line {
  display: none;
}

.header-contact {
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  gap: 7px;
  justify-self: end;
  align-self: center;
  min-width: 360px;
  font-size: 0.92rem;
}

.header-contact a {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 12px;
  align-items: baseline;
  min-height: 26px;
  color: var(--white);
}

.header-contact span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-align: right;
}

.header-contact strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  color: var(--red);
  font-weight: 900;
  text-align: left;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.header-contact a:hover strong {
  color: var(--white);
  background: var(--red-deep);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.brand-logo-swap {
  position: relative;
  display: block;
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
  transition: opacity 520ms ease, transform 520ms ease;
}

.logo-primary {
  animation: logoPrimarySwap 8s ease-in-out infinite;
}

.logo-secondary {
  animation: logoSecondarySwap 8s ease-in-out infinite;
}

@keyframes logoPrimarySwap {
  0%, 42% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
  50%, 92% {
    opacity: 0;
    transform: rotateY(90deg) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
}

@keyframes logoSecondarySwap {
  0%, 42% {
    opacity: 0;
    transform: rotateY(-90deg) scale(0.92);
  }
  50%, 92% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotateY(-90deg) scale(0.92);
  }
}

.crest-mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 900;
  background: var(--white);
  border: 5px solid #1d64d8;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--red), 0 8px 14px rgba(0, 0, 0, 0.18);
}

.header-links,
.sponsor-line {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 16px;
  font-weight: 700;
}

.header-links {
  align-self: end;
  padding-bottom: 2px;
}

.sponsor-line {
  align-self: start;
  padding-top: 4px;
}

.sponsor-line span {
  font-size: 14px;
  font-weight: 400;
}

.sponsor-line strong,
.sponsor-line a,
.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 15px;
  color: var(--red);
  font-weight: 700;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 5px;
}

.sponsor-line strong {
  min-width: 56px;
  font-size: 20px;
}

.language-button {
  gap: 16px;
  min-width: 122px;
  color: var(--white);
  background: transparent;
}

.profile-button {
  position: relative;
  width: 31px;
  height: 31px;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.profile-button::before,
.profile-button::after {
  position: absolute;
  content: "";
  border: 3px solid var(--white);
  border-radius: 50%;
}

.profile-button::before {
  top: 5px;
  left: 8px;
  width: 9px;
  height: 9px;
}

.profile-button::after {
  left: 5px;
  bottom: -8px;
  width: 15px;
  height: 15px;
}

.header-links,
.sponsor-line {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 0 clamp(20px, 7.6vw, 150px);
  font-size: 18px;
  font-weight: 700;
  background: var(--red-deep);
}

.site-nav a {
  color: var(--white);
}

.site-nav a:hover,
.header-links a:hover {
  color: var(--gold-bright);
}

.site-nav a {
  transition: color 180ms ease;
}

.search-link:hover::before {
  border-color: var(--gold-bright);
}

.search-link:hover::after {
  background: var(--gold-bright);
}

.search-link {
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: 10px;
}

.search-link::before {
  position: absolute;
  top: 3px;
  left: 2px;
  width: 12px;
  height: 12px;
  content: "";
  border: 3px solid var(--white);
  border-radius: 50%;
}

.search-link::after {
  position: absolute;
  right: 3px;
  bottom: 4px;
  width: 10px;
  height: 3px;
  content: "";
  background: var(--white);
  border-radius: 99px;
  transform: rotate(45deg);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 2px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.match-hero {
  padding: 12px clamp(18px, 5vw, 44px) 24px;
  background: #000;
}

.champion-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  max-width: 1280px;
  min-height: 76px;
  margin: 0 auto 16px;
  padding: 0 clamp(22px, 3vw, 42px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 50%, rgba(244, 206, 112, 0.22), transparent 19%),
    radial-gradient(circle at 84% 50%, rgba(244, 206, 112, 0.2), transparent 18%),
    linear-gradient(90deg, rgba(6, 25, 54, 0.96), rgba(102, 18, 29, 0.98) 50%, rgba(6, 25, 54, 0.96)),
    repeating-linear-gradient(135deg, rgba(244, 206, 112, 0.12) 0 2px, transparent 2px 34px);
  border: 1px solid rgba(244, 206, 112, 0.55);
  border-radius: 7px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -18px 38px rgba(0, 0, 0, 0.25),
    0 12px 34px rgba(0, 0, 0, 0.24);
}

.champion-strip img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.34));
}

.champion-strip strong {
  justify-self: center;
  color: var(--gold-bright);
  font-size: clamp(1.15rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.24),
    0 0 18px rgba(244, 206, 112, 0.28);
}

.match-stage {
  position: relative;
  max-width: 1280px;
  min-height: 635px;
  margin: 0 auto;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.match-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  --hero-image: url("assets/news-web-sitemiz-acildi.png");
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.06) 76%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 48%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.98);
  transition: opacity 260ms ease, filter 420ms ease, transform 620ms ease, background-image 420ms ease;
}

.match-stage.is-photo-changing .match-photo {
  opacity: 0.72;
  transform: scale(1.015);
}

.match-photo::before {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 42%;
  content: "";
  background:
    radial-gradient(circle at 12% 32%, rgba(255, 255, 255, 0.7) 0 18px, transparent 19px),
    radial-gradient(circle at 24% 21%, rgba(255, 255, 255, 0.56) 0 16px, transparent 17px),
    radial-gradient(circle at 42% 27%, rgba(255, 255, 255, 0.62) 0 18px, transparent 19px),
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.6) 0 15px, transparent 16px),
    linear-gradient(180deg, rgba(210, 222, 232, 0.88), rgba(120, 148, 172, 0.76));
  filter: blur(1px);
}

.match-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.16) 44%, transparent 78%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 42%);
}

.photo-player {
  position: absolute;
  z-index: 1;
  border-radius: 999px 999px 12px 12px;
  filter: blur(0.2px) drop-shadow(0 20px 26px rgba(0, 0, 0, 0.34));
}

.match-photo .photo-player,
.match-photo .ball {
  display: none;
}

.photo-player::before,
.photo-player::after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.player-red {
  left: 29%;
  top: 28%;
  width: 82px;
  height: 178px;
  background: var(--red);
  transform: rotate(-12deg);
}

.player-red::before {
  top: -42px;
  left: 22px;
  width: 38px;
  height: 38px;
  background: #f1c49a;
}

.player-red::after {
  left: -96px;
  top: 42px;
  width: 230px;
  height: 22px;
  background: var(--red);
  transform: rotate(-18deg);
}

.player-blue-one {
  left: 12%;
  top: 29%;
  width: 68px;
  height: 156px;
  background: linear-gradient(90deg, #0b2754 0 52%, #d8e0e5 52%);
  transform: rotate(10deg);
}

.player-blue-one::before,
.player-blue-two::before {
  top: -34px;
  left: 17px;
  width: 32px;
  height: 32px;
  background: #d9a77f;
}

.player-blue-two {
  left: 21%;
  top: 23%;
  width: 64px;
  height: 145px;
  background: linear-gradient(90deg, #0b2754 0 52%, #d8e0e5 52%);
  transform: rotate(-6deg);
}

.ball {
  position: absolute;
  right: 27%;
  top: 55%;
  z-index: 2;
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, #fff 0 50%, #d8d8d8 51%);
  border: 3px solid rgba(6, 25, 54, 0.35);
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.3);
}

.pause-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.32);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.pause-button::before,
.pause-button::after {
  position: absolute;
  top: 10px;
  width: 4px;
  height: 13px;
  content: "";
  background: var(--white);
}

.pause-button::before {
  left: 12px;
}

.pause-button::after {
  right: 12px;
}

.pause-button.is-paused::before {
  top: 9px;
  left: 13px;
  width: 0;
  height: 0;
  background: transparent;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--white);
  border-radius: 0;
}

.pause-button.is-paused::after {
  display: none;
}

.match-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 132px;
  z-index: 3;
  padding: 0 24px;
  transition: opacity 240ms ease, transform 240ms ease;
}

.match-content.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.club-pair {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.club-pair img,
.mini-crest {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.mini-crest {
  display: grid;
  place-items: center;
  color: #15457f;
  font-weight: 900;
  background: var(--white);
  border: 4px solid #15457f;
}

.match-content p {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.match-content h1 {
  max-width: 960px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 2.65vw, 2.6rem);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.match-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  background: var(--red);
  border-radius: 4px;
  transition: background 180ms ease, transform 180ms ease;
}

.match-content a:hover {
  background: #ff1a4a;
  transform: translateY(-1px);
}

.hero-card-row {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-card-row article {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 10px;
  background: rgba(11, 11, 11, 0.82);
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.hero-card-row article.active {
  border-color: rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(var(--red), var(--red)) left top / 0 3px no-repeat,
    linear-gradient(var(--red), var(--red)) left bottom / 0 3px no-repeat,
    linear-gradient(var(--red), var(--red)) left top / 3px 100% no-repeat,
    rgba(11, 11, 11, 0.82);
  box-shadow: none;
  animation: activeCardProgress 10s linear forwards;
}

.hero-card-row article.active::before,
.hero-card-row article.active::after {
  display: none;
}

.hero-card-row article.active::before {
  top: -2px;
  bottom: -2px;
  width: 3px;
  background: var(--red);
  border-radius: 8px 0 0 8px;
}

.hero-card-row article.active::after {
  top: -2px;
  width: 128px;
  height: calc(100% + 4px);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  border-left: 0;
  border-radius: 8px 0 0 8px;
  animation: activeBracket 260ms ease both;
}

.hero-card-row article:hover,
.hero-card-row article:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  outline: none;
  transform: translateY(-4px);
}

.hero-card-row article.active:hover,
.hero-card-row article.active:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-card-row img,
.thumb {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 6px;
  background: #080808;
  transition: transform 260ms ease, filter 260ms ease;
}

.hero-card-row article:hover img,
.hero-card-row article:hover .thumb,
.hero-card-row article:focus-visible img,
.hero-card-row article:focus-visible .thumb {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.thumb {
  display: block;
}

.thumb.coach {
  background:
    radial-gradient(circle at 45% 28%, #f0bd93 0 15px, transparent 16px),
    linear-gradient(90deg, #111 0 45%, var(--red) 45% 65%, #e7e7e7 65%);
}

.thumb.match {
  background:
    radial-gradient(circle at 72% 66%, #fff 0 10px, transparent 11px),
    linear-gradient(135deg, #2f7f36, var(--red) 62%, #08224b);
}

.thumb.keeper {
  background:
    radial-gradient(circle at 46% 26%, #f0bd93 0 14px, transparent 15px),
    linear-gradient(90deg, #c9ff8d 0 60%, #08224b 60%);
}

.hero-card-row strong {
  color: var(--white);
  font-size: 16px;
  line-height: 1.45;
}

@keyframes activeBracket {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes activeCardProgress {
  from {
    background-size: 0 3px, 0 3px, 3px 100%, auto;
  }
  to {
    background-size: 100% 3px, 100% 3px, 3px 100%, auto;
  }
}

.match-stage.is-carousel-paused .hero-card-row article.active {
  animation-play-state: paused;
}

.match-stage.theme-champion .match-photo {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.75) 0 28px, transparent 29px),
    radial-gradient(circle at 78% 30%, rgba(244, 206, 112, 0.62) 0 72px, transparent 73px),
    linear-gradient(0deg, rgba(34, 20, 7, 0.9) 0 26%, rgba(102, 18, 29, 0.7) 26% 48%, transparent 48%),
    repeating-linear-gradient(90deg, var(--red) 0 56px, #061936 56px 112px);
  filter: saturate(1.1) hue-rotate(-8deg);
}

.match-stage.theme-coach .match-photo {
  background:
    radial-gradient(circle at 35% 34%, #f0bd93 0 54px, transparent 55px),
    linear-gradient(90deg, rgba(12, 12, 12, 0.96) 0 38%, rgba(164, 13, 35, 0.86) 38% 56%, rgba(230, 230, 230, 0.86) 56%),
    repeating-linear-gradient(90deg, #20242d 0 68px, #303743 68px 136px);
  filter: saturate(0.72) contrast(1.08);
}

.match-stage.theme-match .match-photo {
  filter: saturate(0.98);
}

.match-stage.theme-keeper .match-photo {
  background:
    radial-gradient(circle at 62% 36%, #f0bd93 0 42px, transparent 43px),
    linear-gradient(0deg, rgba(31, 94, 36, 0.95) 0 28%, transparent 28%),
    linear-gradient(90deg, rgba(200, 255, 128, 0.92) 0 42%, rgba(6, 25, 54, 0.88) 42% 62%, rgba(224, 232, 239, 0.82) 62%),
    repeating-linear-gradient(90deg, #506a7d 0 74px, #8da2b1 74px 148px);
  filter: saturate(1.05) hue-rotate(18deg);
}

.match-stage.theme-champion .player-red,
.match-stage.theme-coach .player-red,
.match-stage.theme-keeper .player-red {
  left: 48%;
  top: 30%;
  width: 140px;
  height: 210px;
  transform: rotate(0);
}

.match-stage.theme-champion .player-red {
  background: linear-gradient(180deg, var(--gold-bright), var(--red));
}

.match-stage.theme-coach .player-red {
  background: #101828;
}

.match-stage.theme-keeper .player-red {
  background: #c9ff8d;
}

.match-stage.theme-champion .player-blue-one,
.match-stage.theme-champion .player-blue-two,
.match-stage.theme-coach .player-blue-one,
.match-stage.theme-coach .player-blue-two,
.match-stage.theme-keeper .player-blue-one,
.match-stage.theme-keeper .player-blue-two {
  opacity: 0;
}

.match-stage.theme-champion .ball {
  right: 19%;
  top: 30%;
  width: 86px;
  height: 86px;
  background: radial-gradient(circle, var(--gold-bright), var(--gold));
}

.match-stage.theme-coach .ball {
  opacity: 0;
}

.match-stage.theme-keeper .ball {
  right: 40%;
  top: 58%;
}

.hero-news {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
  gap: 18px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 44px) 0;
}

.lead-story,
.side-story,
.news-card,
.club-grid article {
  overflow: hidden;
  background: #1f1f1f;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.lead-story {
  position: relative;
  min-height: 540px;
  color: var(--white);
  background: var(--navy);
}

.story-visual {
  position: absolute;
  inset: 0;
}

.lead-visual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 36%, rgba(244, 206, 112, 0.28), transparent 28%),
    linear-gradient(120deg, rgba(6, 25, 54, 0.96) 0%, rgba(6, 25, 54, 0.64) 48%, rgba(201, 11, 34, 0.92) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 10px, transparent 10px 36px);
}

.lead-visual::before {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 600px;
  height: 600px;
  content: "";
  background: repeating-conic-gradient(from 8deg, rgba(255, 255, 255, 0.16) 0 10deg, transparent 10deg 20deg);
  border-radius: 50%;
}

.lead-visual::after {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 12%;
  height: 190px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-bottom: 0;
  border-radius: 240px 240px 0 0;
}

.hero-crest {
  position: absolute;
  right: clamp(24px, 7vw, 96px);
  bottom: 42px;
  display: grid;
  place-items: center;
  width: min(360px, 42vw);
  aspect-ratio: 0.86;
  color: var(--navy);
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 900;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  border: clamp(10px, 2vw, 18px) solid var(--red-deep);
  clip-path: polygon(50% 0, 92% 16%, 84% 76%, 50% 100%, 16% 76%, 8% 16%);
  opacity: 0.92;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.34));
}

.story-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(24px, 4vw, 44px);
  background: linear-gradient(0deg, rgba(6, 25, 54, 0.98), rgba(6, 25, 54, 0.72), transparent);
}

.story-body span,
.side-story span,
.news-card span,
.tv-copy span,
.newsletter span,
.ticket-banner span,
.partners > span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-body h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.93;
  font-weight: 900;
  text-transform: uppercase;
}

.story-body p {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.55;
}

.story-stack {
  display: grid;
  gap: 18px;
}

.side-story {
  min-height: 261px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(201, 11, 34, 0.94), rgba(6, 25, 54, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 16px, transparent 16px 34px);
}

.side-story h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.gold-story {
  color: var(--navy);
  background:
    linear-gradient(145deg, rgba(244, 206, 112, 0.98), rgba(215, 177, 93, 0.9)),
    repeating-linear-gradient(90deg, rgba(6, 25, 54, 0.12) 0 16px, transparent 16px 34px);
}

.gold-story span {
  color: var(--red-deep);
}

.ticker {
  grid-column: 1 / -1;
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  color: var(--white);
  background: var(--red);
  border-bottom: 4px solid var(--gold-bright);
}

.ticker strong {
  text-transform: uppercase;
}

.ad-band {
  display: none;
  justify-content: center;
  gap: 14px;
  align-items: center;
  max-width: 1292px;
  min-height: 64px;
  margin: 0 auto;
  color: var(--navy);
  background: #0b0b0b;
  border: 1px solid rgba(6, 25, 54, 0.08);
  box-shadow: 0 12px 32px rgba(6, 25, 54, 0.08);
}

.ad-band span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-band strong {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 900;
}

.section {
  max-width: 1292px;
  margin: 0 auto;
  padding: 72px clamp(16px, 4vw, 44px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.schedule-section.reveal {
  opacity: 1;
  transform: none;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-head h2,
.tv-copy h2,
.newsletter h2,
.ticket-banner h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.section-head h2::after {
  display: block;
  width: 56px;
  height: 5px;
  margin-top: 14px;
  content: "";
  background: var(--red);
}

.section-head a {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tabs button {
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  font-weight: 900;
  background: #1f1f1f;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.tabs .active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.tabs button:hover {
  transform: translateY(-2px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-card {
  position: relative;
  display: block;
  min-height: 420px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.news-card.is-hidden {
  display: none;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(6, 25, 54, 0.2);
}

.card-media {
  position: relative;
  z-index: 1;
  min-height: 190px;
  overflow: hidden;
  transition: transform 340ms ease, filter 340ms ease;
}

.card-media img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.news-card:hover .card-media {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.stripes {
  background:
    radial-gradient(circle at 28% 34%, rgba(255, 255, 255, 0.88) 0 18px, transparent 19px),
    linear-gradient(135deg, var(--red), var(--navy));
}

.stadium {
  background:
    linear-gradient(0deg, rgba(6, 25, 54, 0.9), rgba(6, 25, 54, 0.18)),
    repeating-linear-gradient(90deg, var(--red) 0 26px, var(--navy) 26px 52px);
}

.academy {
  background:
    radial-gradient(circle at 70% 36%, var(--gold-bright) 0 54px, transparent 55px),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.news-card span,
.news-card h3,
.news-card p {
  position: relative;
  z-index: 1;
  margin-left: 24px;
  margin-right: 24px;
}

.news-card span {
  margin-top: 22px;
  color: var(--red);
}

.news-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.1;
}

.news-card p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.55;
}

.match-overview {
  position: relative;
  overflow: hidden;
  max-width: 1280px;
  min-height: 398px;
  margin: 0 auto;
  padding: 58px 30px 34px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(102, 18, 29, 0.25), transparent 22%, transparent 78%, rgba(6, 25, 54, 0.55)),
    #030303;
}

.match-overview::before,
.match-overview::after {
  position: absolute;
  content: "";
  width: 220px;
  height: 340px;
  background: linear-gradient(135deg, rgba(102, 18, 29, 0.72), rgba(6, 25, 54, 0.7));
  transform: skewY(42deg);
}

.match-overview::before {
  left: -78px;
  top: -105px;
}

.match-overview::after {
  right: -68px;
  bottom: -146px;
}

.countdown,
.match-cards,
.match-slider {
  position: relative;
  z-index: 1;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
}

.countdown {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 18px;
}

.countdown > span {
  grid-column: 2;
  justify-self: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown > a {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  color: var(--red);
  font-size: 1.08rem;
  font-weight: 700;
  border: 1px solid var(--red);
  border-radius: 5px;
}

.time-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 12px;
  align-items: end;
  text-align: center;
}

.time-grid strong,
.time-grid b {
  color: #e90031;
  font-size: clamp(2.25rem, 3.7vw, 3.55rem);
  line-height: 0.88;
  font-weight: 900;
}

.time-grid small {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 900;
}

.time-grid small:nth-of-type(1) {
  grid-column: 1;
}

.time-grid small:nth-of-type(2) {
  grid-column: 3;
}

.time-grid small:nth-of-type(3) {
  grid-column: 5;
}

.time-grid small:nth-of-type(4) {
  grid-column: 7;
}

.match-cards {
  --match-slide: 0px;
  display: flex;
  gap: 22px;
  transform: translateX(calc(var(--match-slide) * -1));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.match-cards.is-shifting .score-card {
  transform: scale(0.985);
  opacity: 0.78;
}

.score-card {
  position: relative;
  display: grid;
  flex: 0 0 calc((100% - 44px) / 3);
  grid-template-columns: 48px 66px 1fr 66px;
  gap: 14px;
  align-items: center;
  min-height: 142px;
  overflow: hidden;
  background: #202020;
  border-radius: 8px;
  transition: opacity 320ms ease, transform 320ms ease, box-shadow 220ms ease;
}

.score-card.next-up {
  border: 2px solid #1368ff;
  box-shadow: 0 0 0 1px rgba(19, 104, 255, 0.16), 0 22px 54px rgba(0, 0, 0, 0.28);
}

.next-tab {
  position: absolute;
  left: 50%;
  top: -2px;
  display: grid;
  place-items: center;
  width: 132px;
  height: 24px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: #1368ff;
  border-radius: 0 0 18px 18px;
  transform: translateX(-50%);
}

.score-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
}

.league-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 100%;
  min-height: 136px;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
}

.red-mark {
  background: #e4001d;
}

.blue-mark {
  background: #07005a;
}

.team-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--red);
  font-weight: 900;
  background: var(--white);
  border: 4px solid var(--gold);
  border-radius: 50%;
}

.rival-mark {
  color: #15457f;
  border-color: #c9d4df;
}

.score-info {
  text-align: center;
}

.score-info span {
  display: block;
  margin-bottom: 4px;
  font-weight: 900;
  text-transform: uppercase;
}

.score-info strong {
  display: block;
  font-size: 1.92rem;
  line-height: 1;
  font-weight: 900;
}

.score-info small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  font-weight: 900;
}

.match-slider {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.match-slider button {
  width: 38px;
  height: 38px;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 0;
  font-weight: 900;
  background: transparent;
  border: 0;
}

.match-slider span {
  width: 26px;
  height: 7px;
  background: var(--white);
  border-radius: 999px;
  transition: width 220ms ease, background 220ms ease, opacity 220ms ease;
}

.match-slider span.active {
  width: 38px;
  background: #e90031;
}

.sponsor-showcase {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 54px clamp(18px, 4vw, 32px) 58px;
  color: var(--white);
  background: #000;
}

.ad-label {
  display: block;
  max-width: 1600px;
  margin: 0 auto 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  text-align: right;
}

.wide-ad {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  min-height: 86px;
  padding: 12px 34px;
  color: #111;
  background: linear-gradient(90deg, #f4f4f4, #e9e9e9);
  border-radius: 8px;
}

.wide-ad img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.sponsor-aslan img {
  mix-blend-mode: multiply;
}

.wide-ad p {
  margin: 0;
  color: #063061;
  font-size: clamp(1.45rem, 2.4vw, 2.55rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
}

.wide-ad strong {
  color: #063061;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-align: right;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.promo-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 134px;
  overflow: hidden;
  padding: 24px 30px;
  background: linear-gradient(110deg, #c90a22, var(--red));
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.promo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 14px);
  opacity: 0.35;
}

.promo-card > * {
  position: relative;
  z-index: 1;
}

.promo-card strong {
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card em {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.25vw, 1.25rem);
  font-style: normal;
  letter-spacing: 0.18em;
}

.sponsor-hlt {
  flex-direction: column;
  background:
    linear-gradient(110deg, rgba(4, 9, 20, 0.96), rgba(20, 24, 31, 0.98)),
    var(--red);
  border: 1px solid rgba(215, 177, 93, 0.45);
}

.sponsor-hlt img {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 76px;
  object-fit: contain;
}

.sponsor-ermet {
  flex-direction: column;
  gap: 14px;
  background: #e6e6e6;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.sponsor-ermet::after {
  display: none;
}

.ermet-logo {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(72px, 1fr) auto minmax(72px, 1fr);
  align-items: center;
  gap: 12px;
  width: min(92%, 330px);
}

.ermet-logo b {
  color: #656565;
  font-size: clamp(3rem, 4.5vw, 4.65rem);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-transform: lowercase;
}

.ermet-logo b::first-letter {
  color: #b92123;
}

.ermet-logo i {
  display: block;
  width: 100%;
  height: 6px;
  background: #bf2424;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.sponsor-ermet strong {
  color: #606060;
  font-size: clamp(3.6rem, 6vw, 6.2rem);
  line-height: 0.82;
  letter-spacing: 0.015em;
}

.sponsor-asfa {
  background:
    linear-gradient(110deg, rgba(102, 18, 29, 0.96), rgba(6, 25, 54, 0.9)),
    var(--red);
}

.sponsor-asfa img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex: 0 0 auto;
}

.tv-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  position: relative;
  padding: 82px clamp(16px, 6vw, 78px);
  color: var(--white);
  background: linear-gradient(115deg, var(--navy), #030a17);
  overflow: hidden;
}

.tv-copy h2 {
  color: var(--white);
}

.tv-copy p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.tv-copy a,
.ticket-banner a,
.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gold-bright);
  border: 0;
  border-radius: 2px;
}

.tv-frame {
  position: relative;
  display: block;
  min-height: 370px;
  background:
    linear-gradient(135deg, rgba(201, 11, 34, 0.9), rgba(6, 25, 54, 0.88)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 18px, transparent 18px 38px);
  border: 8px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
  transition: transform 260ms ease, border-color 260ms ease;
}

.tv-frame img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(230px, 36%);
  max-height: 72%;
  object-fit: contain;
  opacity: 0.82;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
  transform: translate(-50%, -50%);
}

.tv-frame:hover {
  border-color: rgba(102, 18, 29, 0.72);
  transform: translateY(-4px);
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 86px;
  height: 86px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.play-button::after {
  position: absolute;
  top: 26px;
  left: 34px;
  content: "";
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 26px solid var(--red);
}

.club-grid,
.honour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.club-grid article {
  min-height: 220px;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(150deg, var(--red), var(--navy));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.club-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(201, 11, 34, 0.22);
}

.club-grid h3 {
  margin: 0 0 14px;
  font-size: 2rem;
  text-transform: uppercase;
}

.club-grid p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.newsletter {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: 58px clamp(16px, 6vw, 78px);
  color: var(--white);
  background: var(--red);
}

.newsletter h2 {
  color: var(--white);
}

.newsletter form {
  display: grid;
  gap: 10px;
}

.newsletter label {
  font-weight: 900;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.form-row input {
  min-height: 50px;
  padding: 0 16px;
  border: 0;
  outline: 0;
}

.form-row input:focus {
  box-shadow: inset 0 0 0 3px var(--gold-bright);
}

.newsletter-message {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 800;
}

.newsletter-message.is-success {
  color: var(--gold-bright);
}

.newsletter-message.is-error {
  color: #fff;
}

.fixture-carousel {
  overflow: hidden;
}

.fixture-track {
  --fixture-slide: 0px;
  display: flex;
  gap: 16px;
  transform: translateX(calc(var(--fixture-slide) * -1));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.fixture-card {
  display: grid;
  flex: 0 0 calc((100% - 48px) / 4);
  min-height: 230px;
  padding: 22px;
  color: var(--white);
  background: #1f1f1f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.fixture-card.featured {
  background: linear-gradient(145deg, var(--red), #1f1f1f 68%);
  border-color: rgba(255, 255, 255, 0.24);
}

.fixture-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.26);
}

.fixture-card span {
  color: var(--gold-bright);
  font-weight: 900;
  text-transform: uppercase;
}

.fixture-card strong {
  margin-top: 14px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.fixture-card b {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 18px 0 4px;
  color: var(--navy);
  font-size: 1.1rem;
  background: var(--gold-bright);
  border-radius: 50%;
}

.fixture-card small {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.fixture-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.fixture-controls button {
  width: 42px;
  height: 42px;
  color: var(--white);
  font-size: 2.6rem;
  line-height: 0;
  font-weight: 900;
  background: transparent;
  border: 0;
}

.fixture-dots {
  display: flex;
  gap: 9px;
  align-items: center;
}

.fixture-dots button {
  width: 24px;
  height: 7px;
  padding: 0;
  background: var(--white);
  border: 0;
  border-radius: 99px;
}

.fixture-dots button.active {
  width: 38px;
  background: var(--red);
}

.honours {
  max-width: 1292px;
  margin: 0 auto;
  padding: 70px clamp(16px, 4vw, 44px);
}

.honour-grid {
  grid-template-columns: repeat(4, 1fr);
}

.honour-grid article {
  display: grid;
  place-items: center;
  min-height: 178px;
  padding: 22px;
  text-align: center;
  color: var(--white);
  background: #1f1f1f;
  border-top: 5px solid var(--gold);
  transition: transform 220ms ease, border-color 220ms ease;
}

.honour-grid article:hover {
  border-color: var(--red);
  transform: translateY(-5px);
}

.honour-grid strong {
  color: var(--red);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.honour-grid span {
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  padding: 50px clamp(16px, 6vw, 78px);
  color: var(--white);
  background:
    radial-gradient(circle at 8% 50%, rgba(244, 206, 112, 0.22), transparent 22%),
    linear-gradient(100deg, var(--navy), var(--red) 56%, #28070c);
  overflow: hidden;
  position: relative;
}

.ticket-banner::after {
  position: absolute;
  right: -110px;
  bottom: -220px;
  width: 420px;
  height: 420px;
  content: "";
  background: repeating-conic-gradient(from 12deg, rgba(255, 255, 255, 0.16) 0 10deg, transparent 10deg 20deg);
  border-radius: 50%;
}

.ticket-banner > * {
  position: relative;
  z-index: 1;
}

.ticket-banner img {
  width: clamp(92px, 12vw, 150px);
  height: clamp(92px, 12vw, 150px);
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.32));
}

.ticket-banner h2 {
  color: var(--white);
  max-width: 980px;
}

.ticket-banner span {
  color: var(--gold-bright);
}

.partners {
  max-width: 1292px;
  margin: 0 auto;
  padding: 54px clamp(16px, 4vw, 44px);
  text-align: center;
}

.partners > span {
  color: var(--red);
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.partner-card {
  display: grid;
  place-items: center;
  min-height: 146px;
  padding: 18px;
  color: var(--white);
  background: #1f1f1f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  opacity: 1;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-card img {
  max-width: 112px;
  max-height: 72px;
  object-fit: contain;
}

.partner-card strong {
  margin-top: 10px;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 1;
}

.partner-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-card:hover {
  border-color: rgba(102, 18, 29, 0.34);
  box-shadow: 0 18px 34px rgba(102, 18, 29, 0.18);
  transform: translateY(-4px);
}

.partner-aslan {
  color: #063061;
  background: linear-gradient(90deg, #f4f4f4, #e9e9e9);
}

.partner-aslan img {
  mix-blend-mode: multiply;
}

.partner-aslan small {
  color: rgba(6, 48, 97, 0.72);
}

.partner-hlt {
  background:
    linear-gradient(110deg, rgba(4, 9, 20, 0.96), rgba(20, 24, 31, 0.98)),
    var(--red);
  border-color: rgba(215, 177, 93, 0.45);
}

.partner-ermet {
  color: #606060;
  background: #e6e6e6;
}

.partner-ermet::after {
  display: none;
}

.partner-ermet .ermet-logo {
  width: min(92%, 240px);
  grid-template-columns: minmax(46px, 1fr) auto minmax(46px, 1fr);
}

.partner-ermet .ermet-logo b {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
}

.partner-ermet strong {
  color: #606060;
  font-size: clamp(2.2rem, 3.3vw, 3.7rem);
  line-height: 0.9;
  letter-spacing: 0.015em;
}

.partner-asfa {
  background:
    linear-gradient(110deg, rgba(102, 18, 29, 0.96), rgba(6, 25, 54, 0.9)),
    var(--red);
}

footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #040914;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  transition: transform 220ms ease, filter 220ms ease;
}

.footer-brand strong {
  max-width: 360px;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.footer-brand:hover img {
  filter: drop-shadow(0 0 18px rgba(215, 177, 93, 0.42));
  transform: translateY(-3px) scale(1.03);
}

.footer-brand:hover strong {
  color: var(--gold-bright);
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

footer nav a {
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
}

footer nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 3px;
  content: "";
  background: var(--red);
  border-radius: 999px;
  transition: right 180ms ease;
}

footer nav a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

footer nav a:hover::after {
  right: 0;
}

footer small {
  transition: color 180ms ease;
}

footer small:hover {
  color: var(--gold-bright);
}

@media (max-width: 1040px) {
  .header-top {
    grid-template-columns: auto auto;
    grid-template-rows: 74px;
    justify-content: space-between;
    min-height: 74px;
    padding: 0 18px;
  }

  .header-top::after,
  .header-links,
  .sponsor-line,
  .header-contact {
    display: none;
  }

  .brand {
    grid-row: auto;
    gap: 12px;
    font-size: 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    display: none;
    width: 100%;
    max-width: none;
    min-height: auto;
    padding: 20px;
    background: var(--navy);
  }

  .site-nav.is-open {
    display: grid;
    justify-content: stretch;
  }

  .hero-news,
  .hero-card-row,
  .match-cards,
  .promo-grid,
  .card-grid,
  .tv-section,
  .club-grid,
  .newsletter,
  .honour-grid,
  .partner-logo-grid,
  footer {
    grid-template-columns: 1fr;
  }

  .lead-story {
    min-height: 610px;
  }

  .hero-crest {
    width: min(310px, 68vw);
  }

  .champion-strip {
    min-height: 64px;
    gap: 14px;
  }

  .champion-strip img {
    width: 48px;
    height: 48px;
  }

  .match-stage {
    min-height: 760px;
  }

  .match-content {
    bottom: 350px;
  }

  .hero-card-row {
    gap: 12px;
  }

  .hero-card-row article {
    grid-template-columns: 62px 1fr;
    min-height: 82px;
  }

  .hero-card-row img,
  .thumb {
    width: 62px;
    height: 62px;
  }

  .countdown {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .countdown > span,
  .time-grid,
  .countdown > a {
    grid-column: 1;
  }

  .countdown > a {
    justify-self: center;
  }

  .score-card {
    flex-basis: 100%;
    grid-template-columns: 54px 80px 1fr 80px;
  }

  .fixture-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .wide-ad {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    text-align: center;
  }

  .wide-ad img {
    justify-self: center;
  }

  .ticket-banner,
  .section-head {
    align-items: flex-start;
  }

  .ticket-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .header-top {
    padding: 0 14px;
  }

  .crest-mark {
    width: 54px;
    height: 54px;
  }

  .brand-logo-swap {
    width: 62px;
    height: 62px;
  }

  .brand span {
    font-size: 16px;
  }
  .hero-news {
    padding-left: 12px;
    padding-right: 12px;
  }

  .match-hero {
    padding: 10px 12px 18px;
  }

  .match-overview {
    min-height: auto;
    padding: 44px 12px 30px;
  }

  .champion-strip {
    margin-bottom: 12px;
    padding: 0 12px;
  }

  .champion-strip strong {
    font-size: 1rem;
  }

  .match-stage {
    min-height: 735px;
  }

  .match-content {
    bottom: 332px;
    padding: 0 14px;
  }

  .match-content p {
    font-size: 0.86rem;
  }

  .match-content h1 {
    font-size: 1.8rem;
  }

  .hero-card-row {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .hero-card-row strong {
    font-size: 0.9rem;
  }

  .time-grid {
    gap: 6px;
  }

  .time-grid strong,
  .time-grid b {
    font-size: 2.05rem;
  }

  .time-grid small {
    font-size: 0.78rem;
  }

  .score-card {
    flex-basis: 100%;
    grid-template-columns: 44px 58px 1fr 58px;
    gap: 10px;
    min-height: 128px;
  }

  .league-mark {
    width: 44px;
    min-height: 128px;
  }

  .team-mark {
    width: 48px;
    height: 48px;
    font-size: 0.82rem;
  }

  .score-info strong {
    font-size: 1.75rem;
  }

  .score-info span {
    font-size: 0.78rem;
  }

  .fixture-card {
    flex-basis: 100%;
    min-height: 212px;
  }

  .fixture-card b {
    width: 66px;
    height: 66px;
  }

  .sponsor-showcase {
    padding: 38px 12px 42px;
  }

  .promo-grid {
    gap: 16px;
    margin-top: 24px;
  }

  .promo-card {
    min-height: 118px;
    padding: 20px;
  }

  .sponsor-hlt img {
    width: 92px;
    height: 64px;
  }

  .sponsor-asfa img {
    width: 66px;
    height: 66px;
  }

  .lead-story {
    min-height: 620px;
  }

  .story-body {
    padding: 22px;
  }

  .story-body h1 {
    font-size: 2.7rem;
  }

  .ticker {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

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