﻿:root {
  /* Canlı palet — 2026 görsel kimliği (tunnel / dalga) */
  --purple: #7c3aed;
  --purple-soft: #c4b5fd;
  --blue: #2563eb;
  --sky: #38bdf8;
  --teal: #06b6d4;
  --pink: #ec4899;
  --red: #e11d48;
  --orange: #ff6b14;
  --yellow: #facc15;
  --lime: #bef264;
  --forest: #15803d;
  --navy: #0f2744;
  --black: #0a0f1a;
  --white: #ffffff;
  --bg: #f8faff;
  --surface: #ffffff;
  --text: #0f1729;
  --muted: rgba(15, 23, 41, 0.62);
  --border: rgba(15, 23, 41, 0.1);
  --gradient: linear-gradient(
    125deg,
    var(--teal) 0%,
    var(--sky) 18%,
    var(--blue) 38%,
    var(--purple) 58%,
    var(--pink) 78%,
    var(--orange) 100%
  );
  --gradient-soft: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.2),
    rgba(56, 189, 248, 0.18),
    rgba(124, 58, 237, 0.15),
    rgba(236, 72, 153, 0.12)
  );
  --radius: 16px;
  --font: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 85% 55% at 100% -15%, rgba(6, 182, 212, 0.22), transparent 55%),
    radial-gradient(ellipse 75% 45% at -5% 105%, rgba(190, 242, 100, 0.2), transparent 50%),
    radial-gradient(ellipse 70% 50% at 95% 95%, rgba(196, 181, 253, 0.25), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(255, 107, 20, 0.08), transparent 45%);
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.035;
  z-index: 9999;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow-orb {
  position: fixed;
  width: 55vmax;
  height: 55vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}

.glow-orb--1 {
  top: -18%;
  right: -12%;
  background: radial-gradient(circle, var(--sky) 0%, transparent 72%);
}

.glow-orb--2 {
  bottom: -22%;
  left: -8%;
  background: radial-gradient(circle, var(--purple-soft) 0%, transparent 72%);
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  color: var(--navy);
}

.logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.12);
}

nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

nav a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.btn--primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 10px 36px rgba(37, 99, 235, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.45) inset,
    0 14px 44px rgba(6, 182, 212, 0.4);
}

.btn--ghost {
  background: var(--surface);
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15, 23, 41, 0.06);
}

.btn--ghost:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background: linear-gradient(180deg, #fff, #f3f6ff);
}

.hero {
  padding: 2.5rem 0 4rem;
  text-align: center;
}

.hero-brand {
  margin: 0 auto 2rem;
  max-width: 640px;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 24px 64px rgba(15, 39, 68, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  background: var(--surface);
}

.hero-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(190, 242, 100, 0.35), rgba(56, 189, 248, 0.25));
  border: 1px solid rgba(21, 128, 61, 0.2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 2px rgba(21, 128, 61, 0.25);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.94); }
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--navy);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(15, 39, 68, 0.06);
}

.stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 0.5rem;
}

h2 {
  margin: 0 0 2rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 22px rgba(15, 39, 68, 0.05);
}

.card:hover {
  border-color: rgba(6, 182, 212, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card-icon--1 { background: linear-gradient(135deg, var(--teal), var(--sky)); }
.card-icon--2 { background: linear-gradient(135deg, var(--orange), var(--yellow)); color: var(--navy); }
.card-icon--3 { background: linear-gradient(135deg, var(--pink), var(--purple)); }

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hosts-lead {
  margin: -0.5rem 0 1.75rem;
  max-width: 42rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.55;
}

.hosts-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.host-card {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 39, 68, 0.08);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.host-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(15, 39, 68, 0.12);
  border-color: color-mix(in srgb, var(--host-accent, var(--blue)) 35%, var(--border));
}

.host-card__accent {
  height: 5px;
  background: var(--host-accent, var(--blue));
}

.host-card__inner {
  padding: 1.35rem 1.35rem 1.25rem;
}

.host-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.host-card__flag {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(15, 23, 41, 0.1);
  box-shadow: 0 4px 14px rgba(15, 23, 41, 0.08);
}

.host-card__badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--host-accent-soft, rgba(37, 99, 235, 0.12));
  color: var(--host-accent, var(--blue));
  white-space: nowrap;
}

