:root {
  --abo-bg: #050507;
  --abo-bg-deep: #020203;
  --abo-bg-soft: #101016;
  --abo-surface: rgba(255, 255, 255, 0.065);
  --abo-surface-strong: rgba(255, 255, 255, 0.11);
  --abo-text: #f7f7fb;
  --abo-muted: #b5b5c5;
  --abo-faint: #7f808f;
  --abo-line: rgba(255, 255, 255, 0.13);
  --abo-line-strong: rgba(255, 255, 255, 0.2);
  --abo-primary: #ff3d00;
  --abo-primary-2: #ffb000;
  --abo-primary-3: #d01605;
  --abo-radius: 28px;
  --abo-radius-sm: 18px;
  --abo-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --abo-container: 1240px;
  --abo-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% -8%, rgba(255, 61, 0, 0.23), transparent 32rem),
    radial-gradient(circle at 86% 12%, rgba(255, 176, 0, 0.13), transparent 28rem),
    var(--abo-bg);
  color: var(--abo-text);
  font-family: var(--abo-font);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.admin-bar .site-header { top: 32px; }
a { color: inherit; text-decoration: none; transition: color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease; }
a:hover { color: var(--abo-primary-2); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 48px), var(--abo-container)); margin-inline: auto; }
.narrow-container { width: min(calc(100% - 48px), 900px); margin-inline: auto; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: var(--abo-text); color: #000; clip: auto !important; clip-path: none; display: block; height: auto; left: 16px; padding: 12px; top: 16px; width: auto; z-index: 100000;
}
.skip-link { z-index: 99999; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 7, 0.72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 5, 7, 0.9);
  border-bottom-color: var(--abo-line);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand-text { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -0.04em; }
.brand-mark {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 16px;
  color: #170700; background: linear-gradient(135deg, var(--abo-primary-2), var(--abo-primary));
  box-shadow: 0 16px 44px rgba(255,61,0,.25);
}
.brand-name { font-size: 1.03rem; white-space: nowrap; }
.custom-logo-link img { max-height: 54px; width: auto; }
.primary-nav ul { list-style: none; display: flex; align-items: center; gap: 8px; margin: 0; padding: 0; }
.primary-nav a { display: inline-flex; align-items: center; min-height: 42px; padding: 0 14px; border-radius: 999px; color: var(--abo-muted); font-weight: 800; font-size: .92rem; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--abo-text); background: rgba(255,255,255,.08); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--abo-line); border-radius: 14px; background: var(--abo-surface); color: var(--abo-text); }
.nav-toggle-line, .nav-toggle-line::before, .nav-toggle-line::after { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 999px; position: relative; }
.nav-toggle-line::before, .nav-toggle-line::after { content: ""; position: absolute; left: 0; }
.nav-toggle-line::before { top: -6px; }
.nav-toggle-line::after { top: 6px; }

.hero-section {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: clamp(60px, 8vw, 116px) 0 40px;
  overflow: hidden;
  isolation: isolate;
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: .35; mix-blend-mode: soft-light;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 24%, black, transparent 76%);
}
.hero-bg-orb { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(82px); opacity: .42; pointer-events: none; z-index: -1; }
.hero-bg-orb-one { background: var(--abo-primary); right: -120px; top: 70px; }
.hero-bg-orb-two { background: var(--abo-primary-2); left: -170px; bottom: -130px; opacity: .28; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .82fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--abo-primary-2); font-size: .76rem; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: linear-gradient(90deg, var(--abo-primary), var(--abo-primary-2)); border-radius: 999px; }
h1, h2, h3, h4 { line-height: .98; letter-spacing: -0.06em; margin: 0; }
.hero-copy { max-width: 700px; }
.hero-copy h1 {
  font-size: clamp(3.95rem, 8.2vw, 7.8rem);
  max-width: 11ch;
  text-wrap: balance;
}
.gradient-dot { background: linear-gradient(135deg, var(--abo-primary-2), var(--abo-primary)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { max-width: 650px; margin: 26px 0 0; color: var(--abo-muted); font-size: clamp(1.08rem, 1.35vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 950; border: 1px solid transparent; cursor: pointer; letter-spacing: -.01em; }
.button-primary { color: #140700; background: linear-gradient(135deg, var(--abo-primary-2), var(--abo-primary)); box-shadow: 0 18px 48px rgba(255, 61, 0, .28); }
.button-primary:hover { color: #140700; transform: translateY(-2px); }
.button-ghost { border-color: var(--abo-line); background: rgba(255,255,255,.055); color: var(--abo-text); }
.button-ghost:hover { background: var(--abo-surface-strong); color: var(--abo-text); transform: translateY(-2px); }
.button-light { background: var(--abo-text); color: #111; }
.button-light:hover { color: #111; transform: translateY(-2px); }
.hero-signals { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.hero-signals span { padding: 8px 12px; border: 1px solid var(--abo-line); border-radius: 999px; color: var(--abo-muted); font-size: .82rem; font-weight: 850; background: rgba(255,255,255,.035); }

.hero-visual { min-width: 0; }
.portrait-shell { position: relative; width: min(100%, 520px); margin-inline: auto 0; }
.portrait-glow {
  position: absolute; inset: 10% 2% 2%; border-radius: 40px;
  background: radial-gradient(circle at 50% 15%, rgba(255,176,0,.35), transparent 38%), radial-gradient(circle at 72% 45%, rgba(255,61,0,.26), transparent 34%);
  filter: blur(32px); opacity: .7;
}
.portrait-frame {
  position: relative;
  min-height: clamp(540px, 62vh, 690px);
  border: 1px solid var(--abo-line-strong);
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.025)),
    radial-gradient(circle at 50% 18%, rgba(255,176,0,.2), transparent 28rem),
    linear-gradient(160deg, #15151e, #050507 62%);
  border-radius: 42px;
  padding: 18px 18px 0;
  box-shadow: var(--abo-shadow);
  overflow: hidden;
}
.portrait-frame::before {
  content: "";
  position: absolute; inset: 16px 16px auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
}
.portrait-frame::after {
  content: "AB.ONE";
  position: absolute;
  left: 24px; top: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .14em;
  background: rgba(0,0,0,.26);
  backdrop-filter: blur(14px);
}
.hero-portrait {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(88%, 430px);
  max-height: 96%;
  height: auto;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 42px rgba(0,0,0,.55));
}
.status-card {
  position: absolute;
  right: -20px;
  bottom: 34px;
  max-width: 320px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--abo-line);
  background: rgba(10, 10, 15, .82);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  box-shadow: var(--abo-shadow);
}
.status-card strong { display: block; font-size: .95rem; }
.status-card p { margin: 2px 0 0; color: var(--abo-muted); font-size: .86rem; line-height: 1.45; }
.status-pulse { width: 12px; height: 12px; margin-top: 5px; border-radius: 999px; background: #25ff8a; box-shadow: 0 0 0 8px rgba(37,255,138,.12); }

.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 5vw, 68px);
  border: 1px solid var(--abo-line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 70px rgba(0,0,0,.24);
}
.proof-strip > div { padding: 22px 24px; background: rgba(7,7,10,.6); }
.proof-strip span { color: var(--abo-primary-2); font-size: .82rem; font-weight: 950; letter-spacing: .12em; }
.proof-strip strong { display: block; margin-top: 8px; font-size: 1.05rem; letter-spacing: -.04em; }
.proof-strip p { margin: 6px 0 0; color: var(--abo-muted); font-size: .9rem; line-height: 1.45; }

.section { padding: clamp(82px, 9vw, 128px) 0; }
.section-panel { background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); border-block: 1px solid var(--abo-line); }
.two-column { display: grid; grid-template-columns: minmax(280px, .76fr) minmax(0, 1fr); gap: clamp(42px, 6vw, 78px); align-items: start; }
.section-kicker h2, .section-heading h2, .cta-inner h2 { font-size: clamp(2.25rem, 4.9vw, 4.9rem); text-wrap: balance; }
.section-copy { color: var(--abo-muted); font-size: 1.08rem; }
.section-copy p:first-child { margin-top: 0; }
.section-heading { max-width: 820px; margin-bottom: 44px; }
.feature-grid, .post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.feature-card, .post-card, .entry, .no-results, .comments-area, .not-found-page {
  border: 1px solid var(--abo-line);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border-radius: var(--abo-radius);
  box-shadow: var(--abo-shadow);
}
.feature-card { padding: 30px; min-height: 280px; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(255,176,0,.35); background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.04)); }
.feature-number { display: inline-flex; margin-bottom: 64px; color: var(--abo-primary-2); font-weight: 950; letter-spacing: -.04em; }
.feature-card h3 { font-size: 1.7rem; margin-bottom: 14px; }
.feature-card p, .post-card p, .entry-content, .archive-description, .no-results p, .not-found-page p { color: var(--abo-muted); }
.post-card { overflow: hidden; }
.post-card-media { display: grid; place-items: center; min-height: 220px; background: linear-gradient(135deg, rgba(255,176,0,.18), rgba(255,61,0,.08)); }
.post-card-media img { width: 100%; height: 240px; object-fit: cover; }
.post-card-media span { font-size: 4rem; font-weight: 950; color: rgba(255,255,255,.7); }
.post-card-body { padding: 24px; }
.post-card h3 { font-size: 1.45rem; margin: 10px 0 10px; }
.post-meta { color: var(--abo-muted); font-size: .84rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.text-link { color: var(--abo-primary-2); font-weight: 900; }


/* AB profile, achievements and media hub */
.profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, .84fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: start;
}
.profile-copy {
  color: var(--abo-muted);
  font-size: 1.08rem;
}
.profile-copy > p:first-child {
  margin-top: 0;
}
.statement-card {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 176, 0, .24);
  border-radius: var(--abo-radius);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 176, 0, .18), transparent 20rem),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: var(--abo-shadow);
}
.statement-card span {
  display: inline-flex;
  color: var(--abo-primary-2);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .16em;
}
.statement-card blockquote {
  margin: 16px 0 0;
  color: var(--abo-text);
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: -.05em;
}
.achievement-grid, .media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.achievement-card, .media-card, .media-admin-note {
  border: 1px solid var(--abo-line);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border-radius: var(--abo-radius);
  box-shadow: var(--abo-shadow);
}
.achievement-card {
  min-height: 255px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.achievement-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,61,0,.24), transparent 70%);
  pointer-events: none;
}
.achievement-number {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--abo-primary-2);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 950;
  letter-spacing: -.07em;
}
.achievement-card h3, .media-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}
.achievement-card p, .media-card p {
  color: var(--abo-muted);
}
.media-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 330px;
}
.media-card-image {
  display: block;
  margin: -24px -24px 20px;
  overflow: hidden;
  border-radius: var(--abo-radius) var(--abo-radius) 0 0;
}
.media-card-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.media-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: var(--abo-primary-2);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.media-card h3 {
  letter-spacing: -.05em;
  line-height: 1.05;
}
.media-card h3 a:hover {
  color: var(--abo-primary-2);
}
.media-card .text-link {
  margin-top: auto;
}
.media-admin-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 18px 22px;
  color: var(--abo-muted);
}
.media-admin-note strong {
  color: var(--abo-text);
  white-space: nowrap;
}

.cta-band { padding: clamp(92px, 10vw, 132px) 0; }
.cta-inner {
  text-align: center;
  padding: clamp(36px, 7vw, 82px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,176,0,.3), transparent 24rem),
    linear-gradient(135deg, rgba(255,61,0,.26), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--abo-shadow);
}
.cta-inner .eyebrow { justify-content: center; }
.cta-inner p { max-width: 680px; margin: 18px auto 28px; color: rgba(255,255,255,.76); }

