/* Futbol Kulübü — #1a2458 / #ae0a0b (Gakla / kulüp düzeni) */
:root {
  --color-primary: #1a2458;
  --color-primary-light: #24306e;
  --color-primary-dark: #121a42;
  --color-accent: #ae0a0b;
  --color-accent-hover: #c50d0e;
  --color-white: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.72);
  --color-surface: rgba(255, 255, 255, 0.06);
  --font-sans: "Barlow", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Barlow Condensed", "Barlow", system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  /* Mobil açılır menü için yaklaşık üst boşluk (yapışkan header yüksekliği) */
  --header-offset: 148px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-primary-dark);
  color: var(--color-white);
  line-height: 1.55;
}

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

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

.container {
  width: min(1180px, calc(100% - 2rem));
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}

/* Üst şerit — header’dan farklı, düz koyu zemin + ince accent çizgisi */
.top-bar--ref {
  background-color: #0a0e22;
  background-image: linear-gradient(90deg, var(--color-accent) 0, var(--color-accent) 5px, transparent 5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.top-bar__unified {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
  padding: 0.5rem 0;
}

.top-bar__left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1.35rem);
}

.top-bar__left a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--topbar-ink, #fff);
}

.top-bar__left a:hover {
  color: var(--topbar-ink-soft, rgba(255, 255, 255, 0.75));
}

.top-bar__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.1rem;
  justify-content: flex-end;
}

.top-bar__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.top-bar__contact:empty {
  display: none;
}

.top-bar__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  padding-left: 0;
  margin-left: 0;
}

.top-bar__contact:not(:empty) + .top-bar__social {
  padding-left: 0.65rem;
  margin-left: 0.35rem;
  border-left: 1px solid var(--topbar-divider, rgba(255, 255, 255, 0.2));
}

.top-bar__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.35rem;
  color: inherit;
  opacity: 0.9;
  transition: opacity 0.15s, background 0.15s;
}

.top-bar__social-link:hover {
  opacity: 1;
  background: var(--topbar-social-hover, rgba(255, 255, 255, 0.1));
  color: inherit;
}

.top-bar__social-link .bi {
  font-size: 1.05rem;
  line-height: 1;
}

.top-bar__store-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.top-bar__soon {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.top-bar__hot {
  color: var(--topbar-ink-soft, var(--color-accent));
  font-weight: 600;
  font-size: 0.8rem;
}

a.top-bar__hot:hover {
  text-decoration: underline;
}

/* Yapışkan üst blok: hızlı şerit + ana menü */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
}

.site-header {
  overflow: visible;
  background-color: var(--color-primary-dark);
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header--ref {
  overflow: visible;
  background-color: var(--color-primary-dark);
  background-image:
    linear-gradient(90deg, var(--color-accent) 0, var(--color-accent) 5px, transparent 5px),
    linear-gradient(
      90deg,
      transparent 0,
      transparent 5px,
      var(--color-primary) 5px,
      var(--color-primary) min(180px, 14vw),
      transparent min(180px, 14vw)
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.5rem 0 1rem;
  gap: 1rem;
}

.site-header--ref .header-inner {
  align-items: center;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  min-height: 5.5rem;
  overflow: visible;
}

.site-header--ref .header-inner .nav-main {
  flex: 1;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.logo__img {
  height: clamp(56px, 8.5vw, 76px);
  width: auto;
  max-width: min(260px, 48vw);
  object-fit: contain;
  flex-shrink: 0;
}

.logo--overlap .logo__img {
  height: clamp(92px, 13vw, 132px);
  max-width: min(360px, 56vw);
  margin-bottom: -52px;
  position: relative;
  z-index: 6;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

@media (max-width: 960px) {
  .logo--overlap .logo__img {
    height: clamp(72px, 20vw, 104px);
    margin-bottom: -32px;
    max-width: min(280px, 58vw);
  }
}

.logo--has-img .logo__text strong {
  display: none;
}

.logo--footer .logo__img--footer {
  height: 52px;
  max-width: 200px;
}

.logo__shield {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #7a0708 100%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.logo__text strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.logo__text span {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-main {
  display: flex;
  align-items: center;
}

.nav-main__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  position: relative;
  list-style: none;
}

.nav__item--store {
  margin-left: 0.35rem;
}

.nav__link {
  display: block;
  padding: 0.62rem 0.88rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  transition: background 0.2s, color 0.2s;
}

.nav__caret {
  font-size: 0.65em;
  margin-left: 0.15em;
  opacity: 0.85;
}

.site-header--ref .nav__link {
  color: #fff;
  border-radius: 0;
  font-size: 1.14rem;
  padding: 0.72rem 1.05rem;
}

.site-header--ref .nav__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-header--ref .nav__item.is-active > .nav__link--parent,
.site-header--ref .nav__item--dropdown:hover > .nav__link--parent {
  background: var(--color-accent);
  color: #fff;
}

.nav__link:hover,
.nav__link.is-active {
  background: var(--color-surface);
  color: var(--color-white);
}

.site-header--ref .nav__item:not(.nav__item--dropdown) .nav__link.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav__item.is-active > .nav__link--parent {
  background: var(--color-surface);
}

.site-header--ref .nav__item.is-active > .nav__link--parent {
  background: var(--color-accent);
  color: #fff;
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--color-primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  z-index: 120;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  display: block;
}

.nav__dropdown .nav__link {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.98rem;
  padding: 0.5rem 1.05rem;
  border-radius: 0;
}

.nav__dropdown a:hover,
.nav__dropdown a.is-active {
  background: rgba(174, 10, 11, 0.32);
  color: var(--color-white);
}

.btn-store {
  background: var(--color-accent);
  color: var(--color-white) !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 0.95rem !important;
  border-radius: 10px !important;
}

.btn-store:hover {
  background: var(--color-accent-hover);
}

.menu-toggle {
  display: none;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.header-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.88rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.15s ease, border-color 0.15s ease, filter 0.15s ease, transform 0.15s ease;
}

.header-action-btn--cart {
  font-size: 0.75rem;
  padding: 0.52rem 0.95rem;
}

.header-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-accent);
  line-height: 1;
}

.header-action-btn:hover {
  filter: brightness(1.1);
  color: #fff;
}

.header-action-btn--store {
  padding: 0.64rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  border-radius: 12px;
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(174, 10, 11, 0.35);
}

@media (max-width: 380px) {
  .header-action-btn--store {
    padding: 0.48rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .nav-main {
    position: fixed;
    inset: 0 0 auto auto;
    top: var(--header-offset);
    right: 4vw;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-primary);
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: min(300px, 92vw);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    transform-origin: top right;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }

  .nav-main__list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav__item--store {
    margin-left: 0;
  }

  .nav__dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 8px;
    margin: 0.25rem 0 0;
  }

  .nav__item--dropdown:hover .nav__dropdown {
    display: none;
  }

  .nav__item--dropdown.is-open .nav__dropdown {
    display: block;
  }

  .nav-main.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
}

/* Hero — arka plan slaytları + sol metin / sağ fikstür kartı */
.hero--slider {
  position: relative;
  padding: 0;
  min-height: min(82vh, 760px);
  min-height: min(82dvh, 760px);
  overflow: hidden;
}

.hero--split {
  padding-top: 0;
}

/* Ana sayfa: header ile slider arasındaki açık zemini kapatır */
.header-sticky + .hero.hero--slider {
  margin-top: clamp(-2.85rem, -6.5vw, -0.45rem);
}

