/* ── Self-hosted Inter Font ─────────────────────────── */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── CSS Custom Properties ─────────────────────────── */
:root {
  --color-primary: #3949ab;
  --color-primary-hover: #283593;
  --color-bg: #f0f2f5;
  --color-surface: #fff;
  --color-text: #333;
  --color-heading: #000049;
  --color-label: #3949ab;
  --color-border: #ccc;
  --color-card-bg: #f8f9fa;
  --color-card-border: #e9ecef;
  --color-vs: #c62828;
  --color-success-bg: #e8f5e9;
  --color-success-text: #2e7d32;
  --color-success-border: #a5d6a7;
  --color-error-bg: #ffebee;
  --color-error-text: #c62828;
  --color-error-border: #ef9a9a;
  --color-download: #4caf50;
  --color-download-hover: #45a049;
  --color-twitter: #1da1f2;
  --color-twitter-hover: #1a91da;
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #1da851;
  --color-copy: #6c757d;
  --color-copy-hover: #545b62;
  --color-ucl: #0b1f6f;
  --color-uel: #f26522;
  --color-uecl: #00a651;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 25px;
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-btn: 0 1px 6px rgba(0, 0, 0, 0.1);
  --max-width: 600px;
  --transition: all 0.2s ease;
}

/* ── Base ──────────────────────────────────────────── */
body {
  font-family: "Inter", sans-serif;
  padding: 20px;
  background-color: var(--color-bg);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}