.archive-main, .single-main { padding: 76px 0 110px; }
.archive-header { margin-bottom: 42px; }
.archive-header h1, .entry-title, .no-results h1, .not-found-page h1 { font-size: clamp(2.6rem, 6vw, 5.8rem); }
.entry { padding: clamp(26px, 5vw, 58px); }
.entry-header { margin-bottom: 32px; }
.entry-media { overflow: hidden; border-radius: var(--abo-radius-sm); margin-bottom: 34px; }
.entry-content { font-size: 1.08rem; }
.entry-content a { color: var(--abo-primary-2); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content blockquote { margin: 32px 0; padding: 24px 30px; border-left: 4px solid var(--abo-primary); background: rgba(255,255,255,.05); border-radius: 0 var(--abo-radius-sm) var(--abo-radius-sm) 0; color: var(--abo-text); }
.entry-content code { padding: .15em .35em; border-radius: 6px; background: rgba(255,255,255,.1); }
.wp-block-image img, .wp-block-cover { border-radius: var(--abo-radius-sm); }
.page-links, .tag-list { margin-top: 24px; }
.post-navigation { margin-top: 42px; }
.nav-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.nav-links a { display: block; padding: 18px; border: 1px solid var(--abo-line); border-radius: var(--abo-radius-sm); background: var(--abo-surface); }
.nav-subtitle { display: block; color: var(--abo-muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.nav-title { display: block; font-weight: 900; }
.no-results, .not-found-page, .comments-area { padding: clamp(26px, 5vw, 50px); }
.search-form { display: flex; gap: 12px; max-width: 620px; margin-top: 26px; }
.search-form label { flex: 1; }
.search-field { width: 100%; min-height: 50px; border: 1px solid var(--abo-line); border-radius: 999px; padding: 0 18px; background: rgba(255,255,255,.08); color: var(--abo-text); outline: none; }
.search-field:focus { border-color: var(--abo-primary-2); box-shadow: 0 0 0 4px rgba(255,176,0,.12); }

.site-footer { padding: 76px 0 28px; background: #040405; border-top: 1px solid var(--abo-line); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .7fr; gap: 42px; }
.footer-brand p, .widget p { color: var(--abo-muted); }
.footer-logo { margin-bottom: 16px; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.social-links a { padding: 8px 11px; border: 1px solid var(--abo-line); border-radius: 999px; color: var(--abo-muted); font-weight: 800; font-size: .86rem; }
.social-links a:hover { color: var(--abo-text); background: var(--abo-surface); }
.widget-title { font-size: 1.05rem; letter-spacing: -.03em; margin-bottom: 16px; }
.widget ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.widget a { color: var(--abo-muted); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 34px; margin-top: 42px; border-top: 1px solid var(--abo-line); color: var(--abo-muted); font-size: .9rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { font-weight: 900; }

.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: minmax(0, .98fr) minmax(330px, .72fr); gap: 42px; }
  .hero-copy h1 { font-size: clamp(3.6rem, 8vw, 6.2rem); }
  .portrait-frame { min-height: 560px; }
  .status-card { right: 10px; }
}

@media (max-width: 920px) {

  .profile-grid, .achievement-grid, .media-grid { grid-template-columns: 1fr; }
  .media-admin-note { flex-direction: column; }
  body.admin-bar .site-header { top: 46px; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .primary-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 10px); padding: 16px; border: 1px solid var(--abo-line); border-radius: 22px; background: rgba(7,7,10,.96); backdrop-filter: blur(22px); box-shadow: var(--abo-shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease; }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav ul { display: grid; gap: 4px; }
  .primary-nav a { width: 100%; }
  .hero-section { min-height: auto; padding-top: 62px; }
  .hero-grid, .two-column, .footer-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .portrait-shell { width: min(100%, 540px); margin-inline: auto; }
  .portrait-frame { min-height: 560px; }
  .hero-portrait { width: min(82%, 410px); }
  .feature-grid, .post-grid, .proof-strip { grid-template-columns: 1fr; }
  .proof-strip { gap: 0; }
  .proof-strip > div + div { border-top: 1px solid var(--abo-line); }
}

@media (max-width: 600px) {
  .container, .narrow-container { width: min(calc(100% - 28px), var(--abo-container)); }
  .header-inner { min-height: 72px; }
  .brand-name { font-size: .95rem; }
  .hero-copy h1 { font-size: clamp(3.2rem, 17vw, 4.8rem); max-width: 10ch; }
  .hero-lead { font-size: 1.04rem; }
  .hero-actions, .search-form, .footer-bottom { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .portrait-frame { min-height: 500px; border-radius: 30px; padding: 14px 14px 0; }
  .hero-portrait { width: min(92%, 390px); max-height: 96%; }
  .status-card { position: relative; right: auto; bottom: auto; margin: -48px 12px 0; }
  .section { padding: 76px 0; }
  .feature-number { margin-bottom: 46px; }
  .nav-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal-on-scroll { opacity: 1; transform: none; }
}

/* ==============================
   v1.4.0 Jersey-inspired redesign
   Inspired by SK Bosnia Online EU Teplice kits
   ============================== */
:root {
  --abo-bg: #050608;
  --abo-bg-deep: #020304;
  --abo-bg-soft: #0d1116;
  --abo-surface: rgba(12, 16, 20, 0.78);
  --abo-surface-strong: rgba(18, 23, 29, 0.94);
  --abo-text: #f5f8fb;
  --abo-muted: #aeb8c3;
  --abo-faint: #7d8893;
  --abo-line: rgba(232, 255, 20, 0.12);
  --abo-line-strong: rgba(232, 255, 20, 0.24);
  --abo-primary: #e8ff14;
  --abo-primary-2: #29d5ff;
  --abo-primary-3: #ff45b5;
  --abo-shadow: 0 34px 95px rgba(0, 0, 0, 0.48);
}

body {
  background:
    radial-gradient(circle at 14% -6%, rgba(41, 213, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 2%, rgba(255, 69, 181, 0.16), transparent 26rem),
    radial-gradient(circle at 54% 115%, rgba(232, 255, 20, 0.10), transparent 32rem),
    linear-gradient(180deg, #030405 0%, #050608 34%, #090c10 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .72;
  background:
    linear-gradient(115deg, transparent 0 12%, rgba(41, 213, 255, .07) 12.2% 12.55%, transparent 12.8% 100%),
    linear-gradient(115deg, transparent 0 34%, rgba(255, 69, 181, .065) 34.2% 34.55%, transparent 34.8% 100%),
    linear-gradient(115deg, transparent 0 62%, rgba(232, 255, 20, .075) 62.2% 62.55%, transparent 62.8% 100%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  mix-blend-mode: screen;
}

.site-header {
  background: rgba(4, 7, 10, 0.78);
  border-bottom: 1px solid rgba(232, 255, 20, 0.06);
}
.site-header.is-scrolled {
  background: rgba(4, 7, 10, 0.92);
  border-bottom-color: rgba(232, 255, 20, 0.14);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .34);
}
.brand-mark {
  color: #050608;
  background: linear-gradient(135deg, var(--abo-primary), var(--abo-primary-2));
  box-shadow: 0 0 0 1px rgba(232,255,20,.22), 0 18px 50px rgba(41,213,255,.20);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--abo-text);
  background: linear-gradient(135deg, rgba(232,255,20,.12), rgba(41,213,255,.12));
}
.nav-toggle {
  background: rgba(12, 16, 20, .8);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 14%, rgba(41, 213, 255, .12) 14.3% 14.7%, transparent 15% 100%),
    linear-gradient(115deg, transparent 0 39%, rgba(255, 69, 181, .11) 39.3% 39.7%, transparent 40% 100%),
    linear-gradient(115deg, transparent 0 65%, rgba(232, 255, 20, .11) 65.3% 65.7%, transparent 66% 100%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  opacity: .92;
}
.hero-bg-orb-one { background: rgba(41,213,255,.95); }
.hero-bg-orb-two { background: rgba(255,69,181,.88); opacity: .24; }
.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .76fr);
  gap: clamp(42px, 5vw, 78px);
}
.hero-copy h1 {
  font-size: clamp(3.8rem, 6.9vw, 6.8rem);
  max-width: 10ch;
}
.gradient-dot {
  background: linear-gradient(135deg, var(--abo-primary), var(--abo-primary-3));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead {
  max-width: 62ch;
  color: #c2cad3;
}
.button-primary {
  color: #050608;
  background: linear-gradient(135deg, var(--abo-primary), #d9f506 52%, var(--abo-primary-2));
  box-shadow: 0 20px 56px rgba(41, 213, 255, .18);
}
.button-ghost {
  border-color: rgba(41,213,255,.22);
  background: rgba(8, 12, 16, .78);
}
.button-ghost:hover {
  background: linear-gradient(135deg, rgba(41,213,255,.12), rgba(255,69,181,.10));
  border-color: rgba(232,255,20,.26);
}
.hero-signals span {
  border-color: rgba(255,255,255,.08);
  background:
    linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.01)),
    linear-gradient(90deg, rgba(232,255,20,.06), rgba(41,213,255,.05));
  color: #d7dee5;
}

.portrait-glow {
  background:
    radial-gradient(circle at 50% 12%, rgba(41, 213, 255, .30), transparent 36%),
    radial-gradient(circle at 72% 42%, rgba(255, 69, 181, .24), transparent 34%),
    radial-gradient(circle at 32% 72%, rgba(232, 255, 20, .20), transparent 28%);
}
.portrait-frame {
  border: 1px solid rgba(232, 255, 20, .16);
  background:
    linear-gradient(145deg, rgba(16, 20, 26, .96), rgba(4, 7, 10, .98) 62%),
    linear-gradient(115deg, transparent 0 22%, rgba(41,213,255,.12) 22.3% 22.75%, transparent 23% 100%),
    linear-gradient(115deg, transparent 0 50%, rgba(255,69,181,.10) 50.3% 50.75%, transparent 51% 100%),
    linear-gradient(115deg, transparent 0 73%, rgba(232,255,20,.10) 73.3% 73.75%, transparent 74% 100%);
  box-shadow: 0 34px 95px rgba(0,0,0,.52), inset 0 0 0 1px rgba(255,255,255,.02);
}
.portrait-frame::before {
  inset: 16px 16px auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(41,213,255,.8), rgba(232,255,20,.8), transparent);
}
.portrait-frame::after {
  color: rgba(245,248,251,.88);
  border-color: rgba(255,255,255,.10);
  background: rgba(4,7,10,.56);
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}
.status-card {
  border-color: rgba(232,255,20,.16);
  background: rgba(8, 12, 16, .84);
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
}
.status-card p { color: #aeb8c3; }
.status-pulse { background: var(--abo-primary); box-shadow: 0 0 0 8px rgba(232,255,20,.10); }

.proof-strip {
  border-color: rgba(255,255,255,.07);
  background: linear-gradient(135deg, rgba(18,23,29,.95), rgba(9,12,16,.88));
}
.proof-strip > div {
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    linear-gradient(115deg, transparent 0 82%, rgba(41,213,255,.07) 82.3% 82.6%, transparent 83% 100%);
}
.proof-strip span { color: var(--abo-primary); }
.proof-strip strong { color: var(--abo-text); }

.section-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    linear-gradient(115deg, transparent 0 78%, rgba(255,69,181,.05) 78.3% 78.6%, transparent 79% 100%);
  border-block: 1px solid rgba(255,255,255,.05);
}
.feature-card,
.post-card,
.entry,
.no-results,
.comments-area,
.not-found-page,
.achievement-card,
.media-card,
.media-admin-note {
  border: 1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(180deg, rgba(20,24,31,.94), rgba(9,12,16,.92)),
    linear-gradient(115deg, transparent 0 82%, rgba(232,255,20,.06) 82.2% 82.55%, transparent 82.8% 100%);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}
.feature-card:hover,
.achievement-card:hover,
.media-card:hover,
.post-card:hover {
  border-color: rgba(41,213,255,.18);
  transform: translateY(-4px);
}
.feature-number,
.achievement-number,
.media-card-top,
.text-link,
.entry-content a,
.eyebrow,
.statement-card span {
  color: var(--abo-primary);
}
.statement-card {
  border: 1px solid rgba(41,213,255,.16);
  background:
    radial-gradient(circle at 0% 0%, rgba(41,213,255,.14), transparent 18rem),
    linear-gradient(180deg, rgba(22,26,33,.96), rgba(10,12,17,.92));
}
.statement-card blockquote { color: #f2f7fb; }
.achievement-card::after {
  background: radial-gradient(circle, rgba(41,213,255,.18), transparent 68%);
}
.media-card-image,
.post-card-media {
  background: linear-gradient(135deg, rgba(41,213,255,.16), rgba(255,69,181,.10) 55%, rgba(232,255,20,.14));
}

.cta-inner {
  background:
    radial-gradient(circle at 12% 0%, rgba(41,213,255,.20), transparent 24rem),
    radial-gradient(circle at 88% 0%, rgba(255,69,181,.18), transparent 24rem),
    linear-gradient(135deg, rgba(18,23,29,.98), rgba(7,10,14,.94));
  border: 1px solid rgba(232,255,20,.16);
}
.cta-inner p { color: #c5ced6; }

.search-field {
  background: rgba(13, 17, 22, .9);
  border-color: rgba(255,255,255,.08);
}
.search-field:focus {
  border-color: rgba(41,213,255,.45);
  box-shadow: 0 0 0 4px rgba(41,213,255,.12);
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(3,4,5,.96), rgba(6,9,12,1)),
    linear-gradient(115deg, transparent 0 80%, rgba(232,255,20,.06) 80.2% 80.55%, transparent 80.8% 100%);
  border-top: 1px solid rgba(255,255,255,.06);
}
.social-links a:hover {
  background: linear-gradient(135deg, rgba(232,255,20,.12), rgba(41,213,255,.10));
}
.footer-bottom,
.footer-brand p,
.widget p,
.widget a {
  color: #aeb8c3;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, .98fr) minmax(330px, .72fr);
    gap: 38px;
  }
  .hero-copy h1 { font-size: clamp(3.5rem, 7.4vw, 5.8rem); }
}

@media (max-width: 920px) {
  .hero-section::before { opacity: .72; }
  .primary-nav {
    background: rgba(8, 12, 16, .96);
    border-color: rgba(255,255,255,.08);
  }
}

@media (max-width: 600px) {
  body::before { opacity: .52; }
  .hero-copy h1 { font-size: clamp(3rem, 16vw, 4.5rem); }
}

/* v1.5.0 hero club panel + stronger matchday look */
.hero-copy {
  display: flex;
  flex-direction: column;
}
.hero-club-panel {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.07);
  background:
    linear-gradient(180deg, rgba(18,23,29,.96), rgba(8,11,15,.94)),
    linear-gradient(115deg, transparent 0 82%, rgba(41,213,255,.07) 82.2% 82.5%, transparent 82.8% 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.hero-club-badge {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(7,10,14,.98), rgba(18,23,29,.95));
  border: 1px solid rgba(232,255,20,.14);
}
.hero-club-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-club-copy strong {
  display: block;
  font-size: 1.12rem;
  letter-spacing: -.03em;
}
.hero-club-copy p {
  margin: 7px 0 0;
  color: var(--abo-muted);
  font-size: .92rem;
  line-height: 1.5;
}
.hero-club-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--abo-primary-2);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-club-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(68px, 1fr));
  gap: 10px;
}
.hero-club-stats div {
  min-width: 68px;
  padding: 12px 10px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.hero-club-stats span {
  display: block;
  color: var(--abo-primary);
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1;
}
.hero-club-stats small {
  display: block;
  margin-top: 6px;
  color: var(--abo-muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.portrait-frame {
  position: relative;
}
.portrait-frame .hero-portrait {
  z-index: 2;
}
.portrait-frame::after {
  content: "MATCHDAY EDITION";
}
.portrait-frame::before {
  box-shadow: 0 0 24px rgba(41,213,255,.35);
}
.status-card strong {
  text-transform: uppercase;
  letter-spacing: .04em;
}
.status-card p {
  font-size: .82rem;
}
.proof-strip > div {
  position: relative;
}
.proof-strip > div::after {
  content: "";
  position: absolute;
  inset: auto 20px 0 auto;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--abo-primary), var(--abo-primary-2));
  opacity: .48;
}
@media (max-width: 1100px) {
  .hero-club-panel {
    grid-template-columns: 96px 1fr;
  }
  .hero-club-stats {
    grid-column: 1 / -1;
  }
}
@media (max-width: 700px) {
  .hero-club-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-club-badge {
    margin-inline: auto;
  }
  .hero-club-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ==============================
   v1.6.0 modules: animated matchday hero, trophies, partners, updates
   ============================== */
.matchday-ticker {
  max-width: 680px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(232,255,20,.16);
  background:
    linear-gradient(90deg, rgba(232,255,20,.12), rgba(41,213,255,.10), rgba(255,69,181,.10)),
    rgba(7,10,14,.72);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.matchday-ticker-track {
  display: flex;
  width: max-content;
  gap: 26px;
  align-items: center;
  padding: 9px 18px;
  animation: aboTicker 18s linear infinite;
}
.matchday-ticker-track span {
  position: relative;
  color: var(--abo-text);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.matchday-ticker-track span::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 26px;
  border-radius: 999px;
  background: var(--abo-primary);
  box-shadow: 0 0 16px rgba(232,255,20,.45);
  vertical-align: middle;
}
@keyframes aboTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trophy-section {
  position: relative;
  overflow: hidden;
}
.trophy-section::before,
.partners-section::before,
.updates-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background:
    linear-gradient(115deg, transparent 0 22%, rgba(41,213,255,.07) 22.2% 22.55%, transparent 22.8% 100%),
    linear-gradient(115deg, transparent 0 78%, rgba(232,255,20,.06) 78.2% 78.55%, transparent 78.8% 100%);
}
.trophy-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  z-index: 1;
}
.trophy-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--abo-radius);
  background:
    linear-gradient(180deg, rgba(20,24,31,.94), rgba(8,11,15,.94)),
    linear-gradient(115deg, transparent 0 84%, rgba(232,255,20,.07) 84.2% 84.55%, transparent 84.8% 100%);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  transition: transform .22s ease, border-color .22s ease;
}
.trophy-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,255,20,.18);
}
.trophy-image {
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 20%, rgba(232,255,20,.18), transparent 18rem),
    linear-gradient(135deg, rgba(41,213,255,.16), rgba(255,69,181,.10));
}
.trophy-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .28s ease;
}
.trophy-card:hover .trophy-image img {
  transform: scale(1.04);
}
.trophy-image-placeholder span {
  color: var(--abo-primary);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 950;
  letter-spacing: -.08em;
}
.trophy-body {
  padding: 24px;
}
.trophy-body span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--abo-primary-2);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.trophy-body h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.02;
  margin-bottom: 12px;
}
.trophy-body p {
  color: var(--abo-muted);
  margin-bottom: 0;
}

.partners-section,
.updates-section {
  position: relative;
  overflow: hidden;
}
.partner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.partner-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 22px;
  min-height: 220px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--abo-radius-sm);
  background:
    linear-gradient(180deg, rgba(20,24,31,.92), rgba(8,11,15,.92)),
    linear-gradient(115deg, transparent 0 78%, rgba(41,213,255,.06) 78.2% 78.55%, transparent 78.8% 100%);
  box-shadow: 0 18px 54px rgba(0,0,0,.28);
}
.partner-logo {
  display: grid;
  place-items: center;
  min-height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(232,255,20,.12);
  background: rgba(255,255,255,.035);
}
.partner-logo img {
  max-width: 78%;
  max-height: 74px;
  object-fit: contain;
}
.partner-logo span {
  color: var(--abo-primary);
  font-size: 1.8rem;
  font-weight: 950;
  letter-spacing: -.06em;
}
.partner-card strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -.04em;
}
.partner-card p {
  margin: 8px 0 0;
  color: var(--abo-muted);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 850;
}
.updates-section .post-card-media span {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -.08em;
}
.update-card .post-card-media {
  min-height: 190px;
  background:
    radial-gradient(circle at 30% 10%, rgba(232,255,20,.18), transparent 14rem),
    linear-gradient(135deg, rgba(41,213,255,.16), rgba(255,69,181,.12));
}
.updates-grid {
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 920px) {
  .trophy-grid {
    grid-template-columns: 1fr;
  }
  .matchday-ticker {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .matchday-ticker-track {
    animation-duration: 24s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .matchday-ticker-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}

/* ==============================
   v1.7.0 FUEGO front-jersey redesign
   Design language inspired by the front side of the new FUEGO kit:
   deep navy base, multicolor fractured shard pattern, matchday sport-tech UI.
   ============================== */
:root {
  --abo-bg: #02060d;
  --abo-bg-deep: #00030a;
  --abo-bg-soft: #07101d;
  --abo-surface: rgba(5, 11, 20, 0.78);
  --abo-surface-strong: rgba(7, 14, 25, 0.96);
  --abo-text: #f7f9fd;
  --abo-muted: #b7c1ce;
  --abo-faint: #7e8a99;
  --abo-primary: #e8ff14;
  --abo-primary-2: #15d9ff;
  --abo-primary-3: #ff2f79;
  --abo-orange: #ff8a00;
  --abo-coral: #ff4d2f;
  --abo-lime: #8dff1a;
  --abo-kit-line: rgba(232, 255, 20, 0.18);
  --abo-line: rgba(255, 255, 255, 0.075);
  --abo-line-strong: rgba(232, 255, 20, 0.26);
  --abo-shadow: 0 34px 100px rgba(0, 0, 0, 0.56);
}

body {
  background:
    radial-gradient(circle at 12% 4%, rgba(21, 217, 255, .15), transparent 32rem),
    radial-gradient(circle at 88% 0%, rgba(255, 47, 121, .18), transparent 34rem),
    radial-gradient(circle at 76% 78%, rgba(232, 255, 20, .10), transparent 28rem),
    linear-gradient(180deg, #01040a 0%, #02060d 44%, #050b14 100%);
  color: var(--abo-text);
}
body::before {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.014) 1px, transparent 1px),
    url('../img/fuego-kit-shards.svg');
  background-size: 88px 88px, 88px 88px, 1180px auto;
  background-position: center top, center top, right -260px top 34px;
  background-repeat: repeat, repeat, no-repeat;
  opacity: .34;
  mix-blend-mode: screen;
}

.site-header {
  background: rgba(1, 5, 12, .74);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21,217,255,.62), rgba(232,255,20,.72), rgba(255,47,121,.58), transparent);
  opacity: .72;
}
.site-header.is-scrolled {
  background: rgba(1, 5, 12, .92);
  box-shadow: 0 18px 55px rgba(0,0,0,.44);
}
.brand-text {
  gap: 13px;
}
.brand-mark {
  background:
    linear-gradient(135deg, var(--abo-primary) 0%, var(--abo-orange) 54%, var(--abo-primary-3) 100%);
  color: #04070c;
  box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 16px 42px rgba(255,138,0,.18);
}
.brand-name {
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--abo-text);
}
.primary-nav a {
  letter-spacing: .1em;
  text-transform: uppercase;
}
.primary-nav a::after {
  background: linear-gradient(90deg, var(--abo-primary-2), var(--abo-primary), var(--abo-primary-3));
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: #fff;
  background: rgba(255,255,255,.045);
}