.hero-slider {
  position: relative;
  min-height: inherit;
  height: min(82vh, 760px);
  height: min(82dvh, 760px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s;
  z-index: 0;
}

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

.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  --hero-slide-photo: none;
  background-color: var(--color-primary-dark);
  background-image:
    linear-gradient(
      105deg,
      rgba(var(--primary-rgb), 0.88) 0%,
      rgba(18, 18, 22, 0.75) 48%,
      rgba(12, 12, 14, 0.92) 100%
    ),
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(var(--accent-rgb), 0.18), transparent 55%),
    var(--hero-slide-photo, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-slide__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-slide__scrim--ref {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 45%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-split-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: clamp(4.5rem, 12vh, 6.5rem) 0 clamp(3rem, 8vh, 5rem);
  pointer-events: none;
}

.hero-split-layer .hero-split,
.hero-split-layer .hero-split * {
  pointer-events: auto;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  width: 100%;
  max-width: min(1040px, 100%);
  margin-inline: auto;
}

.hero-split__text {
  position: relative;
  min-height: 14rem;
  justify-self: end;
  width: 100%;
  max-width: min(32rem, 100%);
}

.hero-text-slot {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
  text-align: left;
}

.hero-text-slot.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero__kicker {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero__title-ref {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: #fff;
  text-wrap: balance;
}

.hero-slide__lead--left {
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  margin: 0 0 1.5rem;
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  line-height: 1.55;
}

.hero__actions--left {
  justify-content: flex-start;
}

.hero__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.btn--outline-light {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
  font-weight: 700;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn__ico {
  font-size: 1.05em;
  line-height: 1;
}

/* Sağ — cam fikstür kartı (ortaya yakın, sabit genişlik) */
.hero-fixture-card {
  justify-self: start;
  width: 100%;
  max-width: 340px;
  background: rgba(18, 18, 22, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.2rem 1.35rem 1.1rem;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.42);
}

.hero-fixture-card__row--meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-fixture-card__date {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.hero-fixture-card__time {
  font-size: 0.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.85);
}

.hero-fixture-card__row--teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.hero-fixture-card__team {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
}

.hero-fixture-card__vs {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1;
  letter-spacing: 0.06em;
}

.hero-fixture-card__team-name {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.team-logo--placeholder.team-logo--md {
  font-size: 1.1rem;
}

.hero-fixture-card__venue {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}

.hero-fixture-card__pin {
  flex-shrink: 0;
}

.hero-fixture-card__countdown {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.countdown--compact {
  gap: 0.2rem 0.35rem;
}

.countdown--compact .countdown__unit {
  padding: 0.45rem 0.3rem;
  min-width: 2.85rem;
}

.countdown--compact .countdown__value {
  font-size: 1.15rem;
}

.countdown--compact .countdown__label {
  font-size: 0.55rem;
}

.countdown--compact .countdown__sep {
  padding-bottom: 0.55rem;
  font-size: 1.2rem;
}

@media (max-width: 960px) {
  .hero--slider {
    position: relative;
    min-height: min(86vh, 820px);
    min-height: min(86dvh, 820px);
    padding-bottom: 0;
  }

  .hero-slider {
    height: min(86vh, 820px);
    height: min(86dvh, 820px);
  }

  /* Metin + maç kartı slayt görselinin üzerinde (mobil / dar ekran) */
  .hero-split-layer {
    align-items: stretch;
    justify-content: flex-end;
    padding: calc(var(--header-offset, 76px) + 0.65rem) max(1rem, 4vw) 5.35rem;
    background: linear-gradient(
      180deg,
      rgba(8, 10, 22, 0.1) 0%,
      rgba(8, 10, 22, 0.28) 42%,
      rgba(6, 8, 18, 0.88) 100%
    );
  }

  .hero-slide__scrim--ref {
    background:
      linear-gradient(105deg, rgba(0, 0, 0, 0.18) 0%, transparent 55%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.42) 100%);
    opacity: 0.92;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    max-width: none;
  }

  .hero-split__text {
    justify-self: stretch;
    max-width: none;
    min-height: 0;
    width: 100%;
  }

  .hero__title-ref {
    font-size: clamp(1.65rem, 6.5vw, 2.45rem);
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
  }

  .hero__kicker {
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
  }

  .hero-slide__lead--left {
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
  }

  .hero-fixture-card {
    justify-self: stretch;
    max-width: none;
    width: 100%;
    margin-inline: 0;
    background: rgba(10, 12, 22, 0.72);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  }

  .hero-text-slot {
    position: relative;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    max-width: none;
  }

  .hero-text-slot.is-active {
    height: auto;
    opacity: 1;
    visibility: visible;
    overflow: visible;
  }
}

@media (max-width: 480px) {
  .hero-split-layer {
    padding-bottom: 5rem;
  }

  .hero__actions--left {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions--left .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-slider__nav {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  gap: 0.45rem;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hero-slider__dot.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.15);
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
}

.hero-slider__arrow:hover {
  background: rgba(174, 10, 11, 0.55);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-slider__arrow--prev {
  left: max(1rem, 4vw);
}

.hero-slider__arrow--next {
  right: max(1rem, 4vw);
}

@media (max-width: 720px) {
  .hero-slider__arrow {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

.btn--ghost:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

/* Next match + countdown */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.next-match {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.next-match__card {
  background: linear-gradient(145deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 720px) {
  .next-match__card {
    grid-template-columns: 1fr;
  }
}

.match-meta {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

.match-teams {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.match-teams strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.vs {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  padding: 0.25rem 0.6rem;
  background: rgba(174, 10, 11, 0.15);
  border-radius: 6px;
}

.venue {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(56px, 1fr));
  gap: 0.5rem;
  text-align: center;
}

.countdown--gakla {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 0.2rem 0.35rem;
}

.countdown--gakla .countdown__sep {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
  padding: 0 0.1rem 0.85rem;
  user-select: none;
}

.countdown__unit {
  background: var(--color-primary-dark);
  border-radius: 10px;
  padding: 0.65rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 3.5rem;
}

.countdown--gakla .countdown__unit {
  flex: 0 0 auto;
}

.countdown__value {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--color-white);
}

.countdown__label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-top: 0.2rem;
}

/* Section common */
section {
  padding: 3.25rem 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: 0.02em;
}

.section-head p {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  max-width: 48ch;
}

.section-head--lines .section-label {
  margin-bottom: 0.35rem;
}

.section-head__lead {
  max-width: min(56ch, 100%);
  line-height: 1.5;
}

.link-more {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.92rem;
}

.link-more:hover {
  text-decoration: underline;
}

.bg-strip {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

/* Ana sayfa — kampanya (SMS): sola hizalı, çerçevesiz */
.home-block--campaign .campaign-stack {
  max-width: min(40rem, 100%);
  text-align: left;
}

.home-block--campaign .campaign-stack h2 {
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0.15rem 0 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: inherit;
}

.home-block--campaign .campaign-stack__lead {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 48ch;
  color: inherit;
  opacity: 0.88;
}

.home-block--campaign .campaign-stack__sms {
  margin: 1.35rem 0 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  color: inherit;
}

.home-block--campaign .campaign-stack__note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 52ch;
  color: inherit;
  opacity: 0.72;
}

/* Fixture strip */
.fixture-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.fixture-strip::-webkit-scrollbar {
  height: 6px;
}

.fixture-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
}

.fixture-card {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.fixture-card__date {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.fixture-card__status {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  margin-bottom: 0.65rem;
}

.fixture-card__status--played {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-muted);
}

.fixture-card__status--soon {
  background: rgba(174, 10, 11, 0.25);
  color: #ffb4b4;
}

.fixture-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  gap: 0.5rem;
}

.fixture-row + .fixture-row {
  margin-top: 0.35rem;
}

.fixture-score {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--color-accent);
}

.hint-scroll {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
  text-align: center;
}

/* --- Ana sayfa: A takımı vitrin kartları --- */
.section-label--dark {
  color: var(--color-accent);
}

.squad-home-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .squad-home-head {
    grid-template-columns: 1fr;
  }
}

.squad-home-head__title {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ink, #0f1114);
}

.squad-home-head__sub {
  margin: 0;
  font-size: 0.92rem;
  color: var(--block-muted, var(--ink-muted, #5c6473));
  text-align: right;
  max-width: 36ch;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .squad-home-head__sub {
    text-align: left;
    max-width: none;
  }
}

.squad-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .squad-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .squad-home-grid {
    grid-template-columns: 1fr;
  }
}

.squad-show-card {
  position: relative;
  min-height: 460px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: #1a0508;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.squad-show-card__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.squad-show-card__bg-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.squad-show-card__bg-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 90% at 50% 32%,
    color-mix(in srgb, var(--color-accent) 42%, #6a1018) 0%,
    #3a060c 52%,
    #120204 100%
  );
}

.squad-show-card--custom-bg .squad-show-card__bg-scrim {
  background: linear-gradient(180deg, rgba(8, 2, 4, 0.35) 0%, rgba(8, 2, 4, 0.82) 100%);
}

.squad-show-card--custom-bg .squad-show-card__water {
  opacity: 0.05;
}

@supports not (background: color-mix(in srgb, red, blue)) {
  .squad-show-card__bg-scrim {
    background: radial-gradient(ellipse 100% 90% at 50% 32%, #9a1822 0%, #4a0a12 52%, #120204 100%);
  }
}

.squad-show-card__water {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%) rotate(-11deg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  user-select: none;
}

.squad-show-card__top {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1.05rem 0;
  gap: 0.75rem;
}

.squad-show-card__num {
  font-family: var(--font-display);
  font-size: clamp(3.75rem, 11vw, 5.75rem);
  font-weight: 800;
  line-height: 0.82;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.squad-show-card__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.95);
  text-align: right;
  text-transform: uppercase;
}

.squad-show-card__stats li {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  margin-bottom: 0.32rem;
}

.squad-show-card__ico {
  opacity: 0.95;
  font-size: 0.78rem;
}

.squad-show-card__figure {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 82%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0.25rem;
  pointer-events: none;
}

.squad-show-card__figure img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.45));
}

.squad-show-card__bottom {
  position: absolute;
  z-index: 7;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: 0;
  padding: 2.25rem 1.15rem 1.1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 35%, rgba(0, 0, 0, 0.88) 100%);
}

.squad-show-card__pos {
  margin: 0 0 0.28rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.squad-show-card__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.38rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.squad-show-card__bio {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.squad-show-card--carousel .squad-show-card__bio {
  display: none;
}

.squad-home-cta {
  margin-top: 2rem;
  text-align: center;
}

.btn--squad-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--color-accent);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s, filter 0.2s;
}

.btn--squad-all:hover {
  filter: brightness(1.08);
}

.btn--squad-all__ico {
  font-size: 1.1rem;
}

.squad-home-cta__note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-muted, #5c6473);
}

.section--players-page {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  overflow-x: clip;
}

@media (max-width: 480px) {
  .section--players-page .squad-show-card {
    min-height: min(400px, 85vh);
  }
}

.squad-page-title {
  margin-bottom: 0.25rem;
}

.squad-page-grid {
  margin-top: 1.5rem;
}

.squad-carousel-wrap {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.squad-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  container-type: inline-size;
  container-name: squadvp;
}

.squad-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.15rem 1rem;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
  touch-action: pan-x pinch-zoom;
}

.squad-carousel__track::-webkit-scrollbar {
  display: none;
}

.squad-carousel__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.squad-carousel__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  align-self: center;
  border-radius: 999px;
  border: 1px solid rgba(26, 36, 88, 0.22);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary-dark, #1a2458);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.squad-carousel__arrow:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.squad-show-card--carousel {
  flex: 0 0 calc((100cqi - 3 * 1rem) / 4);
  box-sizing: border-box;
  min-width: 0;
  scroll-snap-align: start;
  min-height: clamp(360px, 52vw, 460px);
  opacity: 0.58;
  position: relative;
  z-index: 0;
  transition:
    opacity 0.25s,
    box-shadow 0.25s,
    border-color 0.25s,
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@supports not (container-type: inline-size) {
  .squad-show-card--carousel {
    flex: 0 0 calc((100vw - 13rem) / 4);
    min-width: 200px;
  }
}

.squad-show-card--carousel:hover {
  transform: scale(1.045);
  z-index: 3;
  box-shadow: 0 16px 44px rgba(15, 17, 24, 0.22);
}

.squad-show-card--carousel.is-active {
  opacity: 1;
  box-shadow: 0 12px 40px rgba(15, 17, 24, 0.18);
  border-color: var(--color-accent);
}

@container squadvp (max-width: 900px) {
  .squad-show-card--carousel {
    flex: 0 0 calc((100cqi - 1rem) / 2);
  }
}

@container squadvp (max-width: 520px) {
  .squad-show-card--carousel {
    flex: 0 0 100cqi;
    scroll-snap-align: center;
    min-height: min(420px, 78vh);
    min-height: min(420px, 78dvh);
  }
}

@media (max-width: 640px) {
  .squad-carousel-wrap .squad-carousel__arrow {
    display: none;
  }

  .squad-carousel-wrap {
    gap: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .squad-show-card--carousel,
  .fixture-card--flow {
    transition: opacity 0.2s, border-color 0.2s, box-shadow 0.2s;
  }

  .squad-show-card--carousel:hover,
  .fixture-card--flow:hover {
    transform: none;
  }
}

.squad-carousel__bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.squad-carousel__progress {
  flex: 1;
  height: 3px;
  background: rgba(26, 36, 88, 0.12);
  border-radius: 0;
}

.squad-carousel__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  transition: width 0.2s ease-out;
}

.squad-carousel__counter {
  font-size: 0.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink-muted, #5c6473);
  flex-shrink: 0;
}

.hint-scroll--squad {
  font-size: 0.82rem;
  color: var(--ink-muted, #5c6473);
  margin: 0 0 1.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section--sponsors {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

.sponsors-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.sponsors-head__title {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--ink, #0f1114);
}

.sponsors-marquee-wrap {
  position: relative;
}

.sponsors-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.sponsors-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  width: max-content;
  animation: sponsors-marquee 48s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .sponsors-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    row-gap: 1rem;
  }
}

@keyframes sponsors-marquee {
  to {
    transform: translateX(-50%);
  }
}

.sponsors-marquee__cell {
  flex-shrink: 0;
}

.sponsors-marquee__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 0;
  padding: 0.35rem 0.75rem;
  background: transparent;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  transition: opacity 0.2s;
}

a.sponsors-marquee__link:hover {
  opacity: 0.88;
}

.sponsors-marquee__logo {
  display: block;
  max-height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* Açık zeminde orijinal renk; koyu zeminde okunur açık ton */
.sponsors-strip--on-light .sponsors-marquee__logo {
  filter: none;
}

.sponsors-strip--on-dark .sponsors-marquee__logo {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.page-public-muted {
  margin: 0 0 1rem;
  font-style: italic;
  opacity: 0.78;
}

/* --- Akış / Fikstür (koyu blok) --- */
.section--flow {
  padding: 3.5rem 0 3rem;
  background: var(--color-primary-dark);
  color: #fff;
  --block-muted: rgba(255, 255, 255, 0.82);
}

.flow-fikstur-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin-bottom: 2.25rem;
  align-items: start;
}

@media (max-width: 900px) {
  .flow-fikstur-head {
    grid-template-columns: 1fr;
  }
}

.flow-fikstur__kicker {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.flow-fikstur__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: inherit;
}

.flow-fikstur__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--block-muted, rgba(255, 255, 255, 0.82));
  max-width: 52ch;
}