.host-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.host-card__tagline {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.host-card__cities {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: var(--host-accent-soft, rgba(37, 99, 235, 0.08));
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.host-card__cities span {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.host-card__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.host-card__facts li {
  text-align: center;
  padding: 0.55rem 0.35rem;
  border-radius: 10px;
  background: rgba(15, 23, 41, 0.04);
  border: 1px solid var(--border);
}

.host-card__facts li span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.host-card__facts li strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
}

.teams-meta {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.teams-block {
  margin-bottom: 2.25rem;
}

.teams-block:last-child {
  margin-bottom: 0;
}

.teams-subtitle {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.team-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 4px 14px rgba(15, 39, 68, 0.05);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.team-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 39, 68, 0.09);
  border-color: rgba(37, 99, 235, 0.3);
}

.team-item--pickable {
  cursor: pointer;
}

.team-item--pickable:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.team-item--active {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.14);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(6, 182, 212, 0.06));
}

.flag-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
  border: 1px solid rgba(15, 23, 41, 0.12);
  box-shadow: 0 1px 3px rgba(15, 23, 41, 0.1);
  flex-shrink: 0;
  background: #fff;
}

.team-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.team-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}

.team-item-meta {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
}

.players-note {
  margin: -0.25rem 0 1.5rem;
  max-width: 40rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.players-note[hidden],
.players-empty[hidden] {
  display: none;
}

.players-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  margin: 0 0 2rem;
  padding: 2.25rem 1.5rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px dashed color-mix(in srgb, var(--blue) 22%, var(--border));
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(56, 189, 248, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.88));
  box-shadow: 0 12px 40px rgba(15, 39, 68, 0.06);
}

.players-empty__icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 16px;
  font-size: 1.45rem;
  background: var(--gradient);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.players-empty__title {
  margin: 0.15rem 0 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.players-empty__text {
  margin: 0;
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.players-empty__cta {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.players-empty__cta:hover {
  transform: translateY(-1px);
  background: rgba(37, 99, 235, 0.12);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

#players-squads {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-squad {
  position: relative;
}

.team-squad[hidden] {
  display: none;
}

.team-squad[data-team="TUR"] {
  --squad-accent: #e30a17;
  --squad-accent-2: #ff4d5e;
  --squad-accent-soft: rgba(227, 10, 23, 0.14);
  --squad-stage-tint: rgba(6, 182, 212, 0.08);
}

.team-squad__glow {
  position: absolute;
  inset: -12% -4% auto;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--squad-accent, var(--teal)) 28%, transparent),
    transparent 68%
  );
  filter: blur(18px);
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.team-squad--open .team-squad__glow {
  opacity: 0.85;
}

.team-squad__shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.92) 100%),
    var(--surface);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 50px rgba(15, 39, 68, 0.09);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.team-squad:hover .team-squad__shell {
  transform: translateY(-2px);
}

.team-squad--open .team-squad__shell {
  border-color: color-mix(in srgb, var(--squad-accent, var(--blue)) 28%, var(--border));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 64px rgba(15, 39, 68, 0.12),
    0 0 0 1px color-mix(in srgb, var(--squad-accent, var(--blue)) 10%, transparent);
}

.team-squad__shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--squad-accent, var(--teal)),
    var(--squad-accent-2, var(--sky)),
    color-mix(in srgb, var(--squad-accent, var(--blue)) 70%, var(--purple))
  );
}

.team-squad__shell::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--squad-accent-soft, rgba(6, 182, 212, 0.12)), transparent 70%);
  pointer-events: none;
}

.team-squad__trigger {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.35rem 1.25rem 1.45rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background 0.25s ease;
}

.team-squad__trigger:hover {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--squad-accent-soft, rgba(37, 99, 235, 0.06)) 55%, transparent),
    transparent 75%
  );
}

.team-squad__trigger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.team-squad__trigger-main {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 0;
}

.team-squad__trigger-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.team-squad__toggle-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.team-squad__flag-wrap {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 18px;
  background:
    linear-gradient(145deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 41, 0.08);
  box-shadow:
    0 8px 20px rgba(15, 39, 68, 0.1),
    0 0 0 3px color-mix(in srgb, var(--squad-accent-soft, rgba(37, 99, 235, 0.08)) 80%, transparent);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-squad__trigger:hover .team-squad__flag-wrap {
  transform: scale(1.04);
  box-shadow:
    0 10px 24px rgba(15, 39, 68, 0.12),
    0 0 0 3px color-mix(in srgb, var(--squad-accent, var(--blue)) 18%, transparent);
}

.team-squad__flag {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 9px;
  object-fit: contain;
}

.team-squad__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.team-squad__kicker {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--squad-accent, var(--blue));
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--squad-accent-soft, rgba(37, 99, 235, 0.1)) 85%, #fff);
  border: 1px solid color-mix(in srgb, var(--squad-accent, var(--blue)) 14%, transparent);
}

.team-squad__name {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.1;
}

.team-squad__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.team-squad__chip {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: rgba(15, 39, 68, 0.05);
  border: 1px solid rgba(15, 39, 68, 0.07);
  white-space: nowrap;
}