.hero-section {
  min-height: min(920px, 100vh);
  background:
    linear-gradient(90deg, rgba(1,4,10,.97) 0%, rgba(1,4,10,.86) 40%, rgba(1,4,10,.62) 100%),
    radial-gradient(circle at 73% 24%, rgba(255,138,0,.20), transparent 26rem),
    radial-gradient(circle at 84% 34%, rgba(255,47,121,.18), transparent 28rem),
    radial-gradient(circle at 63% 52%, rgba(232,255,20,.14), transparent 22rem),
    url('../img/fuego-kit-shards.svg');
  background-size: auto, auto, auto, auto, min(1320px, 108vw) auto;
  background-position: center, center, center, center, right -190px top 12px;
  background-repeat: no-repeat;
}
.hero-section::before {
  opacity: .78;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(8,17,31,.86) 18.2% 19%, transparent 19.4% 100%),
    linear-gradient(115deg, transparent 0 33%, rgba(21,217,255,.12) 33.15% 33.5%, transparent 33.8% 100%),
    linear-gradient(115deg, transparent 0 54%, rgba(232,255,20,.12) 54.15% 54.5%, transparent 54.8% 100%),
    linear-gradient(115deg, transparent 0 72%, rgba(255,47,121,.13) 72.15% 72.5%, transparent 72.8% 100%),
    radial-gradient(circle at 80% 16%, rgba(255,255,255,.06), transparent 30rem);
  mix-blend-mode: screen;
}
.hero-noise {
  opacity: .20;
}
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .74fr);
}
.eyebrow {
  color: var(--abo-primary);
  letter-spacing: .22em;
}
.eyebrow::before {
  background: linear-gradient(180deg, var(--abo-primary), var(--abo-orange), var(--abo-primary-3));
}
.hero-copy h1 {
  max-width: 11ch;
  line-height: .87;
  text-transform: uppercase;
  letter-spacing: -.075em;
  text-shadow: 0 22px 42px rgba(0,0,0,.46);
}
.gradient-dot {
  background: linear-gradient(135deg, var(--abo-primary), var(--abo-orange), var(--abo-primary-3));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead {
  max-width: 66ch;
  margin-top: 22px;
  padding-left: 18px;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--abo-primary), var(--abo-orange), var(--abo-primary-3)) 1;
  color: #d6dee9;
}
.button-primary {
  color: #05070b;
  background: linear-gradient(135deg, var(--abo-primary-3), var(--abo-orange) 48%, var(--abo-primary));
  box-shadow: 0 20px 60px rgba(255, 81, 35, .25);
}
.button-primary:hover {
  box-shadow: 0 24px 70px rgba(255, 138, 0, .32);
}
.button-ghost,
.button-light {
  border-color: rgba(232,255,20,.22);
  background: rgba(2,6,13,.70);
  color: #fff;
}
.button-ghost:hover,
.button-light:hover {
  background: linear-gradient(135deg, rgba(21,217,255,.13), rgba(232,255,20,.09), rgba(255,47,121,.13));
  border-color: rgba(232,255,20,.34);
}
.hero-signals span {
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(115deg, transparent 0 78%, rgba(255,47,121,.10) 78.2% 79%, transparent 79.4% 100%);
  border-color: rgba(255,255,255,.10);
}
.matchday-ticker {
  border-color: rgba(232,255,20,.25);
  background:
    linear-gradient(90deg, rgba(21,217,255,.16), rgba(232,255,20,.18), rgba(255,138,0,.14), rgba(255,47,121,.16)),
    rgba(1,5,12,.78);
}
.matchday-ticker-track span::after {
  background: linear-gradient(135deg, var(--abo-primary), var(--abo-orange), var(--abo-primary-3));
}
.hero-club-panel {
  grid-template-columns: 104px minmax(0, 1fr) auto;
  border-color: rgba(255,255,255,.09);
  background:
    linear-gradient(180deg, rgba(8,16,29,.88), rgba(1,6,13,.88)),
    url('../img/fuego-kit-shards.svg');
  background-size: auto, 740px auto;
  background-position: center, right -260px center;
  box-shadow: 0 28px 84px rgba(0,0,0,.42);
}
.hero-club-badge {
  background: linear-gradient(145deg, rgba(1,5,12,.96), rgba(7,15,28,.94));
  border-color: rgba(232,255,20,.20);
}
.hero-club-label {
  color: var(--abo-primary);
}
.hero-club-stats div {
  background: rgba(255,255,255,.055);
}
.hero-club-stats span {
  background: linear-gradient(135deg, var(--abo-primary), var(--abo-orange), var(--abo-primary-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.portrait-glow {
  background:
    radial-gradient(circle at 52% 10%, rgba(232,255,20,.30), transparent 34%),
    radial-gradient(circle at 82% 50%, rgba(255,47,121,.30), transparent 36%),
    radial-gradient(circle at 22% 62%, rgba(21,217,255,.26), transparent 34%);
}
.portrait-frame {
  border-color: rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(6,13,24,.76), rgba(0,3,8,.96)),
    url('../img/fuego-kit-shards.svg');
  background-size: auto, 820px auto;
  background-position: center, center;
}
.portrait-frame::after {
  content: "FUEGO KIT EDITION";
  border-color: rgba(232,255,20,.18);
  background: rgba(1,6,13,.70);
  color: var(--abo-primary);
}
.portrait-frame::before {
  background: linear-gradient(90deg, transparent, var(--abo-primary-2), var(--abo-primary), var(--abo-orange), var(--abo-primary-3), transparent);
}
.status-card {
  border-color: rgba(232,255,20,.18);
  background:
    linear-gradient(180deg, rgba(8,16,29,.88), rgba(1,6,13,.92));
}
.status-pulse {
  background: var(--abo-primary);
  box-shadow: 0 0 0 8px rgba(232,255,20,.12), 0 0 24px rgba(232,255,20,.48);
}
.proof-strip {
  border-color: rgba(255,255,255,.09);
  background: rgba(255,255,255,.05);
}
.proof-strip > div {
  background:
    linear-gradient(180deg, rgba(8,16,29,.86), rgba(1,6,13,.86)),
    linear-gradient(115deg, transparent 0 82%, rgba(255,47,121,.08) 82.2% 82.8%, transparent 83% 100%);
}
.proof-strip span { color: var(--abo-primary); }

.section-panel,
.site-footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    url('../img/fuego-kit-shards.svg');
  background-size: auto, 1000px auto;
  background-position: center, right -380px center;
  border-color: rgba(255,255,255,.07);
}
.section-heading h2,
.section-kicker h2,
.cta-inner h2 {
  letter-spacing: -.07em;
}
.profile-copy > p:first-child::first-letter {
  color: var(--abo-primary);
  font-size: 3.1em;
  font-weight: 950;
  float: left;
  line-height: .86;
  padding-right: 10px;
}
.statement-card {
  border-color: rgba(232,255,20,.17);
  background:
    radial-gradient(circle at 0% 0%, rgba(232,255,20,.12), transparent 15rem),
    radial-gradient(circle at 100% 0%, rgba(255,47,121,.14), transparent 14rem),
    linear-gradient(180deg, rgba(8,16,29,.96), rgba(1,6,13,.92));
}
.statement-card span {
  color: var(--abo-primary);
}
.statement-card blockquote strong,
.statement-card blockquote em {
  color: var(--abo-primary);
}
.achievement-card,
.media-card,
.feature-card,
.post-card,
.trophy-card,
.partner-card,
.media-admin-note,
.entry,
.no-results,
.comments-area,
.not-found-page {
  position: relative;
  border-color: rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(8,16,29,.92), rgba(1,6,13,.94)),
    linear-gradient(115deg, transparent 0 76%, rgba(232,255,20,.06) 76.2% 76.8%, transparent 77.2% 100%),
    url('../img/fuego-kit-shards.svg');
  background-size: auto, auto, 840px auto;
  background-position: center, center, right -420px center;
  overflow: hidden;
}
.achievement-card::before,
.media-card::before,
.feature-card::before,
.post-card::before,
.trophy-card::before,
.partner-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--abo-primary-2), var(--abo-primary), var(--abo-orange), var(--abo-primary-3));
  opacity: .54;
}
.achievement-card:hover,
.media-card:hover,
.feature-card:hover,
.post-card:hover,
.trophy-card:hover,
.partner-card:hover {
  border-color: rgba(232,255,20,.22);
  transform: translateY(-5px);
}
.achievement-number,
.media-card-top,
.text-link,
.entry-content a,
.trophy-body span,
.partner-logo span {
  color: var(--abo-primary);
}
.media-card-image,
.post-card-media,
.trophy-image,
.update-card .post-card-media {
  background:
    linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.28)),
    url('../img/fuego-kit-shards.svg');
  background-size: cover;
  background-position: center;
}
.post-card-media span,
.trophy-image-placeholder span {
  text-shadow: 0 10px 28px rgba(0,0,0,.55);
}
.partner-logo {
  border-color: rgba(232,255,20,.14);
  background: rgba(255,255,255,.045);
}
.trophy-section::before,
.partners-section::before,
.updates-section::before {
  opacity: .55;
  background:
    url('../img/fuego-kit-shards.svg'),
    linear-gradient(115deg, transparent 0 22%, rgba(21,217,255,.08) 22.2% 22.55%, transparent 22.8% 100%),
    linear-gradient(115deg, transparent 0 78%, rgba(232,255,20,.07) 78.2% 78.55%, transparent 78.8% 100%);
  background-size: 1040px auto, auto, auto;
  background-position: right -420px top -80px, center, center;
  background-repeat: no-repeat;
}
.cta-inner {
  border-color: rgba(232,255,20,.20);
  background:
    linear-gradient(90deg, rgba(1,5,12,.92), rgba(1,5,12,.72)),
    url('../img/fuego-kit-shards.svg');
  background-size: auto, cover;
  background-position: center;
}
.site-footer {
  border-top-color: rgba(255,255,255,.08);
}
.social-links a:hover {
  color: #05070b;
  background: linear-gradient(135deg, var(--abo-primary), var(--abo-orange));
}
.search-field:focus {
  border-color: rgba(232,255,20,.45);
  box-shadow: 0 0 0 4px rgba(232,255,20,.12);
}

@media (max-width: 1100px) {
  .hero-section {
    background-position: center, center, center, center, right -420px top 120px;
  }
}
@media (max-width: 920px) {
  .hero-section {
    min-height: auto;
    background-position: center, center, center, center, right -540px top 80px;
  }
  .hero-copy h1 {
    max-width: 12ch;
  }
}
@media (max-width: 600px) {
  body::before {
    background-size: 70px 70px, 70px 70px, 760px auto;
    background-position: center top, center top, right -430px top 80px;
  }
  .hero-lead {
    padding-left: 14px;
  }
}

/* ==============================
   v1.8.0 Production responsive + AB TV module
   ============================== */
.ab-tv-section {
  position: relative;
  overflow: hidden;
}
.ab-tv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 87, 34, .16), transparent 18rem),
    radial-gradient(circle at 86% 10%, rgba(41, 213, 255, .13), transparent 20rem),
    linear-gradient(115deg, transparent 0 22%, rgba(232,255,20,.045) 22.2% 22.55%, transparent 22.8% 100%),
    linear-gradient(115deg, transparent 0 62%, rgba(255,69,181,.05) 62.2% 62.55%, transparent 62.8% 100%);
}
.ab-tv-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  gap: 20px;
  align-items: stretch;
}
.ab-tv-archive-layout,
.ab-tv-layout-fallback {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ab-tv-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(18,23,29,.96), rgba(8,11,15,.94)),
    linear-gradient(115deg, transparent 0 82%, rgba(255,112,30,.07) 82.2% 82.55%, transparent 82.8% 100%);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.ab-tv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,255,20,.18);
  box-shadow: 0 30px 88px rgba(0,0,0,.42);
}
.ab-tv-card-featured {
  grid-row: span 2;
}
.ab-tv-card-featured .ab-tv-screen {
  min-height: 390px;
}
.ab-tv-screen {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 220px;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 28% 18%, rgba(232,255,20,.16), transparent 14rem),
    radial-gradient(circle at 80% 86%, rgba(255,69,181,.14), transparent 12rem),
    #05070a;
}
.ab-tv-screen iframe,
.ab-tv-screen video,
.ab-tv-screen object,
.ab-tv-screen embed,
.ab-tv-screen img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  object-fit: cover;
}
.ab-tv-screen a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.ab-tv-placeholder {
  display: grid !important;
  place-items: center;
  min-height: inherit;
  color: #050608;
  text-decoration: none;
  background:
    linear-gradient(115deg, rgba(0,0,0,.2) 0 34%, rgba(232,255,20,.75) 34.2% 34.55%, transparent 34.8% 100%),
    linear-gradient(135deg, rgba(41,213,255,.20), rgba(255,69,181,.12)),
    #070a0e;
}
.ab-tv-placeholder span,
.ab-tv-play {
  display: inline-grid;
  place-items: center;
  min-width: 74px;
  height: 74px;
  padding-inline: 18px;
  border-radius: 999px;
  color: #050608;
  background: linear-gradient(135deg, var(--abo-primary), #ff7a18);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(232,255,20,.20);
}
.ab-tv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  letter-spacing: 0;
}
.ab-tv-body {
  padding: clamp(18px, 2.2vw, 28px);
}
.ab-tv-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--abo-primary);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ab-tv-meta time {
  color: var(--abo-muted);
  font-weight: 800;
}
.ab-tv-body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.ab-tv-body h3 a {
  color: var(--abo-text);
  text-decoration: none;
}
.ab-tv-body p {
  color: var(--abo-muted);
  margin: 0 0 16px;
}
.single-tv-main .container {
  max-width: 1120px;
}
.single-tv-header {
  margin-bottom: 24px;
}
.single-tv-player {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

/* Responsive hardening for live public traffic */
img,
video,
iframe {
  max-width: 100%;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.container {
  width: min(100% - 32px, 1180px);
}
.hero-copy h1,
.section-heading h2,
.section-kicker h2 {
  text-wrap: balance;
}
.hero-lead,
.profile-copy p,
.section-copy p,
.media-card p,
.trophy-body p,
.post-card p,
.ab-tv-body p {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 28px, 1080px);
  }
  .hero-grid {
    gap: 30px;
  }
  .hero-copy h1 {
    font-size: clamp(3rem, 7vw, 5.4rem);
  }
  .proof-strip,
  .achievement-grid,
  .media-grid,
  .trophy-grid,
  .partners-grid,
  .post-grid {
    gap: 16px;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 24px, 860px);
  }
  .hero-section {
    padding-top: 108px;
  }
  .hero-grid,
  .profile-grid,
  .two-column,
  .cta-inner,
  .ab-tv-layout {
    grid-template-columns: 1fr !important;
  }
  .hero-copy {
    order: 1;
  }
  .hero-visual {
    order: 2;
    max-width: 620px;
    margin-inline: auto;
  }
  .portrait-frame {
    max-height: 680px;
  }
  .proof-strip,
  .achievement-grid,
  .media-grid,
  .trophy-grid,
  .partners-grid,
  .post-grid,
  .ab-tv-archive-layout,
  .ab-tv-layout-fallback {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .ab-tv-card-featured {
    grid-row: auto;
  }
  .ab-tv-card-featured .ab-tv-screen {
    min-height: 260px;
  }
  .hero-club-panel {
    grid-template-columns: 86px 1fr;
  }
  .hero-club-stats {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .section {
    padding-block: 68px;
  }
  .site-header .container,
  .header-inner {
    min-height: 72px;
  }
  .hero-section {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 58px;
  }
  .hero-copy h1 {
    font-size: clamp(2.65rem, 14vw, 4.5rem);
    max-width: 100%;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-actions,
  .footer-social,
  .social-links {
    gap: 10px;
  }
  .button,
  button,
  input[type="submit"] {
    min-height: 46px;
    padding: 13px 18px;
  }
  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }
  .hero-signals {
    grid-template-columns: 1fr;
  }
  .proof-strip,
  .achievement-grid,
  .media-grid,
  .trophy-grid,
  .partners-grid,
  .post-grid,
  .ab-tv-archive-layout,
  .ab-tv-layout-fallback {
    grid-template-columns: 1fr !important;
  }
  .hero-club-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-club-badge {
    margin-inline: auto;
  }
  .hero-club-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .portrait-shell,
  .portrait-frame {
    border-radius: 28px;
  }
  .status-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    width: 100%;
  }
  .ab-tv-card,
  .media-card,
  .trophy-card,
  .achievement-card,
  .post-card,
  .statement-card {
    border-radius: 22px;
  }
  .ab-tv-screen {
    min-height: 210px;
  }
  .ab-tv-body {
    padding: 18px;
  }
  .section-heading h2,
  .section-kicker h2 {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 18px, 100%);
  }
  .site-brand .brand-text,
  .brand-text {
    max-width: 158px;
  }
  .hero-section {
    padding-top: 88px;
  }
  .hero-copy h1 {
    font-size: clamp(2.3rem, 17vw, 3.6rem);
  }
  .matchday-ticker,
  .hero-club-panel,
  .proof-strip,
  .media-admin-note,
  .cta-inner {
    border-radius: 20px;
  }
  .hero-club-stats {
    grid-template-columns: 1fr;
  }
  .ab-tv-screen {
    min-height: 188px;
  }
  .ab-tv-placeholder span,
  .ab-tv-play {
    min-width: 60px;
    height: 60px;
  }
  .footer-grid,
  .footer-bottom {
    text-align: center;
  }
}

/* ==============================
   v1.8.1 Public mobile/tablet hotfix
   Fixes horizontal overflow seen on live mobile browsers
   ============================== */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}