.flow-fikstur__matchline {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: inherit;
  line-height: 1.3;
}

.countdown--flow {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.countdown--flow .countdown__unit {
  text-align: center;
  min-width: 3.2rem;
}

.countdown--flow .countdown__value {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: inherit;
  line-height: 1;
}

.countdown--flow .countdown__label {
  font-size: 0.58rem;
  color: var(--block-muted, rgba(255, 255, 255, 0.45));
  margin-top: 0.35rem;
  opacity: 0.75;
}

.countdown--flow .countdown__sep {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--block-muted, rgba(255, 255, 255, 0.35));
  padding-bottom: 1.1rem;
  opacity: 0.85;
}

.flow-carousel-wrap {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.flow-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  container-type: inline-size;
  container-name: flowvp;
}

.flow-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.15rem 1rem;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
  touch-action: pan-x pinch-zoom;
}

.flow-carousel__track::-webkit-scrollbar {
  display: none;
}

.flow-carousel__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.flow-carousel__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  align-self: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.flow-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-accent);
  color: #fff;
}

.fixture-strip--flow {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fixture-strip--flow::-webkit-scrollbar {
  display: none;
}

.fixture-card--flow {
  flex: 0 0 calc((100cqi - 2 * 1rem) / 3);
  box-sizing: border-box;
  min-width: 0;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 1.1rem 1.15rem 1rem;
  position: relative;
  z-index: 0;
  opacity: 0.55;
  transition:
    opacity 0.25s,
    border-color 0.25s,
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s;
}

@supports not (container-type: inline-size) {
  .fixture-card--flow {
    flex: 0 0 calc((100vw - 13rem) / 3);
    min-width: 220px;
  }
}

.fixture-card--flow:hover {
  transform: scale(1.045);
  z-index: 3;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.fixture-card--flow.is-active {
  opacity: 1;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}

@container flowvp (max-width: 820px) {
  .fixture-card--flow {
    flex: 0 0 calc((100cqi - 1rem) / 2);
  }
}

@container flowvp (max-width: 480px) {
  .fixture-card--flow {
    flex: 0 0 100cqi;
    scroll-snap-align: center;
  }
}

@media (max-width: 640px) {
  .flow-carousel-wrap .flow-carousel__arrow {
    display: none;
  }

  .flow-carousel-wrap {
    gap: 0;
  }
}

.fixture-card--flow.is-past:not(.is-active) {
  opacity: 0.42;
}

.fixture-card__head--flow {
  margin-bottom: 0.85rem;
}

.fixture-card__date--flow {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.fixture-card__time-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.fixture-card__played-pill {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  background: var(--color-accent);
  color: #fff;
}

.fixture-team__name--flow {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
}

.fixture-score-ghost {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.05em;
}

.fixture-card__venue--flow {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.flow-carousel__bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.flow-carousel__progress {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0;
}

.flow-carousel__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  transition: width 0.2s ease-out;
}

.flow-carousel__counter {
  font-size: 0.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.hint-scroll--flow {
  color: rgba(255, 255, 255, 0.45);
}

.flow-fikstur__more {
  text-align: center;
  margin: 1rem 0 0;
}

.link-more--on-dark {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.link-more--on-dark:hover {
  color: var(--color-accent);
}

.flow-fikstur__empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  margin: 1rem 0 2rem;
}

/* --- Forma vitrini (çerçevesiz, vitrin tipografisi) --- */
.section--jersey-showcase {
  padding: 3.5rem 0 3.75rem;
  background: #fff;
  color: #0f172a;
  border: none;
  --block-muted: #666666;
  --ink-muted: #666666;
}

body.theme-gakla .section--jersey-showcase {
  background: #fff;
  color: #0f172a;
  border-top: none;
  border-bottom: none;
}

.jersey-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem 3.25rem;
  align-items: center;
}

@media (max-width: 960px) {
  .jersey-showcase__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

.jersey-showcase__visual {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.jersey-showcase__stage {
  flex: 1;
  position: relative;
  min-height: min(480px, 58vh);
  display: grid;
  place-items: center;
  background: transparent;
}

.jersey-showcase__slide {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: grid;
  place-items: center;
  width: 100%;
}

.jersey-showcase__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.jersey-showcase__photo {
  max-height: min(480px, 58vh);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-inline: auto;
  display: block;
}

.jersey-showcase__placeholder {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.9rem;
}

.jersey-showcase__nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.jersey-showcase__nav:hover {
  filter: brightness(1.08);
}

.jersey-showcase__detail {
  min-width: 0;
}

.jersey-showcase__heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 800;
  color: inherit;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: none;
}

.jersey-showcase__intro {
  margin: 0 0 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: var(--block-muted, #666666);
  line-height: 1.55;
}

.jersey-showcase__views {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
}

.jersey-showcase__view {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.48rem 1.1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #f0f0f0;
  color: #333333;
  transition: background 0.2s, color 0.2s;
}

.jersey-showcase__view.is-active {
  background: var(--color-accent);
  color: #fff;
}

.jersey-showcase__meta {
  display: none;
}

.jersey-showcase__meta.is-active {
  display: block;
}

.jersey-showcase__name {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: inherit;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.jersey-showcase__season {
  margin: 0 0 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: #666666;
}

.jersey-showcase__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}

.jersey-showcase__thumb {
  width: 76px;
  height: 76px;
  padding: 4px;
  border: 2px solid transparent;
  background: #f5f5f5;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.jersey-showcase__thumb.is-active {
  border-color: currentColor;
  background: #fafafa;
}

.jersey-showcase__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.jersey-showcase__thumb-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: #e8e8e8;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #666666;
  border-radius: 6px;
}

.jersey-showcase__desc {
  display: none;
}

.jersey-showcase__desc.is-active {
  display: block;
}

.jersey-showcase__body {
  margin: 0 0 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #666666;
}

.jersey-showcase__shop {
  border-radius: 0;
}

.jersey-showcase__empty-msg {
  margin: 0;
  text-align: center;
  color: #666666;
  line-height: 1.55;
  padding: 2rem 0;
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.news-grid--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

@media (max-width: 992px) {
  .news-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .news-grid--featured {
    grid-template-columns: 1fr;
  }
}

.section-head--news {
  align-items: flex-start;
}

.section-head--news .section-head__text {
  flex: 1;
  min-width: min(100%, 40rem);
}

.section-head--news h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  color: var(--ink, #1f2937);
  letter-spacing: -0.02em;
}

.link-more--news {
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 640px) {
  .section-head--news {
    flex-direction: column;
    align-items: stretch;
  }

  .link-more--news {
    align-self: flex-start;
  }
}

.news-card {
  background: var(--color-surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.2s;
}

.news-card--link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 18px rgba(15, 17, 24, 0.06);
}

.news-card--link:hover {
  transform: translateY(-4px);
  border-color: rgba(174, 10, 11, 0.22);
  box-shadow: 0 12px 32px rgba(15, 17, 24, 0.1);
}

.news-card--link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.news-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  aspect-ratio: 3 / 2;
  background: var(--color-primary);
}

.news-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__thumb--placeholder {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    var(--color-primary);
}

.news-card__img {
  aspect-ratio: 16/10;
  background: var(--color-primary) url("https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&w=800&q=70") center/cover;
}

.news-card__body {
  padding: 1rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.news-card__time {
  display: block;
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0;
}

.news-card__tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.news-card__title {
  margin: 0.15rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink, #111827);
}

.news-card h3.news-card__title {
  margin: 0.15rem 0 0;
}

.news-card__excerpt {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-title--news {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
}

.page-news-head {
  margin-bottom: 1.75rem;
}

.page-main--news-article {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.news-article__crumb {
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  color: var(--color-muted);
}

.news-article__crumb a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.news-article__crumb a:hover {
  text-decoration: underline;
}

.news-article__hero {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 16 / 9;
  background: var(--color-primary);
}

.news-article__hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article__header {
  margin-bottom: 1.5rem;
}

.news-article__date {
  display: block;
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.news-article__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.65rem;
}

.news-article__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  color: var(--ink, #111827);
}

.news-article__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-muted, #4b5563);
  max-width: 65ch;
}

.news-article__body.rte {
  word-break: break-word;
}

.news-article__empty {
  margin: 0;
  font-style: italic;
  color: var(--color-muted);
}

.news-article__back {
  margin: 2rem 0 0;
}

/* Table — puan durumu (marka paneli) */
/* Puan durumu — marka gradient şerit */
.section--standings-wrap {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent !important;
}

.standings-section__band {
  padding: 3.25rem 0;
  background: linear-gradient(
    155deg,
    var(--standings-grad-from, var(--color-primary)) 0%,
    var(--standings-grad-to, var(--color-primary-dark)) 100%
  );
}

.standings-section__band--page {
  padding-top: 2.25rem;
  padding-bottom: 3rem;
}

.section-head--standings-hero {
  margin-bottom: 1.35rem;
  align-items: flex-end;
}

.section-head--standings-hero h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.link-more--on-gradient {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.link-more--on-gradient:hover {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
}

.page-title--on-standings-band {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
  margin-bottom: 0;
}

.standings-panel {
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-surface, #fff);
  box-shadow:
    0 4px 6px rgba(var(--primary-rgb), 0.04),
    0 12px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
}

.standings-panel--page {
  margin-bottom: 0.5rem;
}

.standings-panel__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(125deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-bottom: 3px solid var(--color-accent);
}

.standings-panel__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 5px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.standings-panel__mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.standings-panel__head-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.standings-panel__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
}

.standings-panel__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-wrap--standings {
  border: none;
  border-radius: 0;
  background: transparent;
}

table.standings {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.06);
}

.standings th,
.standings td {
  padding: 0.7rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.standings th {
  background: rgba(26, 36, 88, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.standings thead th:last-child {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(var(--accent-rgb), 0.35);
}

.standings tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.standings tr:hover td {
  background: rgba(var(--primary-rgb), 0.08);
}

.standings .highlight {
  background: linear-gradient(
    90deg,
    rgba(var(--accent-rgb), 0.22) 0%,
    rgba(var(--accent-rgb), 0.08) 100%
  );
  font-weight: 700;
  box-shadow: inset 3px 0 0 var(--color-accent);
}

.standings .highlight td {
  border-bottom-color: rgba(var(--accent-rgb), 0.2);
}

.standings .num {
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.standings td.num:last-child {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-accent);
}

@media (max-width: 720px) {
  .standings-panel__head {
    padding: 0.9rem 1rem;
    gap: 0.75rem;
  }

  .standings-panel__logo,
  .standings-panel__mark {
    width: 46px;
    height: 46px;
  }

  .standings th,
  .standings td {
    padding: 0.55rem 0.55rem;
    font-size: 0.82rem;
  }

  .standings th {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .standings th:first-child,
  .standings td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: rgba(22, 28, 58, 0.98);
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.12);
  }

  .standings .highlight td:first-child {
    background: rgba(45, 18, 24, 0.98);
  }

  .standings td.num:last-child {
    font-size: 0.88rem;
  }

  .stand-team__logo {
    width: 30px;
    height: 30px;
  }

  .stand-team__name {
    max-width: calc(100vw - 11.5rem);
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
  }
}

.table-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}

/* Jersey (eski vitrin — başka şablonlar için) */
.jersey-visual {
  aspect-ratio: 4/5;
  max-height: 380px;
  margin: 0 auto;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(
      90deg,
      var(--color-white) 0px,
      var(--color-white) 28px,
      var(--color-accent) 28px,
      var(--color-accent) 56px
    );
  box-shadow: var(--shadow);
  position: relative;
}

.jersey-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 36, 88, 0.25) 100%);
  pointer-events: none;
}

.jersey-copy h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.jersey-copy p {
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.jersey-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.jersey-tabs button {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
}

.jersey-tabs button.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* Players */
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.player-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.player-card__pos {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.player-card__num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin: 0.25rem 0;
}

.player-card h4 {
  margin: 0;
  font-size: 1rem;
}

.player-card__meta {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

/* Contact / footer */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--color-surface);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.contact-card p,
.contact-card a {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.contact-card a:hover {
  color: var(--color-accent);
}

/* İletişim sayfası — koyu / açık tema için net kontrast */
.page-main--contact {
  padding-top: 0;
  --contact-text: #ffffff;
  --contact-muted: rgba(255, 255, 255, 0.88);
  --contact-label: rgba(255, 255, 255, 0.78);
  --contact-placeholder: rgba(255, 255, 255, 0.5);
  --contact-card-bg: rgba(255, 255, 255, 0.09);
  --contact-card-border: rgba(255, 255, 255, 0.14);
  --contact-input-bg: rgba(0, 0, 0, 0.32);
  --contact-input-color: #ffffff;
  --contact-input-border: rgba(255, 255, 255, 0.2);
  --contact-map-bg: rgba(0, 0, 0, 0.35);
}

.contact-hero {
  background: linear-gradient(135deg, var(--contact-hero-from, var(--color-primary)) 0%, var(--contact-hero-to, var(--color-primary-dark)) 100%);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.contact-hero__inner {
  max-width: 40rem;
}

.contact-hero__label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.contact-hero__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
}

.contact-hero__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.9;
  max-width: 36ch;
}

.contact-page {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.contact-alert {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.contact-alert--ok {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #166534;
}

.contact-alert--err {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #b91c1c;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
}

@media (min-width: 960px) {
  .contact-page__grid {
    grid-template-columns: 1fr minmax(280px, 340px);
  }
}

.contact-form-card,
.contact-map-card {
  background: var(--contact-card-bg);
  border: 1px solid var(--contact-card-border);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1.5rem;
  color: var(--contact-text);
}

.contact-form-card__title,
.contact-map-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--contact-text);
}

.contact-form-card__hint {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--contact-muted);
  line-height: 1.45;
}

.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form {
  position: relative;
}

.contact-form__row {
  margin-bottom: 1rem;
}

.contact-form__row--2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 520px) {
  .contact-form__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  color: var(--contact-label);
}

.contact-form__label abbr {
  text-decoration: none;
  color: var(--color-accent);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--contact-input-border);
  background: var(--contact-input-bg);
  color: var(--contact-input-color);
  font: inherit;
  font-size: 0.95rem;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.2);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--contact-placeholder);
  opacity: 1;
}