.team-squad__count {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--squad-accent-soft, rgba(37, 99, 235, 0.12)) 90%, #fff),
    #fff
  );
  border: 1px solid color-mix(in srgb, var(--squad-accent, var(--blue)) 16%, transparent);
  box-shadow: 0 4px 12px rgba(15, 39, 68, 0.06);
}

.team-squad__hint {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.team-squad__trigger:hover .team-squad__hint {
  color: color-mix(in srgb, var(--squad-accent, var(--blue)) 70%, var(--navy));
}

.team-squad__chevron {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(15, 39, 68, 0.06);
  border: 1px solid rgba(15, 39, 68, 0.06);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease, border-color 0.25s ease;
}

.team-squad__chevron::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-squad--open .team-squad__chevron {
  background: color-mix(in srgb, var(--squad-accent-soft, rgba(37, 99, 235, 0.14)) 90%, #fff);
  border-color: color-mix(in srgb, var(--squad-accent, var(--blue)) 18%, transparent);
}

.team-squad--open .team-squad__chevron::before {
  transform: rotate(-135deg) translateY(-1px);
}

.team-squad__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-squad--open .team-squad__panel {
  grid-template-rows: 1fr;
}

.team-squad__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.team-squad--open .team-squad__panel-inner {
  padding: 0 1.15rem 1.35rem 1.45rem;
}

.team-squad__stage {
  position: relative;
  border-radius: 18px;
  padding: 1rem 1rem 1.15rem;
  background:
    radial-gradient(ellipse 90% 80% at 100% 0%, var(--squad-stage-tint, rgba(6, 182, 212, 0.1)), transparent 55%),
    linear-gradient(180deg, rgba(15, 39, 68, 0.03), rgba(15, 39, 68, 0.015));
  border: 1px solid rgba(15, 39, 68, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.team-squad__stage-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(15, 39, 68, 0.1);
}

.team-squad__stage-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.team-squad__stage-note {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted);
}

.stickers-showcase--album {
  padding: 0.15rem 0 0;
}

.stickers-showcase--album .panini-sticker {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.stickers-showcase--album .panini-sticker:hover {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0 24px 48px rgba(15, 39, 68, 0.22));
}

@media (prefers-reduced-motion: reduce) {
  .team-squad__panel,
  .team-squad__chevron,
  .team-squad__chevron::before,
  .team-squad__shell,
  .team-squad__flag-wrap,
  .stickers-showcase--album .panini-sticker {
    transition: none;
  }

  .team-squad:hover .team-squad__shell,
  .stickers-showcase--album .panini-sticker:hover {
    transform: none;
  }
}

@media (max-width: 720px) {
  .team-squad__trigger {
    align-items: flex-start;
    padding: 1rem;
  }

  .team-squad__trigger-actions {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.55rem;
  }

  .team-squad__toggle-copy {
    align-items: flex-end;
  }

  .team-squad__flag-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 16px;
  }

  .team-squad__flag {
    width: 2.25rem;
    height: 2.25rem;
  }

  .team-squad--open .team-squad__panel-inner {
    padding: 0 0.85rem 1rem;
  }

  .team-squad__stage {
    padding: 0.85rem;
  }

  .team-squad__stage-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(124px, 1fr));
  gap: 0.85rem;
}

.player-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(15, 39, 68, 0.07);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.player-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 39, 68, 0.12);
  border-color: rgba(124, 58, 237, 0.25);
}

.player-card__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 23, 41, 0.06), rgba(15, 23, 41, 0.02));
}

.player-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.player-card__body {
  padding: 0.85rem 0.9rem 1rem;
}

.player-card__name {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.player-card__role {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .hosts-showcase {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .stats {
    grid-template-columns: 1fr;
  }
  nav a:not(.btn) {
    display: none;
  }
}

.cta {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(15, 39, 68, 0.08);
}

.cta::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 200deg at 50% 50%,
    var(--teal),
    var(--sky),
    var(--purple),
    var(--pink),
    var(--orange),
    var(--lime),
    var(--teal)
  );
  opacity: 0.07;
  animation: spin 22s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin-bottom: 0.75rem;
}

.cta p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

footer p {
  margin: 0.35rem 0;
}

/* Panini-style sticker */
.stickers-note {
  max-width: 640px;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.stickers-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 1rem 0 0.5rem;
}

.panini-sticker {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(15, 39, 68, 0.2));
}

.panini-sticker__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 0 22px 22px;
}

@media (max-width: 900px) {
  .stickers-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stickers-showcase {
    gap: 0.75rem;
  }
}