.site,
.site-main,
.hero-section,
.section,
.site-header,
.site-footer {
  max-width: 100vw;
  overflow-x: clip;
}
.hero-grid,
.hero-copy,
.hero-visual,
.portrait-shell,
.hero-club-panel,
.matchday-ticker,
.proof-strip,
.section-heading,
.section-kicker,
.ab-tv-layout,
.ab-tv-archive-layout,
.ab-tv-layout-fallback {
  min-width: 0;
  max-width: 100%;
}
.hero-copy h1 {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.eyebrow,
.matchday-ticker {
  max-width: 100%;
}
.eyebrow {
  overflow: hidden;
}
.matchday-ticker {
  contain: paint;
}

@media (max-width: 980px) {
  .hero-section {
    display: block;
    padding-top: 88px;
    padding-bottom: 52px;
    background-size: auto, auto, auto, auto, 820px auto;
    background-position: center, center, center, center, right -360px top 84px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px;
    align-items: start;
  }
  .hero-copy,
  .hero-visual {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }
  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 11.5vw, 5.2rem);
    line-height: .92;
    letter-spacing: -.065em;
  }
  .hero-lead {
    max-width: 100%;
  }
  .portrait-shell {
    width: min(100%, 500px);
    margin-inline: auto;
  }
  .portrait-frame {
    min-height: clamp(480px, 72vw, 620px);
  }
  .hero-portrait {
    width: min(86%, 380px);
  }
  .proof-strip {
    margin-top: 26px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 100%);
    margin-inline: auto;
  }
  .site-header {
    position: sticky;
  }
  .header-inner {
    min-height: 74px;
    gap: 12px;
  }
  .brand-text {
    min-width: 0;
    gap: 10px;
  }
  .brand-mark {
    width: 40px;
    height: 48px;
    border-radius: 15px;
    flex: 0 0 auto;
  }
  .brand-name {
    max-width: calc(100vw - 122px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(.78rem, 4.5vw, 1.02rem);
    letter-spacing: .10em;
  }
  .nav-toggle {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    flex: 0 0 auto;
  }
  .primary-nav {
    left: 14px;
    right: 14px;
    width: auto;
    max-width: calc(100vw - 28px);
  }
  .hero-section {
    padding-top: 54px;
    padding-bottom: 44px;
    background-size: auto, auto, auto, auto, 700px auto;
    background-position: center, center, center, center, right -330px top 18px;
  }
  .eyebrow {
    display: flex;
    width: 100%;
    font-size: .68rem;
    line-height: 1.35;
    letter-spacing: .15em;
    white-space: normal;
    text-wrap: pretty;
  }
  .eyebrow::before {
    width: 36px;
    flex: 0 0 36px;
  }
  .hero-copy h1 {
    font-size: clamp(2.35rem, 12.3vw, 3.55rem);
    line-height: .96;
    letter-spacing: -.055em;
    text-wrap: wrap;
  }
  .hero-lead {
    margin-top: 18px;
    padding-left: 12px;
    font-size: clamp(.98rem, 4.4vw, 1.08rem);
    line-height: 1.55;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 26px;
  }
  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }
  .hero-signals {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .hero-signals span {
    width: 100%;
    text-align: center;
  }
  .matchday-ticker {
    margin-top: 22px;
    width: 100%;
  }
  .matchday-ticker-track {
    gap: 18px;
    padding-inline: 14px;
    animation-duration: 24s;
  }
  .hero-club-panel {
    grid-template-columns: 1fr !important;
    gap: 14px;
    padding: 16px;
    margin-top: 20px;
    text-align: center;
    background-size: auto, 540px auto;
    background-position: center, right -230px center;
  }
  .hero-club-copy strong,
  .hero-club-copy p {
    max-width: 100%;
  }
  .hero-club-stats {
    grid-template-columns: 1fr !important;
    gap: 9px;
  }
  .hero-club-stats div {
    min-width: 0;
    width: 100%;
  }
  .hero-visual {
    margin-top: 8px;
  }
  .portrait-shell {
    width: min(100%, 390px);
  }
  .portrait-frame {
    min-height: clamp(410px, 118vw, 540px);
    border-radius: 28px;
    padding: 14px 14px 0;
  }
  .portrait-frame::after {
    left: 16px;
    top: 16px;
    font-size: .65rem;
    max-width: calc(100% - 32px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .portrait-portrait,
  .hero-portrait {
    width: min(90%, 330px);
  }
  .status-card {
    position: static !important;
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    transform: none !important;
  }
  .proof-strip {
    grid-template-columns: 1fr !important;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .proof-strip > div {
    width: 100%;
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 100%);
  }
  .brand-name {
    max-width: calc(100vw - 116px);
    font-size: clamp(.72rem, 4.2vw, .9rem);
    letter-spacing: .12em;
  }
  .hero-section {
    padding-top: 42px;
    background-size: auto, auto, auto, auto, 610px auto;
    background-position: center, center, center, center, right -300px top 10px;
  }
  .hero-copy h1 {
    font-size: clamp(2.08rem, 11.6vw, 3.05rem);
    letter-spacing: -.045em;
  }
  .hero-lead {
    font-size: .98rem;
  }
  .portrait-shell {
    width: min(100%, 350px);
  }
  .portrait-frame {
    min-height: clamp(380px, 116vw, 500px);
  }
  .hero-portrait {
    width: min(92%, 300px);
  }
  .section-heading h2,
  .section-kicker h2,
  .cta-inner h2 {
    letter-spacing: -.045em;
  }
}


/* ==============================
   v1.8.2 Production public polish
   Cleaner public mobile, calmer footer, no admin hints on live web
   ============================== */
.media-admin-note {
  display: none !important;
}
.site-footer {
  position: relative;
  padding: clamp(44px, 7vw, 70px) 0 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(41, 213, 255, .08), transparent 30rem),
    linear-gradient(180deg, rgba(3, 5, 8, .98), rgba(2, 3, 5, 1)) !important;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: var(--abo-kit-shards, none);
  background-size: 860px auto;
  background-position: center top;
}
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}
.footer-grid {
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: start;
}
.footer-brand {
  max-width: 660px;
}
.footer-logo .brand-name {
  max-width: none;
}
.footer-brand p {
  max-width: 52ch;
}
.partner-card-placeholder .partner-logo span {
  font-size: clamp(1.1rem, 4vw, 1.65rem);
  letter-spacing: -.03em;
}
.partner-card-placeholder .partner-logo {
  min-height: 88px;
}
.matchday-ticker {
  overflow: hidden !important;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.matchday-ticker-track {
  width: max-content;
  max-width: none;
  will-change: transform;
}
.section-heading h2,
.section-kicker h2,
.cta-inner h2 {
  overflow-wrap: anywhere;
}
.ab-tv-card-featured .ab-tv-body h3,
.media-card h3,
.post-card h3,
.trophy-card h3 {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .site-footer {
    padding-top: 46px;
  }
  .site-footer::before {
    opacity: .075;
    background-size: 720px auto;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-logo .brand-mark {
    width: 46px;
    height: 52px;
  }
  .footer-logo .brand-name {
    max-width: calc(100vw - 118px);
  }
  .footer-brand p {
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.55;
  }
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    font-size: .9rem;
  }
  .section-heading h2,
  .section-kicker h2,
  .cta-inner h2 {
    font-size: clamp(2rem, 9.2vw, 3.05rem) !important;
    line-height: 1.03;
    letter-spacing: -.045em;
  }
  .ab-tv-section .section-heading h2 {
    font-size: clamp(1.8rem, 8.4vw, 2.62rem) !important;
  }
  .partners-section .section-heading h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.75rem) !important;
  }
  .matchday-ticker-track span {
    white-space: nowrap;
  }
  .proof-strip > div {
    padding: 17px 18px !important;
  }
  .partner-grid,
  .media-grid,
  .gallery-grid,
  .post-grid,
  .updates-grid {
    gap: 16px !important;
  }
  .partner-card-placeholder .partner-logo {
    min-height: 74px;
  }
  .partner-card-placeholder .partner-logo span {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding-inline: 14px;
  }
  .site-brand .brand-text,
  .brand-text {
    max-width: calc(100vw - 98px);
  }
  .hero-copy h1 {
    font-size: clamp(2.02rem, 11.1vw, 2.92rem) !important;
  }
  .section-heading h2,
  .section-kicker h2,
  .cta-inner h2 {
    font-size: clamp(1.82rem, 8.7vw, 2.7rem) !important;
  }
  .ab-tv-section .section-heading h2 {
    font-size: clamp(1.68rem, 8.1vw, 2.38rem) !important;
  }
  .button,
  .text-link {
    -webkit-tap-highlight-color: transparent;
  }
}

/* ==============================
   v1.8.3 Production mobile anchor + footer hotfix
   Keeps sticky header from covering section starts and calms final screen
   ============================== */
html {
  scroll-padding-top: clamp(92px, 12vw, 132px);
}
#top,
#profile,
#achievements,
#media,
#gallery,
#partners,
#updates,
#tv,
#contact,
.section,
.cta-band,
.site-footer {
  scroll-margin-top: clamp(92px, 12vw, 132px);
}
.cta-band {
  overflow: clip;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-inner .button-light,
.cta-inner .button {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.site-footer {
  border-top-color: rgba(255,255,255,.055) !important;
}
.site-footer::before {
  transform: translate3d(0,0,0);
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 112px;
  }
  #top,
  #profile,
  #achievements,
  #media,
  #gallery,
  #partners,
  #updates,
  #tv,
  #contact,
  .section,
  .cta-band,
  .site-footer {
    scroll-margin-top: 112px;
  }
  .cta-band {
    padding-block: 34px 42px !important;
  }
  .cta-inner {
    padding: 34px 22px !important;
    border-radius: 28px !important;
    text-align: center;
  }
  .cta-inner .eyebrow {
    justify-content: center;
  }
  .cta-inner h2 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(1.72rem, 8vw, 2.35rem) !important;
    line-height: 1.04 !important;
  }
  .cta-inner p:not(.eyebrow) {
    max-width: 31ch;
    margin-inline: auto;
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }
  .cta-inner .button-light,
  .cta-inner .button {
    width: 100%;
    justify-content: center;
    padding-inline: 16px !important;
    font-size: clamp(.88rem, 4.2vw, 1rem) !important;
    line-height: 1.25;
  }
  .site-footer {
    padding: 36px 0 18px !important;
    background: linear-gradient(180deg, rgba(3,5,8,.99), rgba(2,3,5,1)) !important;
  }
  .site-footer::before {
    opacity: .045 !important;
    background-size: 560px auto !important;
  }
  .footer-grid {
    gap: 14px !important;
  }
  .footer-logo .brand-mark {
    width: 42px !important;
    height: 48px !important;
  }
  .footer-logo .brand-name {
    font-size: .92rem !important;
    letter-spacing: .14em !important;
  }
  .footer-brand p {
    max-width: 28ch;
    font-size: .92rem !important;
  }
  .footer-bottom {
    padding-top: 20px !important;
    gap: 8px !important;
    font-size: .82rem !important;
  }
}

@media (max-width: 420px) {
  .cta-inner h2 {
    max-width: 11ch;
    font-size: clamp(1.56rem, 7.5vw, 2.05rem) !important;
  }
  .cta-inner p:not(.eyebrow) {
    font-size: .93rem !important;
  }
  .cta-inner .button-light,
  .cta-inner .button {
    font-size: .86rem !important;
  }
  .footer-logo .brand-name {
    max-width: 220px !important;
  }
}

/* v1.8.4 Footer uses uploaded main logo consistently */
.footer-logo-uploaded {
  display: inline-flex;
  align-items: center;
  max-width: min(100%, 320px);
}
.footer-custom-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 82px;
  height: auto;
}
.footer-logo-uploaded img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 82px;
  height: auto;
}
@media (max-width: 782px) {
  .footer-logo-uploaded {
    max-width: min(100%, 260px);
  }
  .footer-custom-logo,
  .footer-logo-uploaded img {
    max-height: 64px;
  }
}


/* v1.8.5 Consistent uploaded main logo across all visual blocks */
.hero-club-logo-stat .hero-stat-logo {
  display: block;
  max-width: min(170px, 70%);
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto 8px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.45));
}
.hero-club-logo-stat {
  align-items: center;
  justify-content: center;
}
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: min(320px, 62vw);
}
.custom-logo-link img,
.footer-custom-logo,
.footer-logo-uploaded img {
  object-fit: contain;
}
@media (max-width: 720px) {
  .custom-logo-link img { max-height: 48px; }
  .hero-club-logo-stat .hero-stat-logo { max-width: min(145px, 74%); max-height: 58px; }
}

/* v1.8.6 Mobile hero title refinement */
.hero-title-line {
  display: inline;
}

@media (max-width: 760px) {
  .hero-copy h1 {
    font-size: clamp(1.95rem, 10.2vw, 2.75rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.055em !important;
    max-width: 100% !important;
    margin-bottom: 18px;
  }
  .hero-title-line {
    display: block;
  }
  .hero-title-line-first {
    margin-bottom: .04em;
  }
  .hero-title-line-second {
    font-size: .96em;
  }
  .hero-copy .gradient-dot {
    display: inline-block;
    margin-left: .03em;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 {
    font-size: clamp(1.82rem, 9.7vw, 2.42rem) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.06em !important;
  }
}

/* ==============================
   v1.8.7 Desktop / PC layout recovery
   Restores stable wide-screen composition while keeping mobile fixes
   ============================== */
@media (min-width: 981px) {
  html,
  body {
    overflow-x: hidden;
  }
  .site-header {
    position: sticky;
    top: 0;
    overflow: visible;
  }
  body.admin-bar .site-header {
    top: 32px;
  }
  .site-header .container,
  .hero-section .container,
  .section .container,
  .cta-band .container,
  .site-footer .container {
    width: min(100% - 64px, 1180px);
    margin-inline: auto;
  }
  .header-inner {
    min-height: 92px;
    gap: 28px;
  }
  .custom-logo-link img,
  .site-brand img,
  .site-logo img {
    max-height: 72px;
    width: auto;
  }
  .site-brand,
  .brand-text,
  .custom-logo-link {
    flex: 0 1 auto;
    min-width: 0;
  }
  .primary-nav {
    position: static !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .nav-toggle {
    display: none !important;
  }
  .hero-section {
    min-height: auto;
    padding: clamp(96px, 8vw, 132px) 0 clamp(76px, 7vw, 112px) !important;
    overflow: hidden;
  }
  .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.82fr) !important;
    gap: clamp(42px, 4.8vw, 74px) !important;
    align-items: center !important;
  }
  .hero-copy {
    width: auto !important;
    max-width: 680px !important;
    margin: 0 !important;
    text-align: left !important;
    align-items: flex-start !important;
  }
  .hero-copy h1 {
    max-width: 11.4ch !important;
    font-size: clamp(4.35rem, 6.2vw, 6.85rem) !important;
    line-height: .86 !important;
    letter-spacing: -0.075em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
    margin-bottom: 28px !important;
  }
  .hero-title-line {
    display: inline !important;
  }
  .hero-lead {
    max-width: 56ch !important;
    font-size: clamp(1.04rem, 1.2vw, 1.32rem) !important;
    line-height: 1.55 !important;
  }
  .hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 14px !important;
  }
  .hero-actions .button {
    width: auto !important;
  }
  .hero-signals {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }
  .hero-signals span {
    width: auto !important;
  }
  .matchday-ticker {
    width: min(100%, 650px) !important;
    max-width: 650px !important;
    margin-top: 28px !important;
    overflow: hidden !important;
  }
  .matchday-ticker-track {
    min-width: max-content;
  }
  .hero-club-panel {
    display: grid !important;
    grid-template-columns: 108px minmax(0, 1fr) !important;
    gap: 18px !important;
    align-items: center !important;
    width: min(100%, 650px) !important;
    max-width: 650px !important;
    text-align: left !important;
  }
  .hero-club-stats {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .hero-visual {
    width: 100% !important;
    max-width: 500px !important;
    justify-self: end !important;
    margin: 0 !important;
  }
  .portrait-shell {
    width: min(100%, 500px) !important;
    margin: 0 !important;
  }
  .portrait-frame {
    min-height: clamp(580px, 43vw, 690px) !important;
    border-radius: 38px !important;
    overflow: hidden !important;
  }
  .hero-portrait {
    width: min(86%, 430px) !important;
    max-height: 94% !important;
    object-fit: contain !important;
  }
  .status-card {
    max-width: 360px !important;
    right: -18px !important;
    bottom: 32px !important;
  }
  .proof-strip {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-top: clamp(26px, 3vw, 42px) !important;
  }
  .proof-strip > div {
    min-width: 0 !important;
  }
  .section-heading h2,
  .section-kicker h2,
  .cta-inner h2 {
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }
  .media-grid,
  .gallery-grid,
  .partners-grid,
  .posts-grid,
  .features-grid,
  .achievements-grid {
    align-items: stretch !important;
  }
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    align-items: start !important;
  }
}

@media (min-width: 981px) and (max-width: 1240px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr) !important;
    gap: 44px !important;
  }
  .hero-copy h1 {
    font-size: clamp(3.9rem, 6vw, 5.55rem) !important;
    max-width: 11.8ch !important;
  }
  .hero-visual {
    max-width: 440px !important;
  }
  .portrait-frame {
    min-height: 580px !important;
  }
}

/* ==============================
   v1.8.8 Desktop hero hard fix
   Fixes PC overlap: title, portrait, club panel and proof strip
   ============================== */
@media (min-width: 981px) {
  .hero-section {
    min-height: auto !important;
    padding: clamp(76px, 6vw, 104px) 0 clamp(68px, 5vw, 92px) !important;
    overflow: clip !important;
  }
  .hero-section .container {
    width: min(100% - 72px, 1280px) !important;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 620px) minmax(360px, 470px) !important;
    gap: clamp(48px, 5.2vw, 96px) !important;
    align-items: start !important;
    justify-content: space-between !important;
  }
  .hero-copy {
    max-width: 620px !important;
    padding-top: 18px !important;
    position: relative !important;
    z-index: 3 !important;
  }
  .hero-copy h1 {
    display: block !important;
    max-width: 620px !important;
    font-size: clamp(3.55rem, 4.65vw, 5.35rem) !important;
    line-height: .91 !important;
    letter-spacing: -0.068em !important;
    margin: 0 0 24px !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
    text-wrap: balance;
  }
  .hero-copy h1 .hero-title-line {
    display: block !important;
    white-space: nowrap !important;
  }
  .hero-copy h1 .hero-title-line-second {
    font-size: .94em !important;
  }
  .hero-copy h1 .gradient-dot {
    display: inline-block !important;
    margin-left: .025em !important;
  }
  .hero-lead {
    max-width: 600px !important;
  }
  .hero-visual {
    max-width: 470px !important;
    justify-self: end !important;
    align-self: start !important;
    position: relative !important;
    z-index: 2 !important;
  }
  .portrait-shell {
    width: 100% !important;
    max-width: 470px !important;
  }
  .portrait-frame {
    height: clamp(520px, 34vw, 610px) !important;
    min-height: 0 !important;
    max-height: 610px !important;
    padding: 18px 18px 0 !important;
  }
  .hero-portrait {
    width: min(88%, 405px) !important;
    height: auto !important;
    max-height: 96% !important;
    object-fit: contain !important;
    object-position: center bottom !important;
  }
  .status-card {
    right: 0 !important;
    bottom: 18px !important;
    max-width: 330px !important;
  }
  .matchday-ticker {
    width: 100% !important;
    max-width: 620px !important;
  }
  .hero-club-panel {
    width: 100% !important;
    max-width: 620px !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    padding: 16px !important;
    margin-top: 22px !important;
  }
  .hero-club-badge {
    width: 92px !important;
    height: 92px !important;
  }
  .hero-club-copy p {
    font-size: .9rem !important;
    line-height: 1.42 !important;
  }
  .hero-club-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .hero-club-stats div {
    padding: 10px 8px !important;
  }
  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 1280px !important;
    margin-top: 44px !important;
  }
  .section-heading h2,
  .section-kicker h2 {
    font-size: clamp(2.85rem, 4.25vw, 5.4rem) !important;
    line-height: .98 !important;
    max-width: 15ch !important;
  }
}