.contact-form__submit {
  margin-top: 0.25rem;
  min-width: 160px;
}

.contact-map-card__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--contact-map-bg);
  border: 1px solid var(--contact-card-border);
}

.contact-map-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-card {
  background: var(--contact-card-bg);
  border: 1px solid var(--contact-card-border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  color: var(--contact-text);
}

.contact-info-card__icon {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.contact-info-card__title {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--contact-label);
}

.contact-info-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--contact-text);
}

.contact-info-card__text--muted {
  color: var(--contact-muted);
  opacity: 0.85;
}

.contact-info-card__text a {
  color: var(--color-accent);
  text-decoration: none;
}

.contact-info-card__text a:hover {
  text-decoration: underline;
}

.contact-intro {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--contact-muted);
}

.page-main--contact .contact-intro.rte {
  color: var(--contact-muted);
}

.contact-intro.rte h2,
.contact-intro.rte h3,
.contact-intro.rte h4 {
  color: var(--contact-text);
  font-family: var(--font-display);
}

.contact-intro p,
.contact-intro li {
  color: var(--contact-muted);
}

.contact-intro a {
  color: var(--color-accent);
}

.contact-intro a:hover {
  color: var(--color-accent-hover, var(--color-accent));
}

.contact-intro .page-public-muted {
  color: var(--contact-muted);
  opacity: 1;
}