/* FIFA WC 2026 loader — https://codepen.io/donotfold/pen/JobKaVY (HTML: PNG grid dışında = CodePen ile aynı yerleşim) */
@property --scale {
  syntax: "<number>";
  inherits: true;
  initial-value: 0.8;
}

body.wc-splash-active {
  overflow: hidden;
}

#wc-splash.wc-splash {
  position: fixed;
  inset: 0;
  z-index: 10050;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  background: #1c2379;
  color: #fff;
  --char-size: 20vmin;
  --speed: 10s;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

#wc-splash.wc-splash.wc-splash--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* .logo ile çakışmaması için sınıf adı farklı; kurallar CodePen .logo ile aynı */
#wc-splash .wc-loader-logo {
  --r: calc(var(--char-size) / 3);
  --gap: calc(var(--char-size) / 15);
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: var(--gap);
  height: 100%;
}

#wc-splash .wc-num {
  display: grid;
  justify-content: center;
}

#wc-splash .wc-num-two {
  align-content: end;
  background: #ea394b;
}

#wc-splash .wc-num-two span {
  transform-origin: 50% 100%;
}

#wc-splash .wc-num-six {
  align-content: start;
  z-index: -1;
}

#wc-splash .wc-num-six span {
  transform-origin: 50% calc(sibling-index() * 0.01%);
}

#wc-splash .wc-num span {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  display: block;
  width: calc(var(--r) * 4);
  height: calc(var(--r) * 3);
  container-type: size;
  z-index: calc(sibling-count() - sibling-index());
}

#wc-splash .wc-num span:not(:first-child) {
  scale: calc((sibling-index() - 1) * var(--scale));
  animation: scaleIt var(--speed, 0s) calc(sibling-index() * -100ms) ease-in-out infinite;
}

#wc-splash .wc-num span:nth-child(10n + 1) { color: #f1fe67; }
#wc-splash .wc-num span:nth-child(10n + 2) { color: #6b1d18; }
#wc-splash .wc-num span:nth-child(10n + 3) { color: #c3291c; }
#wc-splash .wc-num span:nth-child(10n + 4) { color: #ac89f7; }
#wc-splash .wc-num span:nth-child(10n + 5) { color: #374ff5; }
#wc-splash .wc-num span:nth-child(10n + 6) { color: #eb4f27; }
#wc-splash .wc-num span:nth-child(10n + 7) { color: #bce949; }
#wc-splash .wc-num span:nth-child(10n + 8) { color: #5a0de0; }
#wc-splash .wc-num span:nth-child(10n + 9) { color: #91fbdc; }
#wc-splash .wc-num span:nth-child(10n + 10) { color: #1e4b3f; }
#wc-splash .wc-num span:nth-child(1) { color: #fff; }

#wc-splash .wc-num span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentcolor;
}

#wc-splash .wc-num-two span::before {
  clip-path: shape(
    from 0 var(--r),
    arc to var(--r) 0 of var(--r) var(--r) cw,
    line to calc(var(--r) * 3) 0,
    arc to calc(var(--r) * 3) calc(var(--r) * 2) of var(--r) var(--r) cw,
    line to calc(var(--r) * 4) calc(var(--r) * 2),
    line to calc(var(--r) * 4) calc(var(--r) * 3),
    line to 0 calc(var(--r) * 3),
    line to 0 calc(var(--r) * 2),
    arc to var(--r) var(--r) of var(--r) var(--r) cw,
    close
  );
}

#wc-splash .wc-num-six span::before {
  clip-path: shape(
    from 0 var(--r),
    arc to var(--r) 0 of var(--r) var(--r) cw,
    line to calc(var(--r) * 3) 0,
    arc to calc(var(--r) * 4) var(--r) of var(--r) var(--r) cw,
    line to calc(var(--r) * 3) var(--r),
    arc to calc(var(--r) * 3) calc(var(--r) * 3) of var(--r) var(--r) cw,
    line to var(--r) calc(var(--r) * 3),
    arc to 0 calc(var(--r) * 2) of var(--r) var(--r) cw,
    close
  );
}

#wc-splash .wc-num-six span:first-child::after {
  content: "TM";
  position: absolute;
  bottom: 0;
  left: 100%;
  rotate: -90deg;
  transform-origin: 0 100%;
  font-size: 8cqb;
  font-family: sans-serif;
  text-box: trim-both cap alphabetic;
}

/* CodePen’deki gibi: img grid çocuğu değil → containing block #wc-splash (fixed), tam orta */
#wc-splash > img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  display: block;
  margin: 0;
  height: calc(var(--char-size) * 1.55);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@keyframes scaleIt {
  20% { --scale: 2; }
  40% { --scale: 0.6; }
  70% { --scale: 1.4; }
}