@media (min-width: 1281px) {
  .hero-grid {
    grid-template-columns: minmax(0, 650px) minmax(390px, 500px) !important;
  }
  .hero-copy,
  .matchday-ticker,
  .hero-club-panel {
    max-width: 650px !important;
  }
  .hero-copy h1 {
    max-width: 650px !important;
  }
  .hero-visual,
  .portrait-shell {
    max-width: 500px !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hero-section .container {
    width: min(100% - 52px, 1080px) !important;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 410px) !important;
    gap: 36px !important;
  }
  .hero-copy h1 {
    font-size: clamp(3.05rem, 4.7vw, 4.25rem) !important;
  }
  .portrait-frame {
    height: 520px !important;
  }
}

/* ==============================
   v1.8.9 Desktop hero final alignment
   Tightens PC first screen without changing mobile layout
   ============================== */
@media (min-width: 981px) {
  .site-header .container,
  .header-inner {
    min-height: 86px !important;
  }
  .site-brand img,
  .custom-logo {
    max-height: 66px !important;
    width: auto !important;
  }
  .hero-section {
    padding: clamp(54px, 4.6vw, 78px) 0 clamp(46px, 4vw, 66px) !important;
    min-height: calc(100vh - 86px) !important;
  }
  .hero-section .container {
    width: min(100% - 88px, 1240px) !important;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 560px) minmax(360px, 430px) !important;
    gap: clamp(42px, 5vw, 82px) !important;
    align-items: start !important;
  }
  .hero-copy {
    max-width: 560px !important;
    padding-top: 8px !important;
  }
  .hero-copy h1 {
    max-width: 560px !important;
    font-size: clamp(3.25rem, 4.15vw, 4.55rem) !important;
    line-height: .94 !important;
    letter-spacing: -0.062em !important;
    margin-bottom: 22px !important;
  }
  .hero-lead {
    max-width: 535px !important;
    font-size: clamp(1.02rem, 1.15vw, 1.18rem) !important;
    line-height: 1.48 !important;
    margin-bottom: 24px !important;
  }
  .hero-actions {
    margin-top: 0 !important;
    gap: 14px !important;
  }
  .hero-signals {
    margin-top: 22px !important;
    gap: 8px !important;
  }
  .matchday-ticker,
  .hero-club-panel {
    max-width: 560px !important;
  }
  .matchday-ticker {
    margin-top: 22px !important;
  }
  .hero-club-panel {
    margin-top: 20px !important;
  }
  .hero-visual,
  .portrait-shell {
    max-width: 430px !important;
  }
  .portrait-frame {
    height: clamp(440px, 30vw, 510px) !important;
    max-height: 510px !important;
    border-radius: 34px !important;
    padding: 16px 16px 0 !important;
  }
  .portrait-frame::after {
    top: 18px !important;
    left: 18px !important;
    font-size: .74rem !important;
    padding: 8px 14px !important;
  }
  .hero-portrait {
    width: min(86%, 360px) !important;
    max-height: 92% !important;
    object-position: center bottom !important;
  }
  .status-card {
    right: -8px !important;
    bottom: 12px !important;
    max-width: 300px !important;
    padding: 14px 16px !important;
    border-radius: 20px !important;
  }
  .status-card strong {
    font-size: .84rem !important;
    line-height: 1.15 !important;
  }
  .status-card p {
    font-size: .76rem !important;
    line-height: 1.35 !important;
  }
  .proof-strip {
    margin-top: 28px !important;
  }
}

@media (min-width: 1281px) {
  .hero-section .container {
    width: min(100% - 110px, 1260px) !important;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 580px) minmax(380px, 450px) !important;
  }
  .hero-copy,
  .matchday-ticker,
  .hero-club-panel {
    max-width: 580px !important;
  }
  .hero-copy h1 {
    max-width: 580px !important;
    font-size: clamp(3.55rem, 4vw, 4.85rem) !important;
  }
  .hero-visual,
  .portrait-shell {
    max-width: 450px !important;
  }
  .portrait-frame {
    height: clamp(465px, 29vw, 530px) !important;
    max-height: 530px !important;
  }
  .hero-portrait {
    width: min(86%, 378px) !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hero-section .container {
    width: min(100% - 56px, 1080px) !important;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px) !important;
    gap: 34px !important;
  }
  .hero-copy h1 {
    font-size: clamp(2.9rem, 4.35vw, 3.8rem) !important;
  }
  .portrait-frame {
    height: 450px !important;
    max-height: 450px !important;
  }
  .hero-portrait {
    width: min(86%, 330px) !important;
  }
}

/* v1.8.11 Social icons: official Instagram style + Facebook support */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.social-links .social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--abo-line);
  border-radius: 999px;
  color: var(--abo-muted);
  font-weight: 800;
  font-size: .86rem;
  line-height: 1;
}
.social-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.social-link-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}
.social-link-instagram {
  color: #f5f8fb;
  background: linear-gradient(135deg, rgba(131,58,180,.16), rgba(225,48,108,.16) 48%, rgba(253,29,29,.14) 70%, rgba(252,176,69,.16));
  border-color: rgba(255,255,255,.10);
}
.social-link-instagram .social-link-icon {
  color: #ff6abf;
}
.social-link-facebook .social-link-icon {
  color: #6ea8ff;
}
.social-links .social-link:hover {
  color: var(--abo-text);
  background: linear-gradient(135deg, rgba(232,255,20,.12), rgba(41,213,255,.10));
  border-color: rgba(232,255,20,.24);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .social-links .social-link {
    padding: 8px 12px;
    font-size: .82rem;
  }
}

/* v1.8.12 Official club website links */
.club-link-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.club-link-button,
.club-footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(232, 255, 20, .22);
  background: rgba(5, 8, 12, .54);
  color: var(--abo-text);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.club-link-button::after,
.club-footer-links a::after {
  content: "↗";
  margin-left: 7px;
  color: var(--abo-primary);
  font-size: .86em;
}
.club-link-button:hover,
.club-footer-links a:hover {
  color: #050608;
  background: linear-gradient(135deg, var(--abo-primary), var(--abo-primary-2));
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
}
.club-link-button:hover::after,
.club-footer-links a:hover::after {
  color: #050608;
}
.club-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
}
.club-footer-links > span {
  color: var(--abo-muted);
  font-size: .82rem;
  font-weight: 800;
}
@media (max-width: 640px) {
  .club-link-buttons,
  .club-footer-links {
    justify-content: center;
  }
  .club-link-button,
  .club-footer-links a {
    width: 100%;
  }
}


/* v1.8.13 Official SK Bosnia club logo asset */
.hero-club-badge img,
.hero-stat-logo,
.club-footer-badge {
  object-fit: contain;
}

.hero-club-badge img {
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.45));
}

.hero-club-logo-stat .hero-stat-logo {
  width: min(118px, 76%);
  height: auto;
  max-height: 76px;
}

.club-footer-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  box-shadow: 0 0 0 1px rgba(225,255,0,.18), 0 14px 28px rgba(0,0,0,.28);
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .club-footer-badge {
    width: 38px;
    height: 38px;
  }
}

/* v1.8.14 Reduce official club logo footprint */
.hero-club-panel {
  grid-template-columns: 88px minmax(0, 1fr) auto;
}
.hero-club-badge {
  width: 88px;
  height: 88px;
  padding: 8px;
  border-radius: 20px;
}
.hero-club-badge img {
  width: 78%;
  height: 78%;
  margin: auto;
}
.hero-club-logo-stat .hero-stat-logo {
  width: min(84px, 60%);
  max-height: 54px;
}
.club-footer-badge {
  width: 34px;
  height: 34px;
}
@media (max-width: 1100px) {
  .hero-club-panel {
    grid-template-columns: 80px 1fr;
  }
  .hero-club-badge {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 640px) {
  .hero-club-badge {
    width: 74px;
    height: 74px;
  }
  .hero-club-badge img {
    width: 76%;
    height: 76%;
  }
  .hero-club-logo-stat .hero-stat-logo {
    width: min(72px, 58%);
    max-height: 48px;
  }
  .club-footer-badge {
    width: 30px;
    height: 30px;
  }
}

/* v1.8.15 Move club logo and website links under the portrait card */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.hero-club-panel-under-photo {
  width: min(100%, 520px);
  margin-top: 0;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.hero-club-panel-under-photo .hero-club-badge {
  width: 84px;
  height: 84px;
}
.hero-club-panel-under-photo .hero-club-badge img {
  width: 76%;
  height: 76%;
  margin: auto;
}
.hero-club-panel-under-photo .hero-club-copy p {
  margin-bottom: 12px;
}
.hero-club-panel-under-photo .club-link-buttons {
  justify-content: flex-start;
}
.hero-club-panel-under-photo .club-link-button {
  min-width: 0;
}
@media (min-width: 1101px) {
  .hero-club-panel-under-photo {
    padding: 16px 18px;
  }
}
@media (max-width: 1100px) {
  .hero-visual {
    align-items: center;
  }
  .hero-club-panel-under-photo {
    width: min(100%, 540px);
  }
}
@media (max-width: 640px) {
  .hero-club-panel-under-photo {
    grid-template-columns: 72px minmax(0, 1fr);
    width: 100%;
  }
  .hero-club-panel-under-photo .hero-club-badge {
    width: 72px;
    height: 72px;
  }
}

/* ==============================
   v1.8.20 Article & journal premium level-up
   ============================== */
.single-main-pro {
  padding-top: clamp(42px, 6vw, 84px);
}
.single-container-pro {
  max-width: 1260px;
}
.entry-pro {
  position: relative;
  overflow: hidden;
  border-color: rgba(232,255,20,.18);
  background:
    linear-gradient(180deg, rgba(5,11,20,.88), rgba(3,7,14,.94)),
    radial-gradient(circle at 80% 12%, rgba(21,217,255,.14), transparent 28rem),
    url('../img/fuego-kit-shards.svg');
  background-size: auto, auto, 1080px auto;
  background-position: center, center, right -260px top -120px;
  background-repeat: no-repeat;
}
.entry-pro::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--abo-primary-2), var(--abo-primary), var(--abo-orange), var(--abo-primary-3));
  opacity: .9;
}
.single-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--abo-faint);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.single-breadcrumb a {
  color: var(--abo-muted);
}
.single-breadcrumb a:hover {
  color: var(--abo-primary);
}
.entry-hero-header {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.entry-kicker-row,
.post-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.entry-kicker,
.entry-category-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(232,255,20,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: var(--abo-primary);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.entry-category-chip {
  color: var(--abo-text);
  border-color: rgba(255,255,255,.10);
}
.entry-title {
  max-width: 980px;
  line-height: .96;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.entry-deck {
  max-width: 820px;
  margin-top: 24px;
  padding-left: 18px;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--abo-primary), var(--abo-orange), var(--abo-primary-3)) 1;
  color: #d6dee9;
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  line-height: 1.55;
}
.post-meta-pro {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.post-meta-pro span,
.post-card-meta span,
.post-card-meta time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--abo-muted);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.post-meta-pro span::before,
.post-card-meta span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--abo-primary), var(--abo-orange));
}
.entry-media-pro {
  position: relative;
  z-index: 1;
  margin: 36px 0 42px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 26px 90px rgba(0,0,0,.35);
}
.entry-media-pro img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}
.entry-media-pro figcaption {
  padding: 12px 16px;
  color: var(--abo-faint);
  font-size: .88rem;
}
.entry-layout-pro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}
.entry-side-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
}
.entry-side-card,
.entry-share-card {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: rgba(2,6,13,.68);
}
.entry-side-card span,
.entry-share-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--abo-primary);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.entry-side-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--abo-text);
  font-size: 1.08rem;
}
.entry-side-card p {
  color: var(--abo-muted);
  font-size: .94rem;
  line-height: 1.55;
}
.entry-share-links {
  display: grid;
  gap: 8px;
}
.entry-share-links a {
  display: flex;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(232,255,20,.18);
  border-radius: 999px;
  color: var(--abo-text);
  font-weight: 900;
}
.entry-content-pro {
  max-width: 820px;
  color: #dfe6ef;
  font-size: clamp(1.08rem, 1.1vw, 1.2rem);
  line-height: 1.78;
}
.entry-content-pro p {
  margin: 0 0 1.35em;
}
.entry-content-pro h2,
.entry-content-pro h3,
.entry-content-pro h4 {
  color: var(--abo-text);
  line-height: 1.12;
  letter-spacing: -.03em;
}
.entry-content-pro h2 {
  margin-top: 1.7em;
  font-size: clamp(2rem, 3vw, 3.3rem);
}
.entry-content-pro h3 {
  margin-top: 1.45em;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}