.contact-intro p:last-child {
  margin-bottom: 0;
}

/* Footer — kulüp odaklı */
.site-footer--club {
  background: linear-gradient(180deg, #0a0e24 0%, #060815 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__hero {
  padding: 2.75rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-rgb), 0.12) 0%, transparent 55%);
}

.site-footer__logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.site-footer__logo-img {
  max-width: min(320px, 78vw);
  width: auto;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.45));
}

.site-footer__logo-fallback {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-primary-light), var(--color-primary));
  display: grid;
  place-items: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.12);
}

.site-footer__logo-shield {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.site-footer__club-name {
  margin: 0.25rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer__club-line {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.site-footer__about {
  margin: 1.1rem auto 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.site-footer__main {
  padding: 2rem 0 1.5rem;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.75rem 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .site-footer__columns {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.site-footer__panel-title {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__link-list a {
  display: inline-block;
  padding: 0.2rem 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__link-list a:hover {
  color: var(--color-accent);
}

.site-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
}

.site-footer__contact-list li {
  margin-bottom: 0.55rem;
}

.site-footer__contact-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.site-footer__contact-link:hover {
  color: var(--color-accent);
}

.site-footer__contact-link .bi {
  margin-top: 0.15rem;
  opacity: 0.75;
  flex-shrink: 0;
}

.site-footer__contact-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.site-footer__contact-address .bi {
  margin-top: 0.2rem;
  opacity: 0.75;
  flex-shrink: 0;
}

.site-footer__social-strip {
  padding: 1.35rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.site-footer__social-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.site-footer__social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.25rem;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.site-footer__social-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer__bottom {
  padding: 1rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__copy {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

/* Çok sayfa, logolar */
.page-main {
  padding: 2rem max(0.75rem, env(safe-area-inset-left)) 3.5rem max(0.75rem, env(safe-area-inset-right));
  background: var(--color-primary-dark);
  min-height: 42vh;
}

.page-main.page-main--standings {
  padding: 0 0 2.5rem;
  background: transparent;
}

.page-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.page-lead {
  color: var(--color-muted);
  margin: 0;
}

.page-hero {
  min-height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.page-content {
  padding-bottom: 2rem;
}

/* CMS sayfaları: teknik kadro / altyapı — admin’den eklenen görseller */
.page-staff-section {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

@media (min-width: 900px) {
  .page-staff-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-staff-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.page-staff-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--color-accent) 55%, transparent);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .page-staff-card:hover {
    border-color: rgba(220, 38, 38, 0.45);
  }
}

.page-staff-card__photo {
  aspect-ratio: 4 / 5;
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.page-staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.page-staff-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.45), rgba(var(--accent-rgb), 0.5));
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 3.25rem);
  color: rgba(255, 255, 255, 0.92);
}

.page-staff-card__meta {
  padding: 1rem 1.05rem 1.15rem;
  text-align: center;
}

.page-staff-card__name {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #fff;
}

.page-staff-card__role {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.rte p {
  margin: 0 0 1rem;
}

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

.team-logo {
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  padding: 2px;
}

.team-logo--xs {
  width: 28px;
  height: 28px;
}

.team-logo--sm {
  width: 40px;
  height: 40px;
}

.team-logo--md {
  width: 56px;
  height: 56px;
}

.team-logo--xl {
  width: 112px;
  height: 112px;
}

.team-logo--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.35), rgba(var(--accent-rgb), 0.45));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.team-logo--placeholder.team-logo--xl {
  font-size: 2.25rem;
  border-radius: 18px;
}

/* Hero sıradaki maç, akış fikstür, fikstür sayfası — gerçek logolar transparan, çerçevesiz */
.hero-fixture-card .team-logo:not(.team-logo--placeholder),
.fixture-card--flow .team-logo:not(.team-logo--placeholder),
.fixture-card--modern .team-logo:not(.team-logo--placeholder),
.page-fixtures .team-logo:not(.team-logo--placeholder) {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.hero-fixture-card .team-logo--placeholder,
.fixture-card--flow .team-logo--placeholder,
.fixture-card--modern .team-logo--placeholder,
.page-fixtures .team-logo--placeholder {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  box-shadow: none;
}

/* Fikstür kartları — modern */
.fixture-card--modern {
  padding: 1.15rem 1.2rem 1.1rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.fixture-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.fixture-card__teams-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.65rem 0.5rem;
  align-items: center;
}

.fixture-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  min-width: 0;
}

.fixture-team--home .fixture-side,
.fixture-team--away .fixture-side {
  align-self: center;
}

.fixture-team__name {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.82);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
}

.fixture-card__scorebox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 4.5rem;
}

.fixture-score-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--color-accent);
  line-height: 1;
}

.fixture-score-num--vs {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}

.fixture-score-sep {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.25rem;
}

.fixture-card__venue {
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
}

body.theme-gakla .fixture-card--modern {
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

body.theme-gakla .fixture-team__name {
  color: var(--ink-muted);
}

body.theme-gakla .fixture-score-num {
  color: var(--color-accent);
}

body.theme-gakla .fixture-score-num--vs {
  color: var(--color-primary);
}

body.theme-gakla .fixture-card__venue {
  border-top-color: var(--line);
  color: var(--ink-muted);
}

/* Fikstür sayfası: kartlar dikey, tam genişlik (yatay kaydırma yok) */
.page-main .fixture-strip.page-fixtures {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-x: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}

.page-main .fixture-strip.page-fixtures .fixture-card--modern {
  flex: none;
  width: 100%;
  max-width: none;
  scroll-snap-align: unset;
}

/* Sıradaki maç — logo odaklı */
.next-match__card--modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.next-match__layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem 1rem;
  align-items: center;
}

.next-match__club {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  min-width: 0;
}

.next-match__club-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  max-width: 11rem;
}

.next-match__mid {
  text-align: center;
  min-width: 8rem;
}

.next-match__vs-wrap {
  margin: 0.35rem 0;
}

.next-match__countdown-wrap {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
  .next-match__layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .next-match__mid {
    order: -1;
  }

  .fixture-card__teams-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fixture-card__scorebox {
    order: 2;
    grid-column: 1 / -1;
  }
}

.fixture-row--team {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.fixture-row--team .fixture-side {
  flex: 0 0 1.85rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.fixture-row--team .fixture-name {
  flex: 1 1 auto;
  min-width: 0;
}

.fixture-row--team .fixture-score {
  flex: 0 0 auto;
  margin-left: auto;
}

.fixture-score--placeholder {
  visibility: hidden;
  min-width: 2.5ch;
}

.match-teams--logos {
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.stand-team {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.stand-team__logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
  box-shadow: none;
  border: none;
}

.stand-team__name {
  font-weight: 600;
}

.player-card__photo {
  margin: -0.15rem auto 0.65rem;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 180px;
  aspect-ratio: 3/4;
}

.player-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-fixtures {
  flex-wrap: wrap;
  overflow: visible;
}

.page-fixtures .fixture-card {
  flex: 1 1 min(280px, 100%);
}

/* --------------------------------------------------------------------------
   Gakla açık tema (beyaz header, kırmızı şerit, açık bölümler)
   Telifli görseller/logolar kopyalanmaz; düzen ve tipografi referans alınır.
   -------------------------------------------------------------------------- */
body.theme-gakla {
  --ink: #181c22;
  --ink-muted: #5c6473;
  --line: #e2e5ec;
  --bg-page: #eceef3;
  --bg-card: #ffffff;
  --bg-muted: #f4f6fa;
}

body.theme-gakla {
  background: var(--bg-page);
  color: var(--ink);
}

body.theme-gakla .hero {
  color: #fff;
}

body.theme-gakla .hero-slide__lead {
  color: rgba(255, 255, 255, 0.9);
}

body.theme-gakla .top-bar--ref {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.theme-gakla .top-bar__left a,
body.theme-gakla .top-bar__store-line {
  color: #fff;
}

body.theme-gakla .site-header--ref {
  box-shadow: none;
}

body.theme-gakla .logo__text strong {
  color: #fff;
}

body.theme-gakla .logo__text span {
  color: rgba(255, 255, 255, 0.72);
}

body.theme-gakla .logo__shield {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

body.theme-gakla .header-inner {
  position: relative;
}

body.theme-gakla .nav__link {
  color: #fff;
  font-size: 1.08rem;
}

body.theme-gakla .nav__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

body.theme-gakla .nav__item:not(.nav__item--dropdown) > .nav__link.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

body.theme-gakla .nav__item.is-active > .nav__link--parent,
body.theme-gakla .site-header--ref .nav__item--dropdown:hover > .nav__link--parent {
  background: var(--color-accent);
  color: #fff;
}

body.theme-gakla .nav__dropdown {
  background: #1a1a1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

body.theme-gakla .nav__dropdown .nav__link {
  color: rgba(255, 255, 255, 0.92);
}

body.theme-gakla .nav__dropdown a:hover,
body.theme-gakla .nav__dropdown a.is-active {
  background: rgba(174, 10, 11, 0.28);
  color: #fff;
}

body.theme-gakla .menu-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

body.theme-gakla .header-action-btn {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

body.theme-gakla .header-action-btn--store {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(174, 10, 11, 0.3);
}

body.theme-gakla .hero-fixture-card {
  background: rgba(22, 22, 26, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
}

body.theme-gakla .hero-fixture-card__date,
body.theme-gakla .hero-fixture-card__time {
  color: rgba(255, 255, 255, 0.65);
}

body.theme-gakla .hero-fixture-card__team-name {
  color: rgba(255, 255, 255, 0.92);
}

body.theme-gakla .hero-fixture-card__vs {
  color: rgba(255, 255, 255, 0.35);
}

body.theme-gakla .hero-fixture-card__venue {
  color: rgba(255, 255, 255, 0.6);
}

body.theme-gakla .countdown--compact .countdown__unit {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.1);
}

body.theme-gakla .countdown--compact .countdown__value {
  color: #fff;
}

body.theme-gakla .countdown--compact .countdown__label {
  color: rgba(255, 255, 255, 0.55);
}

body.theme-gakla .countdown--compact .countdown__sep {
  color: rgba(255, 255, 255, 0.35);
}

body.theme-gakla .bg-strip {
  color: #fff;
}

body.theme-gakla .bg-strip .section-head h2 {
  color: #fff;
}

body.theme-gakla .bg-strip .section-head p,
body.theme-gakla .bg-strip .section-head__lead {
  color: rgba(255, 255, 255, 0.82);
}

body.theme-gakla .bg-strip .section-label {
  color: #ffb3b3;
}

body.theme-gakla .bg-strip .link-more {
  color: #ffc9c9;
}

body.theme-gakla .bg-strip .link-more:hover {
  color: #fff;
}

body.theme-gakla .bg-strip .hint-scroll {
  color: rgba(255, 255, 255, 0.65);
}

body.theme-gakla .section--flow {
  background: var(--color-primary-dark);
  color: #fff;
}

body.theme-gakla .section--flow .fixture-card--flow {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

body.theme-gakla .section--flow .fixture-team__name--flow {
  color: rgba(255, 255, 255, 0.92) !important;
}

body.theme-gakla .home-block.section--light .section-head h2,
body.theme-gakla .home-block.section--muted .section-head h2 {
  color: inherit;
}

body.theme-gakla .section--light,
body.theme-gakla .section--muted {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

body.theme-gakla .section--light {
  background: var(--bg-card);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  --block-muted: var(--ink-muted);
}

body.theme-gakla .section--muted {
  background: var(--bg-muted);
  color: var(--ink);
}

body.theme-gakla .section--light .section-head h2,
body.theme-gakla .section--muted .section-head h2 {
  color: var(--color-primary);
}

body.theme-gakla .section--light .section-head p,
body.theme-gakla .section--muted .section-head p {
  color: var(--ink-muted);
}

body.theme-gakla .section--light .section-label,
body.theme-gakla .section--muted .section-label {
  color: var(--color-accent);
}

body.theme-gakla .news-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

body.theme-gakla .news-card--link:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

body.theme-gakla .news-card__title {
  color: var(--ink);
}

body.theme-gakla .news-card__excerpt,
body.theme-gakla .news-card__time {
  color: var(--ink-muted);
}

body.theme-gakla .section-head--news h2 {
  color: var(--ink);
}

body.theme-gakla .section--light .table-wrap:not(.table-wrap--standings) {
  border-color: var(--line);
  background: var(--bg-card);
}

body.theme-gakla .standings-panel {
  background: var(--bg-card);
  border-color: rgba(var(--primary-rgb), 0.14);
  box-shadow: 0 8px 32px rgba(26, 36, 88, 0.08);
}

body.theme-gakla .standings-panel__head {
  border-bottom-color: var(--color-accent);
}

body.theme-gakla .section--standings-wrap .standings,
body.theme-gakla .section--light .standings,
body.theme-gakla .page-main--standings .standings {
  background: var(--bg-card);
  color: var(--ink);
}

body.theme-gakla .section--standings-wrap .standings th,
body.theme-gakla .section--light .standings th,
body.theme-gakla .page-main--standings .standings th {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.14) 0%, rgba(var(--primary-rgb), 0.08) 100%);
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
}

body.theme-gakla .section--standings-wrap .standings thead th:last-child,
body.theme-gakla .section--light .standings thead th:last-child,
body.theme-gakla .page-main--standings .standings thead th:last-child {
  color: var(--color-accent);
  background: rgba(var(--accent-rgb), 0.12);
}

body.theme-gakla .section--standings-wrap .standings td,
body.theme-gakla .section--light .standings td,
body.theme-gakla .page-main--standings .standings td {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

body.theme-gakla .section--standings-wrap .standings tbody tr:nth-child(even) td,
body.theme-gakla .section--light .standings tbody tr:nth-child(even) td,
body.theme-gakla .page-main--standings .standings tbody tr:nth-child(even) td {
  background: rgba(var(--primary-rgb), 0.03);
}

body.theme-gakla .section--standings-wrap .standings tr:hover td,
body.theme-gakla .section--light .standings tr:hover td,
body.theme-gakla .page-main--standings .standings tr:hover td {
  background: rgba(var(--primary-rgb), 0.06);
}

body.theme-gakla .section--standings-wrap .standings .highlight,
body.theme-gakla .section--light .standings .highlight,
body.theme-gakla .page-main--standings .standings .highlight {
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.14) 0%, rgba(var(--accent-rgb), 0.04) 100%);
  box-shadow: inset 3px 0 0 var(--color-accent);
}

body.theme-gakla .section--standings-wrap .standings td.num:last-child,
body.theme-gakla .section--light .standings td.num:last-child,
body.theme-gakla .page-main--standings .standings td.num:last-child {
  color: var(--color-accent);
}

body.theme-gakla .section--light .table-note {
  color: var(--ink-muted);
}

body.theme-gakla #instagram .fixture-card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-muted) 100%);
  color: var(--ink-muted);
}

.instagram-feed-strip {
  align-items: stretch;
}

.instagram-feed-card {
  flex: 0 0 min(220px, 72vw);
  scroll-snap-align: start;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--color-surface, #fff);
  box-shadow: 0 0.35rem 1rem rgba(15, 23, 42, 0.06);
}

.instagram-feed-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-feed-card--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.22);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  pointer-events: none;
}

body.theme-gakla #instagram .instagram-feed-card {
  border-color: var(--line);
  background: var(--bg-card);
}

body.theme-gakla #instagram .instagram-feed-card--placeholder {
  color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
}

body.theme-gakla .jersey-copy h3 {
  color: var(--color-primary);
}

body.theme-gakla .jersey-copy p {
  color: var(--ink-muted);
}

body.theme-gakla .jersey-tabs button {
  background: var(--bg-card);
  border-color: var(--line);
  color: var(--ink);
}

body.theme-gakla .player-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

body.theme-gakla .player-card__num {
  color: rgba(26, 36, 88, 0.12);
}

body.theme-gakla .player-card h4 {
  color: var(--ink);
}

body.theme-gakla .player-card__meta {
  color: var(--ink-muted);
}

body.theme-gakla .contact-card {
  background: var(--bg-muted);
  border: 1px solid var(--line);
}

body.theme-gakla .contact-card h3 {
  color: var(--color-primary);
}

body.theme-gakla .contact-card p,
body.theme-gakla .contact-card a {
  color: var(--ink-muted);
}

body.theme-gakla .page-main--contact {
  --contact-text: var(--ink);
  --contact-muted: var(--ink-muted);
  --contact-label: #4b5563;
  --contact-placeholder: #9ca3af;
  --contact-card-bg: var(--bg-muted);
  --contact-card-border: var(--line);
  --contact-input-bg: #ffffff;
  --contact-input-color: var(--ink);
  --contact-input-border: rgba(15, 23, 42, 0.18);
  --contact-map-bg: #e2e8f0;
}

body.theme-gakla .contact-alert--ok {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.35);
  color: #14532d;
}

body.theme-gakla .contact-alert--err {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #991b1b;
}

body.theme-gakla .page-main {
  background: var(--bg-page);
  color: var(--ink);
  min-height: 50vh;
}

body.theme-gakla .page-title {
  color: var(--color-primary);
}

body.theme-gakla .page-main--standings .page-title--on-standings-band {
  color: #fff;
}

body.theme-gakla .page-main.page-main--standings {
  background: transparent;
}

body.theme-gakla .page-lead {
  color: var(--ink-muted);
}

@media (max-width: 720px) {
  body.theme-gakla .page-main .standings th:first-child,
  body.theme-gakla .page-main .standings td:first-child {
    background: var(--bg-card);
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.06);
  }

  body.theme-gakla .page-main .standings .highlight td:first-child {
    background: rgba(var(--accent-rgb), 0.12);
  }

  body.theme-gakla .section--standings-wrap .standings th:first-child,
  body.theme-gakla .section--standings-wrap .standings td:first-child,
  body.theme-gakla .section--light .standings th:first-child,
  body.theme-gakla .section--light .standings td:first-child {
    background: var(--bg-card);
  }

  body.theme-gakla .section--standings-wrap .standings .highlight td:first-child,
  body.theme-gakla .section--light .standings .highlight td:first-child {
    background: rgba(var(--accent-rgb), 0.1);
  }
}