.bmc {
  position: fixed;
  bottom: 5px;
  left: 10px;
}
.bmc img {
  height: 40px;
}
.version {
  position: fixed;
  bottom: 5px;
  right: 5px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 1px;
}
.container {
  background-color: var(--color-surface);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: var(--max-width);
}
h1,
h2 {
  color: var(--color-heading);
  text-align: center;
}
h1 {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 2.4em;
}
h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3em;
}
label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-label);
}
select,
button {
  padding: 10px 15px;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
select {
  width: 100%;
  max-width: 100%;
  background-color: var(--color-surface);
  box-sizing: border-box;
}
button {
  background-color: var(--color-primary);
  color: white;
  cursor: pointer;
  border: none;
}
button:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-btn);
}
ul {
  padding-left: 0;
  list-style: none;
}
li {
  background-color: var(--color-card-bg);
  margin: 8px 0;
  padding: 4px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  border: 1px solid var(--color-card-border);
  box-shadow: none;
}
li .team-info {
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
}
li .team-info.team-left {
  justify-content: flex-start;
}
li .team-info.team-right {
  justify-content: flex-start;
  flex-direction: row-reverse;
}
li .team-info img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background-color: var(--color-surface);
  padding: 2px;
  border: 1px solid #ddd;
  flex-shrink: 0;
}
li .team-info.team-left img {
  margin-right: 8px;
}
li .team-info.team-right img {
  margin-left: 8px;
  margin-right: 0;
}
li:nth-child(odd) .team-info.team-right span {
  font-weight: 300;
}
li:nth-child(even) .team-info.team-left span {
  font-weight: 300;
}
li .team-info span {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 50px;
}
.vs-separator {
  font-weight: bold;
  color: var(--color-vs);
  margin: 0 12px;
  flex-shrink: 0;
}
.message-box {
  padding: 12px;
  margin-top: 15px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  font-size: 0.95em;
}
.message-box.error {
  background-color: var(--color-error-bg);
  color: var(--color-error-text);
  border: 1px solid var(--color-error-border);
}
.message-box.success {
  background-color: var(--color-success-bg);
  color: var(--color-success-text);
  border: 1px solid var(--color-success-border);
}
.share-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.share-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  color: white;
  transition: var(--transition);
}
.share-buttons .btn-download {
  background-color: var(--color-download);
}
.share-buttons .btn-download:hover {
  background-color: var(--color-download-hover);
}
.share-buttons .btn-twitter {
  background-color: var(--color-twitter);
}
.share-buttons .btn-twitter:hover {
  background-color: var(--color-twitter-hover);
}
.share-buttons .btn-whatsapp {
  background-color: var(--color-whatsapp);
}
.share-buttons .btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
}
.share-buttons .btn-copy {
  background-color: var(--color-copy);
}
.share-buttons .btn-copy:hover {
  background-color: var(--color-copy-hover);
}
.share-buttons .btn-native-share {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-weight: 600;
  order: -1;
}
.share-buttons .btn-native-share:hover {
  background: linear-gradient(135deg, #5a6fd6 0%, #6a4294 100%);
}
.share-buttons .btn-native-share.hidden {
  display: none;
}

/* ── Header (inline style'lardan taşındı) ──────────── */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo {
  max-height: 80px;
  display: block;
  margin-right: 20px;
  object-fit: contain;
}

/* ── Input Group (inline style'lardan taşındı) ─────── */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.input-group .input-row {
  display: flex;
  gap: 10px;
}

/* ── Loading State ─────────────────────────────────── */
button.btn-loading {
  opacity: 0.7;
  cursor: wait;
  position: relative;
}
button.btn-loading::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Match Card Animation ──────────────────────────── */
.match-card {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ── Dil Seçici ────────────────────────────────────── */
.lang-switcher {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100;
}
.lang-switcher select {
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background-color: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  margin-right: 0;
  min-width: 72px;
}

/* ── Back Link ─────────────────────────────────────── */
.back-link {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  align-self: flex-start;
  max-width: var(--max-width);
  width: 100%;
}
.back-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

/* ── Header Sub ────────────────────────────────────── */
.header-sub {
  font-size: 0.55em;
  font-weight: 400;
  color: var(--color-label);
  letter-spacing: 1px;
}

/* ── Hub Page ──────────────────────────────────────── */
.hub {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hub-hero {
  text-align: center;
  margin-bottom: 40px;
}
.hub-title {
  font-size: 2.8em;
  font-weight: 800;
  color: var(--color-heading);
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.hub-subtitle {
  font-size: 1.1em;
  color: #666;
  margin: 0;
  max-width: 460px;
  margin-inline: auto;
  line-height: 1.5;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 28px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 4px solid transparent;
  overflow: hidden;
}
.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.hub-card--ucl {
  border-top-color: var(--color-ucl);
}
.hub-card--uel {
  border-top-color: var(--color-uel);
}
.hub-card--uecl {
  border-top-color: var(--color-uecl);
}
.hub-card__badge {
  position: absolute;
  top: 12px;
  right: -28px;
  background: var(--color-ucl);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 32px;
  transform: rotate(35deg);
}
.hub-card__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 16px;
}
.hub-card__title {
  font-size: 1.25em;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-heading);
}
.hub-card__desc {
  font-size: 0.88em;
  color: #555;
  margin: 0 0 18px;
  line-height: 1.45;
  flex: 1;
}
.hub-card__cta {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 700;
  color: var(--color-primary);
  transition: var(--transition);
}
.hub-card:hover .hub-card__cta {
  color: var(--color-primary-hover);
}

/* Hub Browse Links */
.hub-browse {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.hub-browse__link {
  font-size: 12px;
  color: #595959;
  text-decoration: none;
  transition: color 0.2s ease;
}
.hub-browse__link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Hub responsiveness */
@media (max-width: 768px) {
  .hub-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
  .hub-title {
    font-size: 2em;
  }
  .hub-hero {
    margin-bottom: 28px;
  }
  .share-buttons {
    gap: 8px;
  }
  .share-buttons button {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ── Mobil ──────────────────────────────────────────── */
@media (max-width: 600px) {
  body {
    padding: 15px;
  }
  .container {
    padding: 20px;
    max-width: calc(100vw - 10px);
    box-sizing: border-box;
  }
  .input-group {
    flex-direction: column;
  }
  select,
  button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  select {
    max-width: 100%;
  }
  li {
    flex-direction: column;
    padding: 10px;
  }
  li .team-info {
    width: 100%;
    justify-content: center !important;
    margin-bottom: 5px;
  }
  li .team-info.team-right {
    flex-direction: row;
    margin-bottom: 0;
  }
  li .team-info.team-right img {
    margin-left: 0;
    margin-right: 8px;
  }
  li .team-info:last-of-type {
    margin-bottom: 0;
  }
  .vs-separator {
    margin: 6px 0;
  }
  h1 {
    font-size: 1.6em;
  }
  h2 {
    font-size: 1.2em;
  }
  .share-buttons {
    flex-direction: column;
    align-items: center;
  }
  .share-buttons button {
    width: 100%;
    max-width: 280px;
  }
  .lang-switcher {
    top: 8px;
    right: 8px;
  }
  .header-logo {
    max-height: 56px;
    margin-right: 12px;
  }
}
/* ── Footer Credit (Web270) ─────────────────────────── */
.footer-separator {
  color: var(--color-text-muted, #595959);
  margin: 0 2px;
}
.footer-credit {
  color: var(--color-text-muted, #595959);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit:hover {
  color: var(--color-primary, #1a73e8);
}
.footer-credit strong {
  font-weight: 700;
}

/* ── Cookie Consent Banner ─────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #eee;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}
.cookie-banner a {
  color: #90caf9;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 8px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-banner__btn--accept {
  background: #2e7d32;
  color: #fff;
}
.cookie-banner__btn--accept:hover {
  background: #256b29;
}
.cookie-banner__btn--decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}
.cookie-banner__btn--decline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.cookie-banner[hidden] {
  display: none;
}

/* ── Privacy Page ──────────────────────────────────── */
.privacy-page {
  max-width: 720px;
  line-height: 1.7;
}
.privacy-page h2 {
  text-align: left;
  margin-top: 28px;
  font-size: 1.15em;
}
.privacy-page h3 {
  margin-top: 16px;
  font-size: 1em;
  color: var(--color-heading);
}
.privacy-page ul {
  padding-left: 20px;
  list-style: disc;
}
.privacy-page li {
  background: none;
  border: none;
  border-radius: 0;
  padding: 4px 0;
  display: list-item;
  font-size: 0.95em;
}
.privacy-page a {
  color: var(--color-primary);
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  text-align: center;
  margin-top: 32px;
  padding: 16px 0;
  width: 100%;
  max-width: var(--max-width);
}
.footer .disclaimer {
  font-size: 12px;
  color: #999;
  margin: 8px 0;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  font-size: 13px;
}
.footer-links a {
  color: #595959;
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Team page footer should match article width */
.team-page .footer {
  max-width: 800px;
}

/* ── Affiliate CTA ─────────────────────────────────── */
.affiliate-cta {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid #e0e0e0;
  max-width: var(--max-width);
  width: 100%;
}
.affiliate-cta__title {
  font-size: 1em;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 8px;
}
.affiliate-cta__text {
  font-size: 0.88em;
  color: #555;
  margin: 0 0 14px;
  line-height: 1.5;
}
.affiliate-cta__btn {
  display: inline-block;
  padding: 10px 28px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.affiliate-cta__btn:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-btn);
}

/* ── In-content Ad Slot ────────────────────────────── */
.ad-slot {
  margin: 16px 0;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border: 1px dashed #ddd;
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: #bbb;
  overflow: hidden;
  display: none; /* Başlangıçta gizli */
}
.ad-slot--hidden {
  display: none;
}

/* ── Streaming Links ───────────────────────────────── */
.streaming-links {
  margin-top: 20px;
  padding: 16px;
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-card-border);
  text-align: center;
}
.streaming-links__title {
  font-size: 0.95em;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 12px;
}
.streaming-links__list {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.streaming-links__list li {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}
.streaming-links__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.streaming-links__link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-btn);
}

/* ── Blog Sayfaları ────────────────────────────────── */

/* Navigation */
.blog-nav {
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 14px 20px;
  background: var(--color-surface);
  box-sizing: border-box;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.blog-nav a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
}
.blog-nav a:hover {
  color: var(--color-primary-hover);
}
.blog-nav__sep {
  color: #ccc;
  font-size: 13px;
}
.blog-nav__blog {
  color: var(--color-text) !important;
  font-weight: 600 !important;
}

/* Article */
.blog-article {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 0;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}
.blog-article__header {
  margin: 0;
  padding: 40px 44px 28px;
  border-bottom: none;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f5f0 100%);
}
.blog-article__title {
  color: var(--color-heading);
  font-size: 2.1em;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}
.blog-article__meta {
  color: #888;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.blog-article__separator {
  color: #ddd;
}
.blog-article__tags {
  margin-bottom: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Article Content */
.blog-article__content {
  line-height: 1.85;
  font-size: 16.5px;
  color: #444;
  padding: 36px 44px 44px;
}
.blog-article__content h2 {
  color: var(--color-heading);
  font-size: 1.45em;
  margin-top: 40px;
  margin-bottom: 14px;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid #eef2ff;
}
.blog-article__content h3 {
  color: var(--color-heading);
  font-size: 1.15em;
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 600;
}
.blog-article__content p {
  margin-bottom: 18px;
}
.blog-article__content ul,
.blog-article__content ol {
  margin-bottom: 18px;
  padding-left: 24px;
}
.blog-article__content li {
  margin-bottom: 8px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  display: list-item;
  justify-content: initial;
  box-shadow: none;
}
.blog-article__content strong {
  color: var(--color-heading);
  font-weight: 600;
  margin-right: 4px;}
.blog-article__content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-article__content a:hover {
  color: var(--color-primary-hover);
}
.blog-article__content blockquote {
  border-left: 4px solid var(--color-primary);
  margin: 24px 0;
  padding: 16px 24px;
  background: #f8f9ff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #555;
  font-style: italic;
  line-height: 1.7;
}
.blog-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.blog-article__content th,
.blog-article__content td {
  border: 1px solid #e8ebf0;
  padding: 12px 16px;
  text-align: left;
}
.blog-article__content th {
  background: var(--color-heading);
  color: #fff;
  font-weight: 600;
  border-color: var(--color-heading);
}
.blog-article__content tr:nth-child(even) {
  background: #f8f9fc;
}
.blog-article__content tr:hover {
  background: #eef2ff;
}
.blog-article__content code {
  background: #f1f3f5;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}
.blog-article__content hr {
  border: none;
  border-top: 2px solid #eef2ff;
  margin: 36px 0;
}

/* Blog CTA */
.blog-cta {
  margin: 0;
  padding: 32px 44px;
  background: linear-gradient(135deg, #0b1f6f 0%, #3949ab 60%, #00a651 100%);
  text-align: center;
}
.blog-cta p {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #fff;
}
.blog-cta__btn {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: var(--color-heading);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.blog-cta__btn:hover {
  background: #f0f2ff;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transform: translateY(-1px);
}

/* Blog Tags */
.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(57, 73, 171, 0.08);
  border: 1px solid rgba(57, 73, 171, 0.15);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Blog List Page */
.blog-list {
  width: 100%;
  max-width: 800px;
}
.blog-list__header {
  text-align: center;
  margin-bottom: 40px;
  padding: 44px 32px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f5f0 100%);
}
.blog-list__title {
  color: var(--color-heading);
  font-size: 2.4em;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}
.blog-list__subtitle {
  color: #666;
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}
.blog-list__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Blog List Card */
.blog-list-card {
  display: block;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  padding: 0;
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #eaedf2;
  overflow: hidden;
}
.blog-list-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(57, 73, 171, 0.12);
  transform: translateY(-3px);
}
.blog-list-card__body {
  padding: 24px 28px;
}
.blog-list-card__meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.blog-list-card__title {
  color: var(--color-heading);
  font-size: 1.3em;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
  text-align: left;
}
.blog-list-card__desc {
  color: #666;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.blog-list-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.blog-list-card__read {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}
.blog-list-card:hover .blog-list-card__read {
  text-decoration: underline;
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog-article__header {
    padding: 28px 20px 22px;
  }
  .blog-article__title {
    font-size: 1.5em;
  }
  .blog-article__content {
    font-size: 15px;
    padding: 24px 20px 28px;
  }
  .blog-cta {
    padding: 24px 20px;
  }
  .blog-list__header {
    padding: 28px 20px;
  }
  .blog-list__title {
    font-size: 1.8em;
  }
  .blog-nav {
    padding: 12px 16px;
  }
}

/* ── Team Profile Sayfaları ────────────────────────── */

.team-page {
  background: linear-gradient(180deg, #f0f2f5 0%, #e8ecf4 100%);
}
.team-profile {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 0;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}
.team-profile__header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 40px;
  border-bottom: none;
  background: linear-gradient(135deg, var(--team-color, #0b1f6f) 0%, rgba(0,0,0,0.7) 100%);
  color: #fff;
  margin: 0;
}
.team-profile__logo {
  border-radius: var(--radius-md);
  object-fit: contain;
  background: rgba(255,255,255,1);
  padding: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.team-profile__name {
  color: #fff;
  font-size: 1.9em;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}
.team-profile__meta {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}
.team-profile__body {
  padding: 36px 40px;
}
.team-profile__section {
  margin-bottom: 32px;
}
.team-profile__section h2 {
  color: var(--color-heading);
  font-size: 1.25em;
  font-weight: 700;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #eef2ff;
}
.team-profile__section p {
  line-height: 1.75;
  margin-bottom: 12px;
  color: #555;
  font-size: 15px;
}
.team-profile__note {
  font-size: 13px;
  color: #999;
  font-style: italic;
  margin-top: 8px;
}

/* ── Team Info Grid & Cards ─────────────────────────── */
.team-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.team-info-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}
.team-info-card__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  margin-bottom: 4px;
}
.team-info-card__value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-heading);
}

/* ── Team Links ────────────────────────────────────── */
.team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team-link {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.team-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #f0f2ff;
  box-shadow: var(--shadow-btn);
}

/* ── Team Merch Section ────────────────────────────── */
.team-merch {
  background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 100%);
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 24px !important;
}
.team-merch__desc {
  font-size: 14px;
  color: #555;
  margin: 0 0 16px;
  line-height: 1.5;
}
.team-merch__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.team-merch__btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.team-merch__btn:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-btn);
  transform: translateY(-1px);
}
.team-merch__btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.team-merch__btn--secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ── Team Profile CTA ─────────────────────────────── */
.team-profile__cta {
  background: linear-gradient(135deg, #0b1f6f 0%, #3949ab 60%, #00a651 100%);
  text-align: center;
  padding: 32px 40px;
}
.team-profile__cta p {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #fff;
}

/* FAQ Section */
.team-faq {
  background: #f8faff;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  border: 1px solid #e0e5f0;
}
.team-faq h2 {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.faq-item {
  border-bottom: 1px solid #e8ecf4;
  padding: 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item__question {
  padding: 14px 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-item__question::before {
  content: "▸";
  color: var(--color-primary);
  font-size: 14px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-item__question::before {
  transform: rotate(90deg);
}
.faq-item__question::-webkit-details-marker {
  display: none;
}
.faq-item__answer {
  padding: 0 0 14px 22px;
}
.faq-item__answer p {
  margin: 0;
  line-height: 1.7;
  color: #555;
  font-size: 14px;
}

/* Opponents Grid */
.opponents-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}
.opponents-pot {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.opponents-pot h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
}
.opponents-pot .team-links {
  gap: 6px;
}
.team-link--sm {
  font-size: 12px;
  padding: 5px 12px;
}

/* Footer Popular Teams */
.footer__popular-teams {
  text-align: center;
  padding: 16px 0;
  margin-bottom: 12px;
  border-bottom: 1px solid #e8ecf4;
}
.footer__popular-teams h3 {
  font-size: 13px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 10px;
}

/* Stadium Info Grid variant */
.team-info-grid--stadium {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Team Page Responsive ──────────────────────────── */
@media (max-width: 768px) {
  .team-info-grid--stadium {
    grid-template-columns: 1fr;
  }
  .team-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-profile__header {
    padding: 24px 20px;
    gap: 16px;
  }
  .team-profile__logo {
    width: 56px;
    height: 56px;
  }
  .team-profile__name {
    font-size: 1.4em;
  }
  .team-profile__meta {
    font-size: 12px;
  }
  .team-profile__body {
    padding: 24px 20px;
  }
  .team-profile__cta {
    padding: 24px 20px;
  }
  .team-profile__cta p {
    font-size: 17px;
  }
  .team-merch__links {
    flex-direction: column;
  }
  .team-merch__btn {
    text-align: center;
  }
}

/* ── Toast Bildirimi ────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-width: 380px;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}
.toast--success {
  background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
}
.toast--error {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
}
.toast--info {
  background: linear-gradient(135deg, #3949ab 0%, #283593 100%);
}
.toast__icon {
  font-size: 20px;
  flex-shrink: 0;
}
.toast__close {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  cursor: pointer;
  padding: 0 0 0 8px;
  margin-left: auto;
  flex-shrink: 0;
  transition: color 0.2s;
}
.toast__close:hover {
  color: #fff;
  background: none;
}
.toast--hiding {
  animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100px);
  }
}

/* Mobilde alttan çıksın */
@media (max-width: 600px) {
  .toast-container {
    top: auto;
    bottom: 20px;
    right: 12px;
    left: 12px;
  }
  .toast {
    max-width: 100%;
    animation-name: toastSlideUp;
  }
  .toast--hiding {
    animation-name: toastSlideDown;
  }
  @keyframes toastSlideUp {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes toastSlideDown {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(100px);
    }
  }
}

/* ── Match Card Team Link ──────────────────────────── */
.match-card__team-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.match-card__team-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ── Team Ticker (Kayan Bant) ──────────────────────── */
.team-ticker {
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  margin: 32px auto 0;
  padding: 10px 0;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.team-ticker__track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
  width: max-content;
}

.team-ticker__track:hover {
  animation-play-state: paused;
}

.team-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.6;
  flex-shrink: 0;
}

.team-ticker__item:hover {
  color: var(--color-primary);
  opacity: 1;
}

.team-ticker__item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 2px;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .team-ticker {
    margin-top: 24px;
  }
  .team-ticker__track {
    gap: 16px;
    animation-duration: 45s;
  }
  .team-ticker__item {
    font-size: 11px;
  }
  .team-ticker__item img {
    width: 16px;
    height: 16px;
  }
}

/* ── Teams Index Page (Pot Grid) ───────────────────── */
.teams-index__pots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.teams-index__pot {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.teams-index__pot h3 {
  font-size: 0.95em;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
}

/* ══════════════════════════════════════════════════════
   KNOCKOUT SIMULATOR STYLES
   ══════════════════════════════════════════════════════ */

/* ── Breadcrumb ────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 13px;
  align-self: flex-start;
  max-width: var(--max-width);
  width: 100%;
}
.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb__sep {
  color: #999;
}
.breadcrumb__current {
  color: #666;
  font-weight: 600;
}

/* ── Knockout Container ────────────────────────────── */
.knockout-container {
  max-width: 800px;
}

/* ── Knockout Intro ────────────────────────────────── */
.knockout-intro {
  background: linear-gradient(135deg, #e8eaf6 0%, #f3e5f5 100%);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.92em;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid var(--color-ucl);
}
.knockout-intro p {
  margin: 0;
}

/* ── Knockout Teams ────────────────────────────────── */
.knockout-teams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.knockout-teams__column {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 12px;
}
.knockout-teams__title {
  font-size: 0.85em;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.knockout-teams__title--seeded {
  color: #2e7d32;
}
.knockout-teams__title--unseeded {
  color: #c62828;
}
.knockout-teams__icon {
  font-size: 0.9em;
}

/* ── Knockout Team Item ────────────────────────────── */
.knockout-team-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s;
}
.knockout-team-item:hover {
  background-color: rgba(57, 73, 171, 0.06);
}
.knockout-team-rank {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  min-width: 26px;
  text-align: right;
}
.knockout-team-item img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 1px;
  border: 1px solid #ddd;
  flex-shrink: 0;
}
.knockout-team-name {
  font-size: 0.82em;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.knockout-team-name:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ── Knockout Rules ────────────────────────────────── */
.knockout-rules {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
}
.knockout-rules h3 {
  font-size: 0.95em;
  margin: 0 0 10px;
  color: var(--color-heading);
}
.knockout-rules ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.knockout-rules li {
  background: none;
  border: none;
  padding: 4px 0;
  margin: 0;
  font-size: 0.82em;
  line-height: 1.5;
  display: block;
  border-radius: 0;
  justify-content: flex-start;
  box-shadow: none;
}

/* ── Knockout Actions ──────────────────────────────── */
.knockout-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
.btn-knockout-draw {
  background: linear-gradient(135deg, var(--color-ucl) 0%, #283593 100%);
  color: white;
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(11, 31, 111, 0.3);
}
.btn-knockout-draw:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 31, 111, 0.4);
}
.btn-knockout-draw:active {
  transform: translateY(0);
}
.btn-knockout-reset {
  background: var(--color-card-bg);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-knockout-reset:hover {
  background: #e9ecef;
}

/* ── Knockout Results ──────────────────────────────── */
.knockout-results {
  margin-top: 24px;
}

/* ── Knockout Matches Title ────────────────────────── */
.knockout-matches-title {
  text-align: center;
  color: var(--color-heading);
  font-size: 1.2em;
  margin: 0 0 16px;
}

/* ── Bracket Match Card ────────────────────────────── */
.bracket-match {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  animation: bracketSlideIn 0.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
@keyframes bracketSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bracket-match__team {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.bracket-match__team--seeded {
  border-bottom: 1px dashed #e0e0e0;
  padding-bottom: 10px;
}
.bracket-match__team--unseeded {
  padding-top: 10px;
}
.bracket-match__rank {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  min-width: 28px;
}
.bracket-match__team img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  border: 1px solid #ddd;
  padding: 2px;
}
.bracket-match__name {
  font-weight: 600;
  font-size: 0.95em;
  color: var(--color-text);
  text-decoration: none;
}
.bracket-match__name:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.bracket-match__badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: auto;
}
.bracket-match__badge--seeded {
  background: #e8f5e9;
  color: #2e7d32;
}
.bracket-match__vs {
  text-align: center;
  font-weight: 800;
  color: var(--color-vs);
  font-size: 0.85em;
  padding: 2px 0;
}
.bracket-match__info {
  text-align: center;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}
.bracket-match__info small {
  font-size: 11px;
  color: #888;
}

/* ── Bracket View ──────────────────────────────────── */
.bracket-title {
  text-align: center;
  color: var(--color-heading);
  font-size: 1.15em;
  margin: 32px 0 16px;
}
.bracket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bracket-pair {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 12px;
}
.bracket-pair__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
}
.bracket-pair__label {
  font-weight: 700;
  font-size: 0.9em;
  color: var(--color-heading);
}
.bracket-pair__r16 {
  font-size: 11px;
  color: #888;
  font-weight: 500;
}
.bracket-pair__match {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  font-size: 0.82em;
}
.bracket-pair__match + .bracket-pair__match {
  border-top: 1px dashed #e0e0e0;
}
.bracket-pair__team {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.bracket-pair__team img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}
.bracket-pair__team span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.bracket-pair__vs {
  color: var(--color-vs);
  font-weight: 700;
  font-size: 0.85em;
  flex-shrink: 0;
}

/* ── R16 Road Map ──────────────────────────────────── */
.bracket-r16-path {
  margin-top: 24px;
}
.bracket-r16-path h4 {
  text-align: center;
  color: var(--color-heading);
  font-size: 1em;
  margin: 0 0 12px;
}
.bracket-r16-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bracket-r16-item {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 0.8em;
  text-align: center;
}
.bracket-r16-item__header {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
  font-size: 0.9em;
}
.bracket-r16-item__content {
  color: #555;
  line-height: 1.4;
}

/* ── Knockout Related Links ────────────────────────── */
.knockout-related {
  margin-top: 32px;
  max-width: 800px;
  width: 100%;
}
.knockout-related h3 {
  text-align: center;
  color: var(--color-heading);
  font-size: 1.1em;
  margin: 0 0 16px;
}
.knockout-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.knockout-related__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.88em;
  font-weight: 500;
  transition: all 0.2s;
}
.knockout-related__link:hover {
  background: var(--color-card-bg);
  border-color: var(--color-primary);
  transform: translateY(-1px);
}
.knockout-related__icon {
  font-size: 1.2em;
}

/* ── Knockout FAQ ──────────────────────────────────── */
.knockout-faq {
  margin-top: 32px;
  max-width: 800px;
  width: 100%;
}
.knockout-faq h2 {
  text-align: center;
  font-size: 1.2em;
  margin: 0 0 16px;
}
.knockout-faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.knockout-faq__item summary {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.9em;
  cursor: pointer;
  color: var(--color-heading);
  transition: background-color 0.15s;
  list-style: none;
}
.knockout-faq__item summary::-webkit-details-marker {
  display: none;
}
.knockout-faq__item summary::before {
  content: "▶";
  display: inline-block;
  margin-right: 8px;
  font-size: 10px;
  transition: transform 0.2s;
  color: var(--color-primary);
}
.knockout-faq__item[open] summary::before {
  transform: rotate(90deg);
}
.knockout-faq__item summary:hover {
  background-color: var(--color-card-bg);
}
.knockout-faq__item p {
  padding: 0 18px 14px;
  margin: 0;
  font-size: 0.85em;
  line-height: 1.6;
  color: #555;
}

/* ── Road to Final — Hub CTA Card ──────────────────── */
.hub-rtf {
  width: 100%;
  max-width: 840px;
  margin-top: 24px;
}
.hub-rtf__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #000049 0%, #0b1f6f 100%);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.hub-rtf__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 73, 0.25);
}
.hub-rtf__badge {
  background: linear-gradient(135deg, #c9a227, #f5d06b);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
  align-self: flex-start;
}
.hub-rtf__content {
  flex: 1;
}
.hub-rtf__title {
  font-size: 1.15em;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
  text-align: left;
}
.hub-rtf__desc {
  font-size: 0.85em;
  margin: 0 0 8px;
  opacity: 0.75;
  line-height: 1.4;
}
.hub-rtf__cta {
  font-size: 0.85em;
  font-weight: 700;
  color: #f5d06b;
}
@media (max-width: 600px) {
  .hub-rtf__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 18px;
  }
}

/* ── Road to Final — UCL page CTA banner ───────────── */
.rtf-cta-banner {
  max-width: var(--max-width);
  width: 100%;
  margin-bottom: 12px;
}
.rtf-cta-banner__link {
  display: block;
  padding: 10px 16px;
  background: linear-gradient(135deg, #000049 0%, #0b1f6f 100%);
  color: #f5d06b;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
}
.rtf-cta-banner__link:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 73, 0.2);
  transform: translateY(-1px);
}