.entry-content-pro ul,
.entry-content-pro ol {
  padding-left: 1.25em;
  margin-bottom: 1.35em;
}
.entry-content-pro li + li {
  margin-top: .55em;
}
.entry-content-pro img,
.entry-content-pro iframe,
.entry-content-pro video {
  max-width: 100%;
  border-radius: 20px;
}
.entry-content-pro .wp-block-image,
.entry-content-pro figure {
  margin: 2em 0;
}
.entry-content-pro .wp-block-quote,
.entry-content-pro blockquote {
  border-left: 4px solid var(--abo-primary);
  background: linear-gradient(135deg, rgba(232,255,20,.08), rgba(21,217,255,.05));
}
.entry-footer-pro {
  position: relative;
  z-index: 1;
  margin-top: 36px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-list a {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: var(--abo-muted);
  font-weight: 800;
  font-size: .84rem;
}
.related-posts {
  margin-top: 58px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--abo-radius);
  background: rgba(3,7,14,.62);
}
.compact-heading {
  margin-bottom: 24px;
}
.compact-heading h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.post-navigation {
  margin-top: 34px;
}
.nav-links a {
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}
.nav-subtitle {
  display: block;
  margin-bottom: 8px;
  color: var(--abo-primary);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.nav-title {
  color: var(--abo-text);
  font-weight: 900;
}
.archive-header {
  max-width: 980px;
}
.archive-header h1 {
  line-height: .95;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.post-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.post-card-media {
  position: relative;
  overflow: hidden;
}
.post-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.58));
}
.post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.post-card h3 {
  line-height: 1.1;
  text-wrap: balance;
}
.post-card p {
  flex: 1;
  line-height: 1.65;
}
.text-link {
  align-self: flex-start;
  margin-top: 12px;
  color: var(--abo-primary);
  font-weight: 950;
}
@media (max-width: 1100px) {
  .entry-layout-pro {
    grid-template-columns: 1fr;
  }
  .entry-side-panel {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .entry-content-pro {
    max-width: none;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .single-main-pro {
    padding-top: 28px;
  }
  .entry-pro {
    padding: 22px;
    border-radius: 26px;
  }
  .single-breadcrumb {
    font-size: .68rem;
    letter-spacing: .08em;
  }
  .entry-title {
    font-size: clamp(2.15rem, 11vw, 3.8rem) !important;
  }
  .entry-deck {
    font-size: 1rem;
  }
  .post-meta-pro {
    gap: 8px;
  }
  .entry-side-panel {
    grid-template-columns: 1fr;
  }
  .entry-content-pro {
    font-size: 1.02rem;
    line-height: 1.72;
  }
  .entry-content-pro h2 {
    font-size: clamp(1.65rem, 8vw, 2.45rem);
  }
  .related-posts {
    padding: 20px;
    border-radius: 26px;
  }
}

/* v1.8.21 Full production spacing scan: tighter PC/mobile rhythm */
:root {
  --abo-section-tight: clamp(52px, 6vw, 88px);
}

html, body {
  overflow-x: hidden;
}

.site-header .header-inner {
  min-height: 76px;
}

.hero-section {
  padding-top: clamp(34px, 5vw, 72px) !important;
  padding-bottom: clamp(26px, 3.8vw, 52px) !important;
  min-height: auto !important;
}
.hero-grid {
  align-items: start !important;
  gap: clamp(28px, 4.2vw, 58px) !important;
}
.hero-copy h1 {
  margin-top: 0;
  margin-bottom: clamp(18px, 2.6vw, 28px);
}
.hero-lead {
  margin-top: 0 !important;
  max-width: 620px;
}
.hero-actions {
  margin-top: clamp(20px, 2.5vw, 28px) !important;
}
.hero-signals {
  margin-top: clamp(18px, 2.3vw, 24px) !important;
}
.matchday-ticker {
  margin-top: clamp(18px, 2.2vw, 26px) !important;
  max-width: min(100%, 720px);
}
.portrait-shell {
  width: min(100%, 500px) !important;
}
.portrait-frame {
  min-height: clamp(420px, 42vw, 560px) !important;
}
.hero-portrait {
  max-height: 96% !important;
}
.hero-club-panel-under-photo {
  margin-top: 0 !important;
  padding: clamp(14px, 1.6vw, 18px) !important;
}
.proof-strip {
  margin-top: clamp(28px, 3.4vw, 46px) !important;
}
.proof-strip > div {
  padding: clamp(16px, 2vw, 22px) !important;
}

.section,
.trophy-section,
.partners-section,
.updates-section,
.ab-tv-section,
.media-section,
.profile-section {
  padding-top: var(--abo-section-tight) !important;
  padding-bottom: var(--abo-section-tight) !important;
}
.section-heading {
  margin-bottom: clamp(24px, 3vw, 36px) !important;
}
.section-kicker h2,
.section-heading h2,
.cta-inner h2 {
  line-height: 1.02 !important;
  letter-spacing: -0.052em !important;
}
.feature-grid,
.post-grid,
.media-grid,
.partner-grid,
.trophy-grid,
.ab-tv-grid,
.updates-grid {
  gap: clamp(16px, 2.2vw, 22px) !important;
}
.feature-card,
.achievement-card,
.media-card,
.partner-card,
.post-card,
.trophy-card,
.ab-tv-card {
  padding: clamp(18px, 2.4vw, 26px) !important;
}
.feature-card {
  min-height: 230px !important;
}
.feature-number {
  margin-bottom: clamp(28px, 4vw, 48px) !important;
}
.cta-band {
  padding-top: clamp(54px, 6vw, 84px) !important;
  padding-bottom: clamp(54px, 6vw, 84px) !important;
}
.cta-inner {
  padding: clamp(28px, 4.6vw, 54px) !important;
}
.archive-main,
.single-main {
  padding-top: clamp(42px, 5vw, 68px) !important;
  padding-bottom: clamp(64px, 7vw, 92px) !important;
}
.archive-header {
  margin-bottom: clamp(24px, 3.4vw, 36px) !important;
}
.entry {
  padding: clamp(22px, 4vw, 44px) !important;
}
.entry-header {
  margin-bottom: clamp(22px, 3vw, 30px) !important;
}
.entry-media,
.entry-media-pro {
  margin-bottom: clamp(20px, 3vw, 30px) !important;
}
.entry-layout-pro {
  gap: clamp(24px, 4vw, 44px) !important;
}
.related-posts {
  margin-top: clamp(34px, 4vw, 48px) !important;
  padding: clamp(20px, 3.2vw, 34px) !important;
}
.site-footer {
  padding-top: clamp(42px, 5vw, 62px) !important;
  padding-bottom: 24px !important;
}
.footer-grid {
  gap: clamp(22px, 3vw, 34px) !important;
}
.footer-bottom {
  margin-top: clamp(24px, 3vw, 34px) !important;
  padding-top: clamp(20px, 2.5vw, 28px) !important;
}
.media-admin-note {
  display: none !important;
}

@media (min-width: 1101px) {
  .container { width: min(calc(100% - 72px), var(--abo-container)); }
  .hero-grid {
    grid-template-columns: minmax(0, .93fr) minmax(360px, .62fr) !important;
  }
  .hero-copy h1 {
    font-size: clamp(3.8rem, 5.8vw, 5.65rem) !important;
    max-width: 9.8ch;
  }
  .section-kicker h2,
  .section-heading h2,
  .cta-inner h2 {
    font-size: clamp(2.35rem, 4.1vw, 4.45rem) !important;
  }
  .entry-title,
  .archive-header h1,
  .no-results h1,
  .not-found-page h1 {
    font-size: clamp(2.7rem, 4.9vw, 5.1rem) !important;
  }
  .single-container-pro {
    max-width: 1180px;
  }
}

@media (max-width: 1100px) {
  .site-header .header-inner {
    min-height: 72px;
  }
  .hero-section {
    padding-top: clamp(28px, 6vw, 52px) !important;
  }
  .hero-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-visual {
    margin-top: 4px !important;
  }
  .portrait-frame {
    min-height: clamp(390px, 70vw, 520px) !important;
  }
  .proof-strip {
    grid-template-columns: 1fr !important;
  }
  .section,
  .trophy-section,
  .partners-section,
  .updates-section,
  .ab-tv-section,
  .media-section,
  .profile-section {
    padding-top: clamp(44px, 8vw, 68px) !important;
    padding-bottom: clamp(44px, 8vw, 68px) !important;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow-container {
    width: min(calc(100% - 32px), var(--abo-container)) !important;
  }
  .site-header .header-inner {
    min-height: 66px;
  }
  .hero-section {
    padding-top: 26px !important;
    padding-bottom: 34px !important;
  }
  .eyebrow {
    margin-bottom: 14px !important;
  }
  .hero-copy h1 {
    margin-bottom: 16px !important;
  }
  .hero-lead {
    line-height: 1.48 !important;
  }
  .hero-actions {
    gap: 10px !important;
    margin-top: 18px !important;
  }
  .hero-signals {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }
  .matchday-ticker {
    margin-top: 16px !important;
  }
  .portrait-frame {
    min-height: 430px !important;
    border-radius: 26px !important;
  }
  .hero-club-panel-under-photo {
    gap: 12px !important;
    border-radius: 24px !important;
  }
  .proof-strip {
    margin-top: 24px !important;
  }
  .section-heading h2,
  .section-kicker h2,
  .cta-inner h2 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }
  .section-heading {
    margin-bottom: 22px !important;
  }
  .feature-card,
  .achievement-card,
  .media-card,
  .partner-card,
  .post-card,
  .trophy-card,
  .ab-tv-card {
    padding: 18px !important;
    border-radius: 24px !important;
  }
  .entry-pro {
    padding: 18px !important;
    border-radius: 24px !important;
  }
  .entry-title {
    font-size: clamp(2rem, 10vw, 3.2rem) !important;
  }
  .entry-content-pro p {
    margin-bottom: 1.05em !important;
  }
  .entry-content-pro .wp-block-image,
  .entry-content-pro figure {
    margin: 1.35em 0 !important;
  }
  .related-posts {
    margin-top: 28px !important;
    padding: 18px !important;
  }
  .site-footer {
    padding-top: 38px !important;
  }
}

/* v1.8.23 Compact official profile block: no empty tall design section */
.identity-compact-section {
  padding-top: clamp(34px, 4.5vw, 58px) !important;
  padding-bottom: clamp(34px, 4.5vw, 58px) !important;
}
.identity-compact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: clamp(22px, 3.4vw, 46px);
  align-items: center;
}
.identity-compact-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2.25rem, 4.1vw, 4.65rem);
  line-height: .96;
  letter-spacing: -.06em;
}
.identity-compact-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 760px;
  color: var(--abo-muted);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.58;
}
.identity-compact-points {
  display: grid;
  gap: 10px;
}
.identity-compact-points div {
  display: grid;
  grid-template-columns: minmax(105px, .38fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--abo-line);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.identity-compact-points strong {
  color: var(--abo-text);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.identity-compact-points span {
  color: var(--abo-muted);
  line-height: 1.35;
}
.identity-full-content {
  margin-top: clamp(22px, 3vw, 34px);
}
.identity-full-content .entry-content-pro {
  max-width: 920px;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid var(--abo-line);
  border-radius: 26px;
  background: rgba(255,255,255,.035);
}
.identity-full-content .entry-content-pro > *:first-child {
  margin-top: 0 !important;
}
.identity-full-content .entry-content-pro > *:last-child {
  margin-bottom: 0 !important;
}
@media (max-width: 900px) {
  .identity-compact {
    grid-template-columns: 1fr;
  }
  .identity-compact-points div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
@media (max-width: 760px) {
  .identity-compact-section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .identity-compact-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .identity-compact-copy p:not(.eyebrow) {
    font-size: .98rem;
  }
  .identity-compact-points div {
    padding: 13px 14px;
    border-radius: 16px;
  }
}

/* v1.8.24 FUEGO PRIME level-up: tighter, more premium, stronger media identity */
:root {
  --abo-radius: 24px;
  --abo-radius-sm: 16px;
  --abo-shadow: 0 24px 72px rgba(0,0,0,.42);
}
body {
  background:
    radial-gradient(circle at 9% -7%, rgba(255, 61, 0, 0.28), transparent 30rem),
    radial-gradient(circle at 88% 6%, rgba(255, 176, 0, 0.14), transparent 25rem),
    radial-gradient(circle at 50% 50%, rgba(41, 213, 255, 0.045), transparent 46rem),
    var(--abo-bg);
}
.site-header {
  background: rgba(3, 3, 5, 0.76);
  border-bottom-color: rgba(255,255,255,.06);
}
.header-inner {
  min-height: 76px;
}
.primary-nav a {
  min-height: 38px;
  padding-inline: 13px;
}
.hero-section {
  min-height: auto;
  padding: clamp(44px, 5vw, 76px) 0 30px;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,176,0,.34), rgba(255,61,0,.28), transparent);
  opacity: .9;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .76fr);
  gap: clamp(30px, 4.5vw, 62px);
  align-items: center;
}
.eyebrow {
  margin-bottom: 14px;
  letter-spacing: .16em;
}
.hero-copy h1 {
  font-size: clamp(4.1rem, 7.15vw, 6.95rem) !important;
  line-height: .88;
  letter-spacing: -.075em;
  max-width: 10.4ch;
}
.hero-lead {
  max-width: 610px;
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.12vw, 1.18rem);
  line-height: 1.52;
}
.hero-actions {
  margin-top: 24px;
  gap: 11px;
}
.button {
  min-height: 46px;
  padding-inline: 20px;
}
.button-primary {
  box-shadow: 0 16px 40px rgba(255,61,0,.25), inset 0 1px 0 rgba(255,255,255,.34);
}
.hero-signals {
  margin-top: 20px;
}
.hero-signals span {
  padding: 7px 11px;
  font-size: .78rem;
}
.matchday-ticker {
  margin-top: 18px !important;
  border-radius: 18px !important;
  min-height: 42px !important;
}
.matchday-ticker-track span {
  font-size: .72rem !important;
}
.portrait-shell {
  width: min(100%, 455px);
}
.portrait-frame {
  min-height: clamp(430px, 52vh, 560px) !important;
  border-radius: 34px;
  padding: 15px 15px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.025)),
    radial-gradient(circle at 50% 15%, rgba(255,176,0,.2), transparent 20rem),
    linear-gradient(160deg, #161720, #050507 64%);
}
.portrait-frame::after {
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  font-size: .68rem;
}
.hero-portrait {
  width: min(86%, 384px) !important;
  max-height: 97%;
}
.portrait-glow {
  filter: blur(25px);
  opacity: .6;
}
.hero-club-panel-under-photo {
  width: min(100%, 455px) !important;
  padding: 14px 16px !important;
  border-radius: 22px !important;
  gap: 13px !important;
  grid-template-columns: 70px minmax(0, 1fr) !important;
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035)) !important;
  box-shadow: 0 18px 54px rgba(0,0,0,.26);
}
.hero-club-panel-under-photo .hero-club-badge {
  width: 70px !important;
  height: 70px !important;
  border-radius: 18px !important;
  padding: 7px !important;
}
.hero-club-copy strong {
  font-size: .98rem !important;
}
.hero-club-copy p {
  margin: 5px 0 10px !important;
  font-size: .84rem !important;
  line-height: 1.42 !important;
}
.hero-club-label {
  font-size: .63rem !important;
  letter-spacing: .16em !important;
}
.club-link-buttons {
  gap: 8px !important;
}
.club-link-button {
  min-height: 34px !important;
  padding: 0 12px !important;
  font-size: .76rem !important;
}
.proof-strip {
  margin-top: clamp(26px, 3.4vw, 44px) !important;
  border-radius: 22px;
}
.proof-strip > div {
  padding: 17px 19px;
}
.proof-strip span {
  font-size: .72rem;
}
.proof-strip strong {
  margin-top: 5px;
  font-size: .98rem;
}
.proof-strip p {
  font-size: .84rem;
}
.section {
  padding: clamp(52px, 6.5vw, 86px) 0 !important;
}
.section-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));
}
.section-heading {
  max-width: 760px;
  margin-bottom: 28px !important;
}
.section-heading h2,
.section-kicker h2,
.cta-inner h2 {
  font-size: clamp(1.95rem, 4vw, 4.05rem) !important;
  line-height: .96;
}
.section-copy,
.section-copy p,
.profile-copy p {
  font-size: 1rem !important;
  line-height: 1.58 !important;
}
.profile-grid,
.two-column {
  gap: clamp(24px, 4vw, 46px) !important;
}
.identity-compact {
  padding-block: 0 !important;
}
.identity-compact-copy {
  padding: clamp(22px, 3vw, 34px) !important;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}
.identity-compact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.8rem) !important;
}
.identity-compact-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--abo-muted);
}
.identity-pillar-grid,
.achievement-grid,
.media-grid,
.trophy-grid,
.partners-grid,
.updates-grid {
  gap: 18px !important;
}
.feature-card,
.achievement-card,
.media-card,
.post-card,
.trophy-card,
.partner-card,
.ab-tv-card,
.entry,
.no-results,
.not-found-page {
  border-radius: 22px !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.26) !important;
}
.feature-card,
.achievement-card,
.media-card,
.partner-card {
  padding: 22px !important;
}
.feature-card h3,
.achievement-card h3,
.media-card h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.52rem) !important;
  line-height: 1.03 !important;
}
.achievement-number {
  font-size: clamp(2.25rem, 4vw, 4.3rem) !important;
  line-height: .86;
}
.post-card-body,
.trophy-body {
  padding: 19px !important;
}
.post-card h3,
.trophy-card h3 {
  font-size: clamp(1.1rem, 1.55vw, 1.38rem) !important;
  line-height: 1.08 !important;
}
.post-card p,
.trophy-card p,
.media-card p,
.partner-card p,
.achievement-card p {
  font-size: .92rem !important;
  line-height: 1.52 !important;
}
.post-card-media img,
.post-card-media {
  height: 210px !important;
  min-height: 210px !important;
}
.trophy-image img,
.trophy-image {
  min-height: 210px !important;
}
.text-link,
.entry-share-links a,
.club-link-button {
  position: relative;
  overflow: hidden;
}
.text-link::after,
.club-link-button::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,176,0,.75), transparent);
  transform: translateX(-100%);
  transition: transform .28s ease;
}
.text-link:hover::after,
.club-link-button:hover::after {
  transform: translateX(0);
}
/* Single article premium tightening */
.entry-pro {
  padding: clamp(24px, 4vw, 42px) !important;
}
.single-breadcrumb {
  margin-bottom: 18px !important;
  font-size: .8rem !important;
}
.entry-hero-header {
  margin-bottom: 22px !important;
}
.entry-title {
  font-size: clamp(2.2rem, 5vw, 5rem) !important;
  line-height: .94 !important;
  max-width: 980px;
}
.entry-deck {
  max-width: 820px !important;
  margin-top: 16px !important;
  font-size: clamp(1rem, 1.25vw, 1.2rem) !important;
  line-height: 1.55 !important;
}
.post-meta-pro {
  margin-top: 16px !important;
  gap: 9px !important;
}
.entry-media-pro {
  margin: 24px 0 !important;
  border-radius: 22px !important;
}
.entry-layout-pro {
  gap: 26px !important;
}
.entry-side-card,
.entry-share-card {
  padding: 18px !important;
  border-radius: 20px !important;
}
.entry-content-pro {
  font-size: 1.03rem !important;
  line-height: 1.72 !important;
}
.entry-content-pro h2,
.entry-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.7rem) !important;
  margin-top: 1.45em !important;
}
.related-posts {
  margin-top: 34px !important;
}
.site-footer {
  padding: 42px 0 24px !important;
}
.footer-grid {
  gap: 24px !important;
}
.footer-bottom {
  margin-top: 26px !important;
  padding-top: 18px !important;
}
/* FUEGO Prime micro-interactions */
.reveal-on-scroll {
  transition-duration: .55s !important;
}
.post-card:hover,
.trophy-card:hover,
.media-card:hover,
.achievement-card:hover,
.partner-card:hover,
.ab-tv-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(255,176,0,.28) !important;
}
.button:hover,
.text-link:hover {
  filter: saturate(1.08);
}
@media (min-width: 1180px) {
  .container { width: min(calc(100% - 64px), 1180px); }
  .hero-visual { align-items: flex-end !important; }
  .entry-layout-pro { grid-template-columns: minmax(180px, 240px) minmax(0, 1fr) !important; }
}
@media (max-width: 1100px) {
  .hero-section { padding-top: 44px !important; }
  .hero-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .hero-copy h1 { max-width: 12ch; }
  .hero-visual { align-items: center !important; }
  .portrait-shell, .hero-club-panel-under-photo { margin-inline: auto !important; }
}
@media (max-width: 760px) {
  .container, .narrow-container { width: min(calc(100% - 32px), var(--abo-container)); }
  .header-inner { min-height: 68px; }
  .custom-logo-link img { max-height: 44px; }
  .hero-section { padding: 28px 0 20px !important; }
  .hero-copy h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.75rem) !important;
    line-height: .94 !important;
    letter-spacing: -.062em !important;
    max-width: 100% !important;
  }
  .hero-lead { margin-top: 15px !important; font-size: .99rem !important; line-height: 1.5 !important; }
  .hero-actions { margin-top: 18px !important; }
  .button { width: 100%; min-height: 44px; }
  .hero-signals { gap: 8px; margin-top: 16px !important; }
  .hero-signals span { font-size: .72rem; padding: 6px 9px; }
  .matchday-ticker { display: none; }
  .portrait-shell { width: min(100%, 355px); }
  .portrait-frame { min-height: 410px !important; border-radius: 28px; }
  .hero-portrait { width: min(90%, 320px) !important; }
  .hero-club-panel-under-photo {
    grid-template-columns: 58px minmax(0, 1fr) !important;
    padding: 12px !important;
    border-radius: 20px !important;
  }
  .hero-club-panel-under-photo .hero-club-badge { width: 58px !important; height: 58px !important; border-radius: 15px !important; }
  .hero-club-copy p { font-size: .78rem !important; }
  .club-link-buttons { flex-direction: row !important; }
  .club-link-button { flex: 1 1 auto; justify-content: center; }
  .proof-strip { grid-template-columns: 1fr !important; margin-top: 20px !important; border-radius: 20px; }
  .proof-strip > div { padding: 15px 16px; }
  .section { padding: 42px 0 !important; }
  .section-heading { margin-bottom: 20px !important; }
  .section-heading h2, .section-kicker h2, .cta-inner h2 { font-size: clamp(1.7rem, 8.5vw, 2.65rem) !important; }
  .feature-card, .achievement-card, .media-card, .partner-card, .post-card-body, .trophy-body { padding: 17px !important; }
  .post-card-media img, .post-card-media { height: 185px !important; min-height: 185px !important; }
  .entry-pro { padding: 18px !important; border-radius: 20px !important; }
  .entry-title { font-size: clamp(1.9rem, 10vw, 3rem) !important; }
  .entry-deck { font-size: .98rem !important; }
  .entry-layout-pro { display: block !important; }
  .entry-side-panel { position: static !important; margin-bottom: 18px !important; }
  .entry-content-pro { font-size: 1rem !important; line-height: 1.68 !important; }
  .site-footer { padding: 34px 0 20px !important; }
}