body.theme-gakla .rte {
  color: var(--ink);
}

@media (max-width: 960px) {
  body.theme-gakla .nav-main {
    background: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  body.theme-gakla .nav__link {
    color: rgba(255, 255, 255, 0.95);
  }

  body.theme-gakla .nav__link:hover,
  body.theme-gakla .nav__link.is-active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  body.theme-gakla .nav__dropdown {
    background: rgba(0, 0, 0, 0.2);
    border: none;
  }

  body.theme-gakla .nav__dropdown .nav__link {
    color: rgba(255, 255, 255, 0.92);
  }

  body.theme-gakla .nav__item.is-active > .nav__link--parent {
    background: var(--color-accent);
    color: #fff;
  }
}

/* --- Mağaza (shop) --- */
.page-main--shop {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  background: #eef1f8;
  color: #1a2238;
  --shop-muted: #5a6478;
}

.page-main--shop a:not(.btn):not(.shop-card__media) {
  color: var(--color-accent);
}

.page-main--shop .page-title {
  color: var(--color-primary);
}

.page-main--shop .section-label {
  color: var(--color-accent);
}

.page-main--shop .section-head__lead {
  color: var(--shop-muted);
}

.page-main--shop .link-more {
  color: var(--color-accent);
}

.page-main--shop .shop-empty {
  color: var(--shop-muted);
}

.shop-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
}

.shop-cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-primary);
  background: #fff;
  border: 1px solid rgba(26, 34, 56, 0.12);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.shop-cat-pill:hover {
  border-color: color-mix(in srgb, var(--color-accent) 45%, transparent);
  color: var(--color-accent);
}

.shop-cat-pill.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.shop-cat-pill__count {
  display: inline-block;
  min-width: 1.25rem;
  padding: 0 0.35rem;
  margin-left: 0.15rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.08);
  line-height: 1.35;
}

.shop-cat-pill.is-active .shop-cat-pill__count {
  background: rgba(255, 255, 255, 0.25);
}

body.theme-gakla .page-main--shop {
  background: var(--bg-page, #eef1f8);
  color: var(--ink, #1a2238);
}

body.theme-gakla .page-main--shop .page-title {
  color: var(--color-primary);
}

body.theme-gakla .page-main--shop .section-head__lead,
body.theme-gakla .page-main--shop .shop-empty {
  color: var(--ink-muted, #5a6478);
}

body.theme-gakla .page-main--shop .section-label {
  color: var(--color-accent);
}

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

.shop-card {
  background: #fff;
  color: #1a2238;
  border-radius: var(--radius, 12px);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.shop-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.06);
}

.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 3rem;
  opacity: 0.35;
}

.shop-card__body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.shop-card__badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.shop-card__title {
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.3;
}

.shop-card__title a {
  color: #1a2238;
  text-decoration: none;
}

.shop-card__title a:hover {
  text-decoration: underline;
  color: var(--color-accent);
}

.shop-card__price {
  font-weight: 700;
  margin: 0;
  color: #1a2238;
}

.shop-card__form {
  margin-top: auto;
}

.shop-empty {
  padding: 2rem 0;
  color: var(--color-muted);
}

.shop-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  color: var(--color-muted);
}