/* ==========================================================
   v1.8.25 — AB ONE ALL SITE FUEGO LEVEL UP
   Premium pass across hero, cards, articles, media, partners,
   archive, footer, mobile/tablet/desktop rhythm.
   ========================================================== */
:root {
  --abo-gold: #ffcf40;
  --abo-gold-2: #ff8a00;
  --abo-cyan: #24d6ff;
  --abo-hot: #ff2f6d;
  --abo-deep-card: rgba(5, 9, 20, .74);
  --abo-prime-line: rgba(255,255,255,.12);
  --abo-prime-shadow: 0 24px 72px rgba(0,0,0,.34);
}

html { scroll-padding-top: 92px; }
body {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(255,207,64,.26); color: #fff; }

.abo-scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 3px;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--abo-gold), var(--abo-hot), var(--abo-cyan));
  box-shadow: 0 0 18px rgba(255,207,64,.42);
  pointer-events: none;
}
.abo-back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(255,207,64,.22), rgba(8,12,25,.86));
  color: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.36);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px) scale(.94);
  transition: opacity .22s ease, transform .22s ease, border-color .22s ease;
  backdrop-filter: blur(16px);
}
.abo-back-top.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.abo-back-top:hover { border-color: rgba(255,207,64,.48); transform: translateY(-2px) scale(1.02); }
.abo-back-top span { font-weight: 900; font-size: 1.05rem; }

/* Global premium surface system */
.hero-section,
.section,
.single-main,
.archive-main,
.search-main,
.error-404 { position: relative; }
.section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  pointer-events: none;
}
.section-heading,
.section-kicker,
.compact-heading { position: relative; }
.section-heading .eyebrow,
.section-kicker .eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(255,207,64,.17);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,207,64,.09), rgba(36,214,255,.045));
  letter-spacing: .12em;
}
.section-heading .eyebrow::before,
.section-kicker .eyebrow::before,
.hero-copy .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--abo-gold);
  box-shadow: 0 0 14px rgba(255,207,64,.65);
  flex: 0 0 auto;
}

/* Header and navigation polish */
.site-header,
.header-inner {
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.site-header.is-scrolled,
[data-header].is-scrolled {
  box-shadow: 0 18px 52px rgba(0,0,0,.34);
  border-bottom-color: rgba(255,255,255,.13);
}
.primary-menu a,
.nav-menu a,
.main-navigation a {
  position: relative;
}
.primary-menu a::after,
.nav-menu a::after,
.main-navigation a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, var(--abo-gold), var(--abo-cyan));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .2s ease;
}
.primary-menu a:hover::after,
.nav-menu a:hover::after,
.main-navigation a:hover::after { transform: scaleX(1); }

/* Hero: premium compact stage */
.hero-section {
  padding-top: clamp(42px, 5.5vw, 78px) !important;
  padding-bottom: clamp(26px, 4vw, 54px) !important;
  overflow: clip;
}
.hero-grid {
  align-items: center !important;
  gap: clamp(32px, 6vw, 76px) !important;
}
.hero-copy h1 {
  text-wrap: balance;
  letter-spacing: -.072em !important;
  text-shadow: 0 18px 64px rgba(0,0,0,.42);
}
.hero-lead {
  max-width: 720px !important;
  color: rgba(236,242,255,.82) !important;
}
.hero-actions .button,
.button,
.wp-block-button__link {
  border-radius: 999px !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  isolation: isolate;
}
.button-primary,
.wp-block-button__link {
  background: linear-gradient(135deg, var(--abo-gold), var(--abo-gold-2)) !important;
  color: #080b13 !important;
  border: 0 !important;
}
.button-ghost {
  background: rgba(255,255,255,.055) !important;
  border-color: rgba(255,255,255,.14) !important;
}
.hero-signals span {
  border-color: rgba(255,255,255,.13) !important;
  background: rgba(255,255,255,.055) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.portrait-shell {
  filter: drop-shadow(0 28px 70px rgba(0,0,0,.42));
}
.portrait-frame {
  background:
    radial-gradient(circle at 20% 12%, rgba(255,207,64,.19), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.025)) !important;
  border-color: rgba(255,255,255,.17) !important;
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.36), transparent 72%);
  filter: blur(5px);
  pointer-events: none;
}
.hero-club-panel-under-photo {
  box-shadow: var(--abo-prime-shadow) !important;
  border-color: rgba(255,255,255,.14) !important;
  background:
    linear-gradient(135deg, rgba(255,207,64,.10), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.026)) !important;
}
.hero-club-label { color: var(--abo-gold) !important; }
.club-link-button {
  border-radius: 999px !important;
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.14) !important;
}
.club-link-button:hover { background: rgba(255,207,64,.13) !important; }
.proof-strip {
  box-shadow: 0 24px 60px rgba(0,0,0,.28) !important;
  background:
    linear-gradient(90deg, rgba(255,207,64,.06), transparent 32%, rgba(36,214,255,.055)),
    rgba(255,255,255,.045) !important;
}
.proof-strip strong { text-wrap: balance; }

/* Cards: unified FUEGO prime card engine */
.post-card,
.media-card,
.trophy-card,
.partner-card,
.achievement-card,
.feature-card,
.ab-tv-card,
.entry-side-card,
.entry-share-card,
.statement-card,
.identity-compact-copy,
.identity-compact-points > div,
.no-results,
.not-found-page {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.115) !important;
  background:
    radial-gradient(circle at var(--mx, 18%) var(--my, 0%), rgba(255,207,64,.10), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.082), rgba(255,255,255,.024)) !important;
  box-shadow: 0 18px 54px rgba(0,0,0,.27) !important;
}
.post-card::before,
.media-card::before,
.trophy-card::before,
.partner-card::before,
.achievement-card::before,
.feature-card::before,
.ab-tv-card::before,
.statement-card::before,
.identity-compact-copy::before,
.identity-compact-points > div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.10) 35%, transparent 58%);
  transform: translateX(-130%);
  transition: transform .65s ease;
  pointer-events: none;
}
.post-card:hover::before,
.media-card:hover::before,
.trophy-card:hover::before,
.partner-card:hover::before,
.achievement-card:hover::before,
.feature-card:hover::before,
.ab-tv-card:hover::before,
.statement-card:hover::before,
.identity-compact-copy:hover::before,
.identity-compact-points > div:hover::before { transform: translateX(130%); }
.post-card:hover,
.media-card:hover,
.trophy-card:hover,
.partner-card:hover,
.achievement-card:hover,
.feature-card:hover,
.ab-tv-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 28px 80px rgba(0,0,0,.36) !important;
}
.post-card-media,
.trophy-image,
.media-card-image,
.ab-tv-screen {
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(255,207,64,.16), rgba(255,255,255,.03)) !important;
}
.post-card-media img,
.trophy-image img,
.media-card img,
.ab-tv-screen img {
  transition: transform .55s ease, filter .55s ease;
  filter: saturate(1.04) contrast(1.04);
}
.post-card:hover .post-card-media img,
.trophy-card:hover .trophy-image img,
.media-card:hover img,
.ab-tv-card:hover img { transform: scale(1.045); filter: saturate(1.16) contrast(1.08); }
.post-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px !important;
}
.post-card-category,
.post-card-reading,
.post-meta span,
.ab-tv-meta span,
.trophy-body span,
.media-card span {
  border-radius: 999px;
}
.post-card-category,
.post-card-reading {
  color: rgba(255,255,255,.78) !important;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  padding: 4px 8px;
}
.post-card-category { color: var(--abo-gold) !important; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--abo-gold) !important;
}
.text-link::before {
  content: "→";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255,207,64,.12);
  border: 1px solid rgba(255,207,64,.18);
  transition: transform .2s ease;
}
.text-link:hover::before { transform: translateX(3px); }

/* Sections and grids tightened but premium */
.section { padding: clamp(46px, 6vw, 78px) 0 !important; }
.section-heading { max-width: 820px; }
.section-heading h2,
.section-kicker h2,
.cta-inner h2 {
  text-wrap: balance;
  letter-spacing: -.047em !important;
}
.profile-grid,
.two-column,
.identity-compact,
.entry-layout-pro { align-items: start; }
.achievement-grid,
.media-grid,
.trophy-grid,
.partners-grid,
.updates-grid,
.post-grid {
  align-items: stretch;
}
.achievement-card,
.post-card,
.trophy-card,
.media-card,
.partner-card { min-height: 100%; }
.achievement-number {
  background: linear-gradient(135deg, #fff7c6, var(--abo-gold), var(--abo-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
.identity-compact-points > div {
  padding: 18px !important;
  border-radius: 20px !important;
}
.identity-compact-points strong { color: #fff; }
.identity-compact-points span { color: rgba(236,242,255,.72); }

/* AB TV / media module */
.ab-tv-layout {
  gap: 18px !important;
}
.ab-tv-card-featured .ab-tv-screen,
.ab-tv-screen {
  border-radius: 22px 22px 0 0 !important;
}
.ab-tv-play,
.ab-tv-placeholder span {
  box-shadow: 0 14px 32px rgba(0,0,0,.35);
  background: linear-gradient(135deg, var(--abo-gold), var(--abo-hot)) !important;
  color: #070b14 !important;
}
.ab-tv-meta span::before {
  content: "●";
  margin-right: 6px;
  color: var(--abo-hot);
  text-shadow: 0 0 10px rgba(255,47,109,.55);
}

/* Single article: editorial magazine feel */
.single-main-pro { padding-top: clamp(26px, 4vw, 52px) !important; }
.single-container-pro { max-width: 1180px !important; }
.entry-pro {
  border: 1px solid rgba(255,255,255,.12) !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,207,64,.075), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.022)) !important;
}
.single-breadcrumb a { color: rgba(255,255,255,.72) !important; }
.single-breadcrumb a:hover { color: var(--abo-gold) !important; }
.entry-title { text-wrap: balance; }
.entry-deck { color: rgba(236,242,255,.78) !important; }
.entry-media-pro img { border-radius: inherit; }
.entry-content-pro {
  max-width: 780px;
}
.entry-content-pro p { margin-bottom: 1.05em; }
.entry-content-pro p:first-of-type::first-letter {
  font-size: 3.3em;
  line-height: .82;
  float: left;
  padding-right: .08em;
  color: var(--abo-gold);
  font-weight: 900;
}
.entry-content-pro blockquote,
.wp-block-quote {
  border-left: 3px solid var(--abo-gold) !important;
  background: rgba(255,207,64,.065) !important;
  border-radius: 0 18px 18px 0;
  padding: 18px 20px !important;
}
.entry-content-pro img,
.wp-block-image img {
  border-radius: 20px;
  box-shadow: 0 20px 58px rgba(0,0,0,.28);
}
.entry-side-panel { top: 96px !important; }
.entry-side-card strong { color: var(--abo-gold); }
.entry-share-links { gap: 8px; }
.entry-share-links a {
  border-radius: 999px !important;
  background: rgba(255,255,255,.055) !important;
  border: 1px solid rgba(255,255,255,.11) !important;
}
.entry-share-links a:hover { border-color: rgba(255,207,64,.32) !important; color: var(--abo-gold) !important; }
.related-grid .post-card { min-height: 100%; }
.post-navigation a {
  border-radius: 22px !important;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}
.post-navigation a:hover { border-color: rgba(255,207,64,.28) !important; transform: translateY(-2px); }

/* Archive, search, empty pages */
.archive-header,
.search-header,
.page-header {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 0 0, rgba(255,207,64,.10), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.023));
  box-shadow: 0 22px 64px rgba(0,0,0,.28);
  margin-bottom: 24px;
}
.archive-header h1,
.search-header h1,
.page-header h1 { text-wrap: balance; }
.search-form input[type="search"],
.search-field,
input[type="text"],
input[type="email"],
input[type="url"],
textarea {
  border-radius: 16px !important;
  border-color: rgba(255,255,255,.15) !important;
  background: rgba(255,255,255,.055) !important;
  color: #fff !important;
}
.search-submit,
input[type="submit"],
button:not(.nav-toggle):not(.abo-back-top) {
  border-radius: 999px !important;
}

/* Footer: prime ending */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(255,207,64,.08), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(36,214,255,.06), transparent 30%),
    rgba(4,7,15,.94) !important;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,207,64,.35), rgba(36,214,255,.24), transparent);
}
.footer-brand p { max-width: 560px; }
.social-links .social-link { transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.social-links .social-link:hover { transform: translateY(-2px) !important; }
.footer-bottom { color: rgba(236,242,255,.58) !important; }

/* Mobile/tablet rhythm */
@media (min-width: 1180px) {
  .hero-copy { padding-top: 6px; }
  .hero-visual { gap: 16px !important; }
  .portrait-shell { max-width: 510px; }
  .hero-club-panel-under-photo { max-width: 510px; }
  .post-grid.related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
  html { scroll-padding-top: 80px; }
  .hero-grid { gap: 28px !important; }
  .section { padding: 42px 0 !important; }
  .entry-content-pro p:first-of-type::first-letter { font-size: inherit; line-height: inherit; float: none; padding-right: 0; color: inherit; }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 74px; }
  .abo-scroll-progress { height: 2px; }
  .abo-back-top { width: 40px; height: 40px; right: 14px; bottom: 14px; }
  .section-heading .eyebrow, .section-kicker .eyebrow, .eyebrow { padding: 6px 9px; font-size: .68rem !important; }
  .hero-copy h1 { text-wrap: balance; }
  .hero-actions { gap: 10px !important; }
  .hero-club-panel-under-photo { gap: 10px !important; }
  .hero-club-copy strong { font-size: .95rem !important; }
  .hero-club-copy p { display: none; }
  .club-link-button { padding: 9px 10px !important; font-size: .76rem !important; }
  .proof-strip > div { min-height: auto; }
  .section { padding: 36px 0 !important; }
  .section-heading h2, .section-kicker h2, .cta-inner h2 { letter-spacing: -.042em !important; }
  .achievement-grid, .media-grid, .trophy-grid, .partners-grid, .updates-grid, .post-grid { gap: 14px !important; }
  .post-card-media img, .post-card-media { height: 168px !important; min-height: 168px !important; }
  .trophy-image img, .trophy-image { min-height: 168px !important; }
  .post-card-body, .trophy-body, .ab-tv-body { padding: 15px !important; }
  .post-card p, .trophy-card p, .media-card p, .partner-card p, .achievement-card p { font-size: .9rem !important; }
  .entry-pro { padding: 16px !important; }
  .entry-media-pro { margin: 18px 0 !important; }
  .entry-side-card, .entry-share-card { padding: 15px !important; }
  .entry-share-links { display: flex; flex-wrap: wrap; }
  .entry-share-links a { flex: 1 1 auto; text-align: center; justify-content: center; }
  .archive-header, .search-header, .page-header { padding: 18px; border-radius: 22px; }
  .footer-grid { gap: 18px !important; }
}
@media (max-width: 420px) {
  .container, .narrow-container { width: min(calc(100% - 26px), var(--abo-container)); }
  .hero-copy h1 { font-size: clamp(2.05rem, 11.6vw, 3rem) !important; }
  .portrait-frame { min-height: 360px !important; }
  .hero-portrait { width: min(88%, 292px) !important; }
  .hero-club-panel-under-photo { grid-template-columns: 52px minmax(0, 1fr) !important; }
  .hero-club-panel-under-photo .hero-club-badge { width: 52px !important; height: 52px !important; }
}

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

/* v1.8.26 editorial ownership clarity */
.footer-bottom-pro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-credit {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  font-size: .82rem;
  color: var(--abo-muted);
}
.footer-credit span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.footer-credit a {
  color: var(--abo-text);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(232,255,20,.35);
}
.footer-credit a:hover {
  color: var(--abo-accent);
}
.post-meta-pro span:last-child {
  color: var(--abo-accent);
  font-weight: 900;
}
@media (max-width: 720px) {
  .footer-bottom-pro {
    align-items: flex-start;
    gap: 10px;
  }
  .footer-credit {
    justify-content: flex-start;
    width: 100%;
    font-size: .78rem;
  }
}

/* v1.8.27 — FUEGO Cocktail 26 / AB ONE Europe production polish */
:root {
  --abo-eu-blue: #2f6bff;
  --abo-eu-cyan: #21d4ff;
  --abo-fuego-red: #ff2d55;
  --abo-fuego-orange: #ff8a00;
  --abo-fuego-gold: #ffd15c;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, rgba(47, 107, 255, .16), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(255, 45, 85, .11), transparent 30%),
    radial-gradient(circle at 50% 92%, rgba(255, 138, 0, .10), transparent 38%);
}