.shop-breadcrumb a {
  color: inherit;
}

.shop-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .shop-product {
    grid-template-columns: 1fr;
  }
}

.shop-product__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius, 12px);
}

.shop-product__placeholder {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  font-size: 4rem;
  background: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius, 12px);
}

.shop-product__price {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.shop-stock-out {
  color: var(--color-accent);
  font-weight: 600;
}

.shop-qty-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.45rem;
}

.shop-qty-input {
  width: 5rem;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.shop-cart__table {
  width: 100%;
  border-collapse: collapse;
}

.shop-cart__table th,
.shop-cart__table td {
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.shop-cart__table th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.shop-cart__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.shop-cart__total {
  font-size: 1.15rem;
  margin: 0;
}

.shop-inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.btn--xs {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}

.shop-checkout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

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

.shop-checkout__summary {
  padding: 1.25rem;
  border-radius: var(--radius, 12px);
  background: rgba(0, 0, 0, 0.04);
}

.shop-checkout__lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-checkout__lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shop-checkout__h {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}

.shop-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.shop-field--full {
  grid-column: 1 / -1;
}

.shop-field span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.shop-field input,
.shop-field textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.shop-pay-methods {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.shop-pay-opt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.shop-checkout__hint {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.shop-checkout__submit {
  margin-top: 0.5rem;
}

.shop-error {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(174, 10, 11, 0.12);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.shop-thanks {
  max-width: 42rem;
}

.shop-thanks--warn {
  padding: 1rem 1.25rem;
  border-radius: var(--radius, 12px);
  background: rgba(0, 0, 0, 0.05);
}

.shop-order-ref {
  font-size: 1.05rem;
}

.shop-bank-box {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius, 12px);
  background: rgba(0, 0, 0, 0.04);
}

.shop-pay-iframe-wrap {
  margin: 1rem 0;
  min-height: 560px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius, 12px);
  overflow: hidden;
}

.shop-pay-iframe-note {
  color: var(--color-muted);
}

.shop-iyzico-form {
  padding: 1rem 0;
}