.hero-section {
  position: relative;
  isolation: isolate;
}

.hero-section::after {
  content: "FUEGO COCKTAIL 26 • AB ONE EUROPE";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  top: clamp(86px, 11vw, 138px);
  z-index: 0;
  font-size: clamp(2.8rem, 8vw, 8.2rem);
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: .8;
  color: rgba(255,255,255,.028);
  max-width: 760px;
  text-align: right;
  pointer-events: none;
}

.hero-copy,
.hero-visual,
.proof-strip,
.europe-mission-band { position: relative; z-index: 2; }

.hero-copy .eyebrow,
.section-heading .eyebrow,
.section-kicker .eyebrow {
  background: linear-gradient(135deg, rgba(255, 209, 92, .16), rgba(47, 107, 255, .14), rgba(255, 45, 85, .12));
  border-color: rgba(255,255,255,.14);
}

.hero-copy h1 {
  text-shadow: 0 18px 60px rgba(0,0,0,.42), 0 0 55px rgba(47,107,255,.10);
}

.hero-lead {
  max-width: 760px;
  color: rgba(238, 244, 255, .82) !important;
}

.button-primary {
  box-shadow: 0 18px 58px rgba(255, 138, 0, .22), inset 0 1px 0 rgba(255,255,255,.35);
}

.button-primary::after,
.button-ghost::after,
.club-link-button::after,
.text-link::after {
  content: "";
  position: absolute;
  inset: auto 14px 8px 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  opacity: .0;
  transform: translateY(4px);
  transition: opacity .22s ease, transform .22s ease;
}
.button-primary:hover::after,
.button-ghost:hover::after,
.club-link-button:hover::after,
.text-link:hover::after { opacity: 1; transform: translateY(0); }

.hero-signals span {
  background: rgba(255,255,255,.055) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.matchday-ticker {
  border-color: rgba(255,255,255,.16) !important;
  background: linear-gradient(90deg, rgba(47,107,255,.14), rgba(255,138,0,.09), rgba(255,45,85,.12)) !important;
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}
.matchday-ticker span { color: rgba(255,255,255,.90) !important; }

.portrait-shell {
  filter: drop-shadow(0 28px 80px rgba(0,0,0,.52));
}
.portrait-frame {
  border-color: rgba(255,255,255,.18) !important;
  box-shadow:
    0 34px 105px rgba(0,0,0,.52),
    0 0 0 1px rgba(255,209,92,.08),
    inset 0 1px 0 rgba(255,255,255,.12) !important;
}
.portrait-frame::after {
  content: "AB ONE";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(2,6,13,.72);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  backdrop-filter: blur(12px);
}

.hero-club-panel-under-photo,
.europe-mission-band,
.identity-compact,
.entry-hero,
.single-profile-card,
.related-section,
.archive-header {
  box-shadow: 0 24px 90px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.hero-club-panel-under-photo {
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    radial-gradient(circle at 0 0, rgba(255,209,92,.18), transparent 42%),
    radial-gradient(circle at 100% 0, rgba(47,107,255,.14), transparent 42%) !important;
}

.europe-mission-band {
  margin-top: clamp(20px, 3vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .85fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(20px, 3.4vw, 34px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 209, 92, .10), rgba(47, 107, 255, .10) 48%, rgba(255,45,85,.09)),
    rgba(5, 9, 18, .72);
  overflow: hidden;
}
.europe-mission-band::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.12), transparent);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.europe-mission-band:hover::before { transform: translateX(120%); }
.europe-mission-copy span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--abo-fuego-gold);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.europe-mission-copy strong {
  display: block;
  color: #fff;
  font-size: clamp(1.65rem, 3.6vw, 3.35rem);
  line-height: .92;
  letter-spacing: -.06em;
}
.europe-mission-copy p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(236,242,255,.76);
  font-size: clamp(.98rem, 1.25vw, 1.08rem);
  line-height: 1.58;
}
.europe-mission-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.europe-mission-steps div {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}
.europe-mission-steps b {
  color: rgba(255,255,255,.38);
  font-size: .82rem;
  letter-spacing: .1em;
}
.europe-mission-steps span {
  color: #fff;
  font-weight: 950;
  letter-spacing: -.04em;
}

.proof-strip {
  border-color: rgba(255,255,255,.13) !important;
  background: rgba(255,255,255,.035) !important;
}
.proof-strip > div {
  min-height: 132px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)) !important;
}
.proof-strip > div:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(255,209,92,.12), rgba(47,107,255,.08)) !important;
}

.achievement-card,
.feature-card,
.post-card,
.trophy-card,
.media-card,
.partner-card,
.ab-tv-card {
  border-color: rgba(255,255,255,.12) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.032)),
    rgba(5, 9, 18, .74) !important;
}
.achievement-card:hover,
.feature-card:hover,
.post-card:hover,
.trophy-card:hover,
.media-card:hover,
.partner-card:hover,
.ab-tv-card:hover {
  border-color: rgba(255,209,92,.24) !important;
  box-shadow: 0 22px 70px rgba(0,0,0,.34), 0 0 0 1px rgba(255,209,92,.05) !important;
}
.achievement-number {
  background: linear-gradient(135deg, var(--abo-fuego-gold), var(--abo-fuego-orange), var(--abo-fuego-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.section-heading h2,
.section-kicker h2 {
  max-width: 980px;
}
.section-heading::after {
  content: "";
  display: block;
  width: min(180px, 40vw);
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--abo-fuego-gold), var(--abo-eu-blue), transparent);
  opacity: .72;
}

.post-card h3 a,
.media-card h3 a,
.trophy-card h3 a { text-decoration-thickness: 1px; text-underline-offset: 5px; }
.post-card:hover h3 a,
.media-card:hover h3 a,
.trophy-card:hover h3 a { color: #fff !important; }
.post-card-media::before,
.trophy-image::before,
.media-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2,6,13,.72));
  z-index: 1;
  pointer-events: none;
}
.post-card-media,
.trophy-image,
.media-image { position: relative; overflow: hidden; }

.site-footer {
  background:
    radial-gradient(circle at 10% 0, rgba(47,107,255,.12), transparent 30%),
    radial-gradient(circle at 90% 0, rgba(255,45,85,.10), transparent 32%),
    rgba(2,6,13,.96) !important;
}
.site-footer::before {
  opacity: .38 !important;
}
.footer-bottom {
  border-top-color: rgba(255,255,255,.10) !important;
}

@media (max-width: 1100px) {
  .hero-section::after { opacity: .75; top: 90px; }
  .europe-mission-band { grid-template-columns: 1fr; }
  .europe-mission-steps { max-width: 520px; }
}

@media (max-width: 760px) {
  .hero-section::after {
    content: "FUEGO 26";
    right: 16px;
    top: 84px;
    font-size: clamp(3rem, 18vw, 5.2rem);
    opacity: .9;
  }
  .hero-lead { font-size: .98rem !important; }
  .europe-mission-band {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
  }
  .europe-mission-copy strong { font-size: clamp(1.55rem, 8.6vw, 2.25rem); }
  .europe-mission-steps { grid-template-columns: 1fr; }
  .europe-mission-steps div { min-height: 74px; }
  .portrait-frame::after { left: 12px; bottom: 12px; font-size: .66rem; }
  .section-heading::after { margin-top: 12px; }
  .proof-strip > div { min-height: auto; }
}
.button-primary,
.button-ghost,
.club-link-button,
.text-link { position: relative; overflow: hidden; }

/* v1.8.28 — AB ONE Europe System Level Up
   Full-site premium polish: tighter rhythm, stronger European/FUEGO visual system,
   improved cards, articles, archives, TV, media, partners, footer and mobile balance. */
:root {
  --abo-premium-ring: rgba(232,255,20,.22);
  --abo-premium-cyan: rgba(41,213,255,.20);
  --abo-premium-red: rgba(255,58,92,.18);
  --abo-card-glass: rgba(7,13,27,.78);
  --abo-card-glass-strong: rgba(10,18,36,.92);
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(232,255,20,.055), transparent 24rem),
    radial-gradient(circle at 90% 8%, rgba(41,213,255,.07), transparent 26rem),
    linear-gradient(180deg, #04070d 0%, #07101f 38%, #050812 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.25) 55%, transparent 100%);
}

.container {
  width: min(1180px, calc(100% - 44px));
}

.site-header {
  backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.075);
  box-shadow: 0 18px 70px rgba(0,0,0,.28);
}

.site-header .custom-logo,
.footer-custom-logo {
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.35));
}

.primary-menu a,
.site-navigation a {
  position: relative;
}

.primary-menu a::after,
.site-navigation a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(232,255,20,.9), rgba(41,213,255,.7));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}

.primary-menu a:hover::after,
.site-navigation a:hover::after,
.primary-menu .current-menu-item > a::after {
  transform: scaleX(1);
}

.hero-section {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-section::after {
  content: "FUEGO COCKTAIL 26 • AB ONE EUROPE • SK BOSNIA";
  position: absolute;
  right: -3vw;
  top: 20%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .22em;
  font-size: .68rem;
  font-weight: 900;
  color: rgba(255,255,255,.105);
  pointer-events: none;
}

.hero-copy .eyebrow,
.section-heading .eyebrow,
.section-kicker .eyebrow,
.cta-band .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(232,255,20,.17);
  border-radius: 999px;
  background: rgba(232,255,20,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.hero-copy .eyebrow::before,
.section-heading .eyebrow::before,
.section-kicker .eyebrow::before,
.cta-band .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8ff14, #29d5ff);
  box-shadow: 0 0 18px rgba(232,255,20,.5);
}

.hero-copy h1 {
  text-wrap: balance;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.26));
}

.hero-lead {
  max-width: 720px;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.hero-actions .button,
.button,
.club-link-button,
.text-link {
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease, color .22s ease;
}

.hero-actions .button:hover,
.button:hover,
.club-link-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,.34), 0 0 0 1px rgba(232,255,20,.18) inset;
}

.hero-signals span,
.matchday-ticker,
.proof-strip > div,
.europe-mission-band,
.profile-section,
.statement-card,
.achievement-card,
.trophy-card,
.identity-pill,
.ab-tv-card,
.media-card,
.partner-card,
.post-card,
.cta-inner,
.single-article,
.single-sidebar-card,
.related-card,
.no-results {
  border: 1px solid rgba(255,255,255,.095) !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    var(--abo-card-glass) !important;
  box-shadow: 0 24px 75px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.065) !important;
  backdrop-filter: blur(18px) saturate(130%);
}

.proof-strip > div,
.achievement-card,
.trophy-card,
.identity-pill,
.ab-tv-card,
.media-card,
.partner-card,
.post-card,
.related-card {
  position: relative;
  overflow: hidden;
}

.proof-strip > div::before,
.achievement-card::before,
.trophy-card::before,
.identity-pill::before,
.ab-tv-card::before,
.media-card::before,
.partner-card::before,
.post-card::before,
.related-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(232,255,20,.9), rgba(41,213,255,.75), rgba(255,58,92,.55));
  opacity: .78;
}

.achievement-card:hover,
.trophy-card:hover,
.identity-pill:hover,
.ab-tv-card:hover,
.media-card:hover,
.partner-card:hover,
.post-card:hover,
.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,255,20,.22) !important;
  box-shadow: 0 34px 90px rgba(0,0,0,.38), 0 0 0 1px rgba(232,255,20,.12) inset !important;
}

.hero-club-panel-under-photo {
  border-color: rgba(232,255,20,.20) !important;
  background:
    radial-gradient(circle at 12% 8%, rgba(232,255,20,.11), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    rgba(7,13,27,.86) !important;
}

.hero-club-badge {
  box-shadow: 0 18px 45px rgba(0,0,0,.32), 0 0 0 1px rgba(232,255,20,.18) inset;
}

.europe-mission-band {
  position: relative;
  overflow: hidden;
  margin-top: clamp(18px, 2.4vw, 36px);
}

.europe-mission-band::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,213,255,.20), transparent 70%);
  pointer-events: none;
}

.europe-mission-steps div {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.045);
  border-radius: 20px;
}

.section {
  padding-block: clamp(48px, 6.2vw, 88px);
}

.section-panel {
  margin-block: clamp(20px, 2.2vw, 34px);
}

.section-heading h2,
.section-kicker h2,
.cta-inner h2,
.archive-header h1,
.single-hero h1 {
  text-wrap: balance;
  letter-spacing: -.035em;
}

.profile-grid,
.identity-grid,
.ab-tv-layout,
.media-grid,
.partner-grid,
.post-grid,
.trophy-grid,
.achievement-grid {
  gap: clamp(16px, 2vw, 28px);
}

.profile-copy p,
.media-card p,
.partner-card p,
.post-card p,
.ab-tv-body p,
.trophy-card p,
.entry-content-pro p,
.single-article p {
  color: rgba(235,242,255,.82);
}

.achievement-number,
.europe-mission-steps b,
.proof-strip strong,
.hero-club-copy strong {
  background: linear-gradient(135deg, #fff, #e8ff14 52%, #29d5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.trophy-image,
.post-card-media,
.ab-tv-screen,
.media-thumb {
  background:
    radial-gradient(circle at 24% 16%, rgba(232,255,20,.18), transparent 36%),
    radial-gradient(circle at 78% 24%, rgba(41,213,255,.18), transparent 40%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)) !important;
}

.trophy-card img,
.post-card img,
.media-card img,
.ab-tv-card img {
  transition: transform .42s ease, filter .42s ease;
}

.trophy-card:hover img,
.post-card:hover img,
.media-card:hover img,
.ab-tv-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.partner-logo {
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)) !important;
  border: 1px solid rgba(255,255,255,.09);
}

.single-hero,
.archive-hero,
.search-hero {
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 18% 0%, rgba(232,255,20,.08), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(41,213,255,.08), transparent 34rem),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)) !important;
}

.single-layout,
.article-layout {
  gap: clamp(24px, 3vw, 44px);
}

.entry-content-pro,
.single-article .entry-content,
.single-article-content {
  font-size: clamp(1.02rem, 1.08vw, 1.12rem);
  line-height: 1.86;
}

.entry-content-pro h2,
.single-article h2,
.entry-content h2 {
  margin-top: 1.7em;
  padding-top: .35em;
  border-top: 1px solid rgba(255,255,255,.08);
}

.entry-content-pro blockquote,
.single-article blockquote {
  border-left: 3px solid #e8ff14;
  background: rgba(232,255,20,.06);
  border-radius: 0 22px 22px 0;
}

.single-sidebar-card {
  position: sticky;
  top: 104px;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 10% 0%, rgba(232,255,20,.075), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(41,213,255,.08), transparent 30rem),
    rgba(4,8,17,.96) !important;
}

.footer-bottom,
.footer-meta {
  border-top: 1px solid rgba(255,255,255,.075);
}

#backToTop,
.back-to-top {
  box-shadow: 0 16px 44px rgba(0,0,0,.36), 0 0 0 1px rgba(232,255,20,.22) inset;
}

@media (min-width: 1101px) {
  .hero-grid {
    align-items: center;
    gap: clamp(42px, 5vw, 80px);
    padding-top: clamp(28px, 3.2vw, 56px);
    padding-bottom: clamp(24px, 3vw, 52px);
  }
  .hero-copy h1 {
    font-size: clamp(4.6rem, 7.4vw, 7.2rem) !important;
    line-height: .82 !important;
  }
  .portrait-shell {
    max-width: 500px;
  }
  .proof-strip {
    margin-top: clamp(18px, 2.5vw, 34px) !important;
  }
  .post-grid.updates-grid .post-card:first-child,
  .media-grid .media-card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 34px, 980px);
  }
  .hero-section::after {
    display: none;
  }
  .section {
    padding-block: clamp(40px, 7vw, 66px);
  }
  .single-sidebar-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, 100%);
  }
  .hero-copy .eyebrow,
  .section-heading .eyebrow,
  .section-kicker .eyebrow,
  .cta-band .eyebrow {
    padding: 7px 10px;
    font-size: .72rem;
  }
  .hero-copy h1 {
    margin-top: 12px;
    margin-bottom: 14px;
  }
  .hero-lead {
    font-size: .98rem;
    line-height: 1.62;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button,
  .button {
    width: 100%;
    justify-content: center;
  }
  .hero-signals,
  .club-link-buttons,
  .social-links {
    gap: 8px;
  }
  .section-heading h2,
  .section-kicker h2,
  .cta-inner h2 {
    font-size: clamp(1.62rem, 8vw, 2.15rem) !important;
  }
  .proof-strip,
  .achievement-grid,
  .trophy-grid,
  .media-grid,
  .partner-grid,
  .post-grid,
  .ab-tv-layout {
    gap: 12px !important;
  }
  .achievement-card,
  .trophy-card,
  .media-card,
  .partner-card,
  .post-card,
  .ab-tv-card,
  .identity-pill,
  .statement-card,
  .cta-inner {
    border-radius: 22px !important;
  }
  .europe-mission-steps {
    grid-template-columns: 1fr !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .matchday-ticker-track {
    animation-duration: 30s;
  }
  .hero-bg-orb-one,
  .hero-bg-orb-two {
    animation: aboPulseOrb 7s ease-in-out infinite alternate;
  }
  @keyframes aboPulseOrb {
    from { transform: translate3d(0,0,0) scale(1); opacity: .58; }
    to { transform: translate3d(10px,-8px,0) scale(1.06); opacity: .82; }
  }
}

/* v1.8.29 Homepage cleanup: remove long page/article content from front-page profile area */
.home .identity-full-content,
.front-page .identity-full-content {
  display: none !important;
}
.identity-compact-section {
  padding-bottom: clamp(38px, 5vw, 72px) !important;
}
.identity-compact {
  margin-bottom: 0 !important;
}
