/* ==========================================================================
   YOUNG APOSTLES FOOTBALL CLUB — OFFICIAL STYLESHEET
   Chelsea-Inspired UI · Royal Blue & White · Clean Premium Design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* === CLUB BRAND PALETTE (Blue & Gold / White) === */
  --ya-blue-deep:   #070E29;
  --ya-blue-dark:   #0A1640;
  --ya-blue:        #0E1E5B;
  --ya-blue-mid:    #142B7A;
  --ya-blue-light:  #1E40AF;
  --ya-blue-accent: #0077D8;
  --ya-blue-sky:    #00B4D8;

  --ya-gold:        #FFB800;
  --ya-gold-bright: #FFC700;
  --ya-gold-hover:  #E5A800;
  --ya-gold-light:  rgba(255, 184, 0, 0.12);

  /* Neutrals */
  --bg-white:       #FFFFFF;
  --bg-page:        #F8FAFC;
  --bg-card:        #FFFFFF;
  --bg-subtle:      #F1F5F9;
  --border-color:   #E2E8F0;
  --border-subtle:  #ECEEF2;

  --text-main:      #0F172A;
  --text-sub:       #1E3A6A;
  --text-muted:     #64748B;
  --text-light:     #94A3B8;
  --text-white:     #FFFFFF;
  --text-white-sub: rgba(255, 255, 255, 0.85);

  /* Typography */
  --font-main:      'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading:   'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --max-width:      1240px;
  --radius-xs:      6px;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius-pill:    9999px;

  /* Shadows */
  --shadow-subtle:    0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-card:      0 4px 20px -2px rgba(10, 22, 64, 0.08);
  --shadow-hover:     0 12px 30px -4px rgba(10, 22, 64, 0.15);
  --shadow-float:     0 16px 48px rgba(0, 16, 90, 0.20);
  --shadow-gold-glow: 0 0 25px rgba(255, 184, 0, 0.35);
}

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.top-bar {
  background-color: var(--ya-blue-deep);
  color: var(--text-white-sub);
  font-size: 0.8125rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-btn {
  color: var(--text-white-sub);
  font-size: 0.775rem;
  font-weight: 600;
  cursor: pointer;
}

.lang-btn.active {
  color: var(--ya-gold);
  font-weight: 700;
}

.lang-sep {
  opacity: 0.4;
}

.top-bar__tag {
  background: rgba(255, 255, 255, 0.06);
  color: #94A3B8;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.top-social-link {
  color: var(--text-white-sub);
  font-size: 0.85rem;
}

.top-social-link:hover {
  color: var(--ya-gold);
}

.top-cta-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 184, 0, 0.25);
}

.top-cta-btn:hover {
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
  border-color: var(--ya-gold);
}

/* =========================================================
   MAIN NAVBAR
   ========================================================= */
.main-nav {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--ya-blue-dark);
  box-shadow: 0 2px 8px rgba(0,16,90,0.08);
}

.main-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-title {
  color: var(--ya-blue-deep);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.nav-brand-sub {
  color: var(--ya-blue-mid);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-link {
  color: var(--ya-blue-deep);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.5rem 0;
  position: relative;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--ya-blue-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: #F5C800;
  border-radius: 2px;
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-badge-pill {
  background: var(--ya-blue-dark);
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-vip-nav-btn {
  display: none;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #C9943A, #F5C800);
  color: #0F1B2E;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(201, 148, 58, 0.35);
  white-space: nowrap;
  transition: transform 0.15s ease;
}
.mobile-vip-nav-btn:hover {
  transform: translateY(-1px);
}
.mobile-vip-nav-btn i { font-size: 0.75rem; }

.nav-btn-icon {
  color: var(--ya-blue-deep);
  font-size: 1.05rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
}

.nav-btn-icon:hover {
  color: var(--ya-blue-dark);
  background: rgba(0, 16, 90, 0.07);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-nav-primary {
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(255, 184, 0, 0.3);
  flex-shrink: 0;
}

.btn-nav-primary:hover {
  background: var(--ya-gold-bright);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  color: var(--ya-blue-deep);
  font-size: 1.3rem;
}

.match-next-tag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C9943A, #F5C800);
  color: #0F1B2E;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(201, 148, 58, 0.35);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 3;
}

/* =========================================================
   MOBILE PARTNER / SPONSOR STRIP
   ========================================================= */
.mobile-partner-strip {
  display: none; /* Hidden on desktop */
  background: #ffffff;
  border-bottom: 1px solid #e8ecf0;
  width: 100%;
}

.mobile-partner-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  height: 36px;
  padding: 0 1rem;
}

.partner-logo-link {
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.partner-logo-link:hover {
  opacity: 1;
}

.partner-logo-img {
  height: 20px;
  width: auto;
  object-fit: contain;
}

.partner-logo-img--mayniak {
  height: 22px;
  /* Crop out white padding from JPG */
  filter: contrast(1.05);
}

.partner-strip-divider {
  width: 1px;
  height: 18px;
  background: #d0d5dd;
  flex-shrink: 0;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 112px;
  left: 0;
  right: 0;
  background: var(--ya-blue-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  z-index: 999;
}

.mobile-nav-drawer.open {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Nav Action Buttons — Membership & Profile */
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.18s, transform 0.15s;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
.mobile-nav-action-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.mobile-nav-action-btn--gold {
  background: linear-gradient(135deg, #C9943A, #e8b84b);
  color: #0F1B2E;
  font-weight: 800;
}
.mobile-nav-action-btn--gold:hover { background: linear-gradient(135deg, #e8b84b, #C9943A); }

/* =========================================================
   CINEMATIC HERO SECTION
   ========================================================= */
.hero-section {
  position: relative;
  background: var(--ya-blue-dark);
  color: var(--text-white);
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 3.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 14, 41, 0.35) 0%,
    rgba(7, 14, 41, 0.65) 45%,
    rgba(7, 14, 41, 0.96) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.hero-left {
  max-width: 720px;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.3);
  color: var(--ya-gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  color: var(--text-white-sub);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
  font-weight: 800;
  font-size: 0.9375rem;
  padding: 0.75rem 1.65rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.4);
}

.btn-hero-primary:hover {
  background: var(--ya-gold-bright);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-right-badge {
  background: rgba(10, 22, 64, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 184, 0, 0.25);
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-md);
  text-align: right;
  max-width: 300px;
}

.hero-tag-label {
  color: var(--ya-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-tag-text {
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 3px;
}

/* =========================================================
   COMMON SECTION HEADERS & TABS
   ========================================================= */
.section {
  padding: 4.5rem 0;
}

.section--dark {
  background-color: var(--ya-blue-dark);
  color: var(--text-white);
}

.section--dark-card {
  background-color: var(--ya-blue-deep);
  color: var(--text-white);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === SECTION HEADINGS — Chelsea "Latest News →" style === */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ya-blue-deep);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.section-title--white {
  color: #FFFFFF;
}

.section-link-action {
  color: var(--ya-blue-dark);
  font-size: 0.9375rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.section-link-action:hover {
  color: var(--ya-blue-mid);
  text-decoration: underline;
}
.section-link-action--white {
  color: rgba(255,255,255,0.85);
}
.section-link-action--white:hover {
  color: #fff;
}

/* CATEGORY TABS — Chelsea underline style */
.category-tabs {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 2rem;
  overflow-x: auto;
}
.category-tabs--dark {
  border-bottom: 2px solid rgba(255,255,255,0.15);
}
.tab-btn {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.6rem 0;
  position: relative;
  white-space: nowrap;
  border: none;
  background: none;
  cursor: pointer;
}
.tab-btn:hover { color: var(--ya-blue-deep); }
.category-tabs--dark .tab-btn { color: rgba(255,255,255,0.65); }
.category-tabs--dark .tab-btn:hover { color: #fff; }
.tab-btn.active {
  color: var(--ya-blue-deep);
  font-weight: 800;
}
.category-tabs--dark .tab-btn.active { color: #fff; }
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ya-blue-dark);
  border-radius: 2px;
}
.category-tabs--dark .tab-btn.active::after {
  background: #fff;
}

/* === MATCHES SECTION — Modern Elite Club Aesthetic === */
.section-matches {
  background: #F8FAFC;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 4.5rem 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 4px 10px;
  background: rgba(255, 184, 0, 0.15);
  color: #B45309;
  border: 1px solid rgba(255, 184, 0, 0.35);
  border-radius: 9999px;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.matches-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #0F172A;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.carousel-nav-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.14);
  background: #FFFFFF;
  color: var(--ya-blue);
}

.matches-grid {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 0.75rem;
  align-items: stretch;
}
.matches-grid::-webkit-scrollbar { display: none; }

/* Modern Match Card */
.match-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.5rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 285px;
  scroll-snap-align: start;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}
.match-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
  border-color: #CBD5E1;
}
.match-card--home {
  border-top: 3px solid var(--ya-gold);
}
.match-card--away {
  border-top: 3px solid var(--ya-blue);
}

/* Header centered */
.match-card-header {
  text-align: center;
}
.match-card-date {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-main);
}
.match-card-comp {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Team crests row */
.match-crests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.25rem 0;
}
.match-crest-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  text-align: center;
}
.match-crest-col img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.match-crest-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  line-height: 1.2;
}

.match-venue {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  font-weight: 600;
}

/* Match Centre buttons */
.match-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}
.btn-match-centre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #F1F5F9;
  color: #0F172A;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-match-centre:hover {
  background: var(--ya-blue-deep);
  color: #FFFFFF;
  border-color: var(--ya-blue-deep);
}

/* Dispatches media thumbnail */
.dispatch-media-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 8px;
  margin: 0.5rem 0 0.35rem;
  border: 1px solid var(--border-subtle);
  display: block;
  transition: opacity 0.2s;
}
.dispatch-media-thumb:hover {
  opacity: 0.95;
}
.dispatch-media-thumb--portrait {
  height: 150px;
  object-position: center 15%;
}
.btn-match-tickets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #0057B8;
  color: #FFFFFF;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.btn-match-tickets:hover {
}

/* Active (next match) card — deep blue with gold top */
.match-card--active {
  background: linear-gradient(160deg, #001489 0%, #0035b0 100%);
  border-color: #001489;
  border-top: 4px solid #F5C800;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,20,137,0.35);
}
.match-card--active .match-card-date { color: #F5C800; }
.match-card--active .match-comp-name { color: rgba(255,255,255,0.7); }
.match-card--active .match-datetime,
.match-card--active .match-venue { color: rgba(255,255,255,0.6); }
.match-card--active .match-crest-name { color: #fff; }
.match-card--active .match-time-box { background: #F5C800; color: #001489; }
.match-card--active .match-score-box { background: rgba(255,255,255,0.15); color: #F5C800; }
.match-card--active .btn-match-centre { background: #F5C800; color: #001489; border-color: #F5C800; }
.match-card--active .btn-match-centre:hover { background: #ffd700; border-color: #ffd700; }

/* Past card */
.match-card--past { opacity: 0.72; }
.match-card--past .match-time-box { background: #64748B; }

/* Section labels (Results / Upcoming) */
.match-section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  flex: 0 0 auto;
  align-self: center;
  white-space: nowrap;
}
.match-section-label--upcoming {
  color: #001489;
  background: #F5C800;
  border-color: #F5C800;
  font-weight: 900;
}
.match-section-divider {
  flex: 0 0 1px;
  width: 1px;
  min-height: 60px;
  background: var(--border-color);
  align-self: center;
}
.match-live-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: #EF4444;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  animation: pulse-live 1.4s ease-in-out infinite;
}
@keyframes pulse-live { 0%,100%{opacity:1} 50%{opacity:.5} }
.match-result-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: #64748B;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 1px 6px;
}

/* ===== 2. LATEST NEWS (Chelsea style) ===== */
/* =========================================================
   NEWS + SOCIAL FEED LAYOUT
   ========================================================= */
.news-social-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}
.news-cards-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.news-social-col {
  position: sticky;
  top: 90px;
}
.social-feed-panel {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.social-feed-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border-subtle);
  background: #f9fafb;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ya-blue-deep);
}
.social-feed-follow-btn {
  margin-left: auto;
  background: #000;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.social-feed-follow-btn:hover { background: #333; }
.social-feed-embed-wrap {
  max-height: 560px;
  overflow-y: auto;
  overflow-x: hidden;
}
.social-feed-embed-wrap .twitter-timeline {
  display: block;
}

.headlines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.headline-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  border: none;
}
.headline-card:hover { transform: translateY(-3px); }
.headline-card__thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-subtle);
}
.headline-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.headline-card:hover .headline-card__thumb img { transform: scale(1.04); }
.headline-card__content {
  padding: 0.9rem 0 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.headline-date {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.headline-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ya-blue-deep);
  line-height: 1.35;
}

/* =========================================================
   3. GHANA PREMIER LEAGUE STANDINGS TABLE
   ========================================================= */
.standings-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  overflow-x: auto;
}

.standings-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.standings-tbl th {
  text-align: left;
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border-subtle);
}

.standings-tbl th.text-center {
  text-align: center;
}

.standings-tbl th.text-right {
  text-align: right;
}

.standings-tbl td {
  padding: 0.85rem 1rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.standings-tbl td.text-center {
  text-align: center;
}

.standings-tbl td.text-right {
  text-align: right;
}

.pos-pill {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pos-pill--ya {
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
}

.standings-row--ya {
  background: rgba(255, 184, 0, 0.08);
  font-weight: 700;
}

.tbl-club-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tbl-crest {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.pts-badge {
  font-weight: 800;
  color: var(--ya-blue);
  font-size: 0.95rem;
}

/* =========================================================
   4. APOSTLE TV / LATEST VIDEOS (Chelsea Style)
   ========================================================= */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  width: 100%;
}
.video-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--border-color);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.video-card__thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #001489;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.video-card:hover .video-card__thumb img {
  transform: scale(1.04);
}
.video-play-btn {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  width: 38px;
  height: 38px;
  background: #0057B8;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 87, 184, 0.4);
  transition: background 0.2s, transform 0.2s;
}
.video-card:hover .video-play-btn {
  background: #001489;
  transform: scale(1.08);
}
.video-card__content {
  padding: 1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.video-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ya-blue-deep);
  line-height: 1.35;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card-divider {
  border-bottom: 1px solid var(--border-subtle);
  margin-top: auto;
  margin-bottom: 0.65rem;
}
.video-card-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ya-blue-dark);
}
.video-yt-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: #FF0000;
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 7px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.video-card-title.loading {
  color: var(--text-muted);
  font-style: italic;
}

/* =========================================================
   5. SEPTEMBER FIXTURES POSTER & COUNTDOWN
   ========================================================= */
.fixtures-banner-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.fixtures-poster-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.fixtures-countdown-content {
  display: flex;
  flex-direction: column;
}

.tourn-step-indicator {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ya-gold-hover);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.tourn-headline {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ya-blue);
  margin-bottom: 0.25rem;
}

.tourn-season {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.tourn-countdown-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cd-unit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-subtle);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  min-width: 80px;
}

.cd-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ya-blue);
  line-height: 1;
}

.cd-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.25rem;
  font-weight: 700;
}

/* =========================================================
   6. FIRST TEAM SQUAD (38 Registered Players)
/* =========================================================
   6. FIRST TEAM SQUAD & SPOTLIGHT
   ========================================================= */

/* Spotlight Showcase Card */
.squad-spotlight-card {
  background: linear-gradient(135deg, var(--ya-blue-deep) 0%, var(--ya-blue-dark) 50%, var(--ya-blue) 100%);
  border: 1px solid rgba(255, 184, 0, 0.35);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 16px 40px -10px rgba(7, 14, 41, 0.4), var(--shadow-gold-glow);
  position: relative;
  overflow: hidden;
}

.squad-spotlight-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.squad-spotlight-top {
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
}

.squad-spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 184, 0, 0.16);
  border: 1px solid rgba(255, 184, 0, 0.4);
  color: var(--ya-gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.65rem;
}

.squad-spotlight-heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.squad-spotlight-desc {
  font-size: 0.9rem;
  color: var(--text-white-sub);
  max-width: 720px;
  line-height: 1.5;
}

.squad-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.spotlight-player-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.spotlight-player-card:hover {
  transform: translateY(-6px);
  border-color: var(--ya-gold);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 184, 0, 0.3);
}

.spotlight-player-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #000;
}

.spotlight-player-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.4s ease;
}

.spotlight-player-card:hover .spotlight-player-card__img {
  transform: scale(1.06);
}

.spotlight-player-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 14, 41, 0.95) 0%, rgba(7, 14, 41, 0.4) 40%, transparent 70%);
  pointer-events: none;
}

.spotlight-player-card__top-badges {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  right: 0.65rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.spotlight-num-badge {
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.spotlight-pos-tag {
  background: rgba(7, 14, 41, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.spotlight-player-card__info {
  padding: 0.85rem;
  background: rgba(10, 22, 64, 0.85);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.spotlight-player-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.spotlight-player-card__pos {
  font-size: 0.75rem;
  color: var(--ya-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.spotlight-player-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--text-white-sub);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.spotlight-player-card__btn {
  margin-top: 0.65rem;
  width: 100%;
  padding: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ya-blue-deep);
  background: var(--ya-gold);
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.spotlight-player-card__btn:hover {
  background: var(--ya-gold-bright);
}

/* Squad Grid & Cards */
.squad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.squad-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.squad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 20, 137, 0.12);
  border-color: #0057B8;
}

.squad-card--has-photo .squad-card__media {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  background: #001489;
}

.squad-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.4s ease;
}

.squad-card:hover .squad-card__img {
  transform: scale(1.04);
}

.squad-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 20, 137, 0.75) 0%, rgba(0, 20, 137, 0.1) 45%, transparent 80%);
  pointer-events: none;
}

.squad-card__number-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #FFFFFF;
  background: #001489;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  line-height: 1;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.squad-card__body--minimal {
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.squad-pos-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.squad-jersey-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #0057B8;
  line-height: 1;
}

.squad-card__verified-badge {
  position: absolute;
  bottom: 0.65rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(14, 30, 91, 0.85);
  backdrop-filter: blur(6px);
  color: var(--ya-gold);
  border: 1px solid rgba(255, 184, 0, 0.35);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

/* Graphic Header for players without photo */
.squad-card--graphic .squad-card__graphic-top {
  height: 110px;
  background: linear-gradient(135deg, var(--ya-blue) 0%, var(--ya-blue-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 0.75rem;
}

.squad-card__watermark-num {
  position: absolute;
  right: -5px;
  bottom: -15px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
}

.squad-card__crest-ghost {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  opacity: 0.15;
  filter: grayscale(1);
  pointer-events: none;
}

.squad-card__body {
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.squad-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.squad-pos-full {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--ya-blue-light);
  margin-bottom: 0.35rem;
}

.squad-origin-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.squad-stats-mini {
  display: flex;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.squad-stats-mini strong {
  color: var(--text-main);
}

.squad-card__action-btn {
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  color: var(--ya-blue);
  border: 1px solid var(--border-color);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.squad-card:hover .squad-card__action-btn {
  background: var(--ya-blue);
  color: #FFFFFF;
  border-color: var(--ya-blue);
}

/* Enhanced Player Profile Modal */
#playerModal .modal-box {
  max-width: 760px;
  padding: 2rem;
}

.player-modal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.75rem;
  align-items: start;
}

.player-modal-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0A1640;
  box-shadow: var(--shadow-card);
}

.player-modal-media__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.player-modal-media__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.player-modal-media__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem;
  background: linear-gradient(to top, rgba(7, 14, 41, 0.95), transparent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
}

.player-modal-header {
  margin-bottom: 0.75rem;
}

.player-modal-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.player-modal-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
}

.player-modal-pos {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ya-blue-light);
  margin-top: 0.25rem;
}

.player-modal-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.85rem 0;
}

.player-modal-chip {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.player-modal-chip strong {
  color: var(--text-main);
}

.player-modal-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  background: rgba(241, 245, 249, 0.6);
  padding: 0.85rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--ya-gold);
}

.player-modal-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.player-stat-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  text-align: center;
}

.player-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.player-stat-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ya-blue);
  line-height: 1.2;
}

.player-modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* =========================================================
   7. TEAM SHOP (Authentic Mayniak Kits)
   ========================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.product-img-wrap {
  aspect-ratio: 1;
  background: var(--bg-subtle);
  position: relative;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-tag-pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--ya-blue-deep);
  color: var(--ya-gold);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.product-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ya-blue);
}

.product-old-price {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.btn-add-cart {
  flex-grow: 1;
  background: var(--ya-blue);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-add-cart:hover {
  background: var(--ya-blue-light);
}

.btn-quick-view {
  background: var(--bg-subtle);
  color: var(--text-main);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
}

.btn-quick-view:hover {
  background: var(--border-color);
}

/* =========================================================
   8. ABOUT YOUNG APOSTLES SECTION
   ========================================================= */
.about-card-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.about-crest-box {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 30, 91, 0.04);
  border-radius: 50%;
  padding: 1.5rem;
  border: 2px solid rgba(255, 184, 0, 0.3);
}

.about-crest-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--ya-blue);
  margin-bottom: 1rem;
}

.about-paragraph {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.btn-about-readmore {
  background: var(--ya-blue);
  color: var(--text-white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.btn-about-readmore:hover {
  background: var(--ya-blue-light);
}

/* =========================================================
   9. PARTNERS RIBBON
   ========================================================= */
.partners-ribbon {
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.25rem 0;
}

.partners-logos-wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.partner-logo-item {
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
}

.partner-logo-item img {
  height: 28px;
  object-fit: contain;
}

/* =========================================================
   10. FOOTER (Clean Dark Royal Blue)
   ========================================================= */
.site-footer {
  background: var(--ya-blue-deep);
  color: var(--text-white);
  padding: 4.5rem 0 2rem;
  position: relative;
  border-top: 3px solid #0057B8;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-col {
  max-width: 340px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-crest {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-white-sub);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.app-badges-row {
  display: flex;
  gap: 0.75rem;
}

.app-badge-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.app-badge-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--ya-gold);
}

.footer-links-group {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ya-gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-white-sub);
}

.footer-col a:hover {
  color: var(--ya-gold);
}

.footer-social-cluster {
  display: flex;
  gap: 0.85rem;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.footer-social-icon:hover {
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* =========================================================
   MODALS, CART DRAWER & UTILITIES
   ========================================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 14, 41, 0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--text-light);
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--text-main);
}

/* Cart Slide-out Drawer */
.cart-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2100;
}

.cart-drawer-overlay.open {
  display: block;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--bg-white);
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  z-index: 2200;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer__header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__body {
  padding: 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
}

.cart-drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-page);
}

.cart-item-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--bg-subtle);
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cart-item-price {
  font-weight: 700;
  color: var(--ya-blue);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.cart-item-remove {
  color: #EF4444;
  font-size: 0.8rem;
  align-self: flex-start;
}

/* Toast */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--ya-blue-deep);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 3000;
  border-left: 4px solid var(--ya-gold);
}

.toast-msg.show {
  display: flex;
}

/* Floating cart button */
.floating-cart-btn {
  display: none !important;
}

.floating-cart-btn:hover {
  transform: scale(1.08);
  background: var(--ya-gold-bright);
}

.floating-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--ya-blue-deep);
  color: var(--ya-gold);
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Forms and checkout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group input, .form-group select {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--ya-blue);
}

/* =========================================================
   TEAM SHOP VIP WAITLIST & PRE-ORDER RESERVATION STYLES
   ========================================================= */
.shop-waitlist-banner {
  background: linear-gradient(135deg, #0A1640 0%, #050B1E 100%);
  border: 1.5px solid rgba(255, 184, 0, 0.35);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 16px 36px rgba(5, 11, 30, 0.25);
}

.waitlist-banner-left {
  max-width: 680px;
}

.waitlist-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ADE80;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.65rem;
}

.waitlist-banner-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.waitlist-banner-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin: 0;
}

.waitlist-banner-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.5rem;
  min-width: 170px;
}

.waitlist-counter-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ya-gold);
  line-height: 1;
}

.waitlist-counter-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.35rem;
}

@media (max-width: 768px) {
  .shop-waitlist-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.1rem;
  }
  .waitlist-banner-right {
    width: 100%;
  }
}

/* =========================================================
   SECURE MOMO PAYMENT GATEWAY & CHECKOUT STYLES
   ========================================================= */
.checkout-modal-box {
  max-width: 580px;
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
}

.payment-method-selector {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pay-method-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--bg-white);
}

.pay-method-option:hover {
  border-color: var(--ya-gold);
  background: rgba(255, 184, 0, 0.04);
}

.pay-method-option.active {
  border-color: var(--ya-gold);
  background: rgba(255, 184, 0, 0.08);
}

.pay-method-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  position: relative;
}

.pay-method-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
}

.pay-method-card small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.momo-pill-tag {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}

.checkout-summary-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.summary-line.total-line {
  border-top: 1px solid var(--border-color);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0;
}

/* Gateway Step 2 Styles */
.momo-gateway-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.security-shield-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(22, 163, 74, 0.1);
  color: #16A34A;
  border: 1px solid rgba(22, 163, 74, 0.25);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.momo-account-card {
  background: linear-gradient(135deg, #0A1640 0%, #050B1E 100%);
  border: 1.5px solid rgba(255, 184, 0, 0.35);
  box-shadow: 0 12px 30px rgba(5, 11, 30, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.momo-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
}

.momo-network-badge {
  color: var(--ya-gold);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.momo-verified-badge {
  color: #4ADE80;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.momo-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.momo-field-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.momo-copy-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.momo-number-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ya-gold);
}

.momo-name-val {
  font-size: 0.88rem;
  line-height: 1.35;
  color: #FFFFFF;
}

.momo-amount-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #4ADE80;
}

.momo-ref-val {
  font-family: monospace;
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.btn-copy-momo {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
}

.btn-copy-momo:hover {
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
  border-color: var(--ya-gold);
}

.btn-copy-momo.copied {
  background: #16A34A;
  color: #FFFFFF;
  border-color: #16A34A;
}

.momo-instructions-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: #92400E;
}

.inst-title {
  font-weight: 800;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.inst-steps {
  padding-left: 1.25rem;
  line-height: 1.5;
}

.inst-steps li {
  margin-bottom: 0.2rem;
}

.txid-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
}

.txid-input:focus {
  outline: none;
  border-color: var(--ya-gold);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.2);
}

.btn-whatsapp-dispatch {
  background: #25D366;
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  text-decoration: none;
}

.btn-whatsapp-dispatch:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

.btn-back-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.75rem;
  display: block;
  width: 100%;
  text-align: center;
}

.btn-back-link:hover {
  color: var(--text-main);
  text-decoration: underline;
}

/* Receipt Screen */
.receipt-card {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--bg-white);
  margin-bottom: 1.25rem;
}

.receipt-header {
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.receipt-items-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.receipt-items-table th, .receipt-items-table td {
  padding: 0.45rem 0.25rem;
  text-align: left;
}

.receipt-items-table th:last-child, .receipt-items-table td:last-child {
  text-align: right;
}

.receipt-items-table thead tr {
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.receipt-items-table tfoot tr {
  border-top: 1.5px solid var(--border-color);
  font-weight: 800;
}

@media (max-width: 500px) {
  .checkout-modal-box {
    padding: 1.5rem 1.1rem;
  }
  .momo-field-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* =========================================================
   RESPONSIVE DESIGN SYSTEM (Desktop, Tablet, Mobile)
   ========================================================= */
@media (max-width: 1200px) {
  .nav-links {
    gap: 0.85rem;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .btn-nav-primary {
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }
  .nav-brand-title {
    font-size: 0.98rem;
  }
  .nav-brand-sub {
    font-size: 0.55rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .hero-headline {
    font-size: 2.3rem;
  }
}

@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .headlines-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-social-layout {
    grid-template-columns: 1fr;
  }
  .news-cards-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-social-col {
    position: static;
  }
  .fixtures-banner-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .fixtures-poster-img {
    max-height: 400px;
    margin: 0 auto;
  }
  .tourn-countdown-wrap {
    justify-content: center;
  }
  .about-card-wrap {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2.5rem 2rem;
  }
  .btn-about-readmore {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .section {
    padding: 2.25rem 0;
  }
  .section-title {
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    word-break: break-word;
  }
  .section-subtext {
    font-size: 0.82rem;
    margin-top: 0.35rem;
  }
  .section-header {
    margin-bottom: 1.25rem;
    gap: 0.5rem;
  }

  /* Top Bar */
  .top-bar__inner {
    height: auto;
    padding: 6px 0;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .top-bar__left, .top-bar__right {
    justify-content: center;
    gap: 0.75rem;
  }

  /* Mobile Partner Strip */
  .mobile-partner-strip {
    display: block;
  }

  /* Top Bar: hide on mobile (replaced by partner strip) */
  .top-bar {
    display: none;
  }

  /* Navbar */
  .main-nav__inner {
    height: 58px;
  }
  .nav-links {
    display: none;
  }
  .mobile-vip-nav-btn {
    display: flex;
  }
  .nav-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0, 16, 90, 0.07);
    color: var(--ya-blue-deep);
  }
  .btn-nav-primary {
    display: none;
  }
  .nav-brand-title {
    font-size: 1rem;
  }
  .nav-brand-sub {
    font-size: 0.6rem;
  }
  .nav-logo-img {
    width: 38px;
    height: 38px;
  }

  /* Mobile Drawer — offset below partner strip + nav bar */
  .mobile-nav-drawer {
    top: 94px;
    padding: 1.25rem 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  }

  /* Hero Section */
  .hero-section {
    min-height: 460px;
    padding: 2.25rem 0 2.5rem;
  }
  .hero-bg-image {
    object-position: center 25%;
  }
  .hero-headline {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }
  .hero-subtitle {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .hero-content__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
  }
  .hero-right-badge {
    max-width: 100%;
    text-align: center;
    padding: 0.75rem;
  }

  /* Category Tabs */
  .category-tabs {
    gap: 1rem;
    padding-bottom: 0.4rem;
    margin-bottom: 1.5rem;
  }
  .tab-btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.2rem;
  }

  /* Matches Carousel */
  .carousel-nav-btn {
    display: none;
  }
  .matches-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 0.75rem;
  }
  .match-card {
    flex: 0 0 85%;
    min-width: 260px;
    scroll-snap-align: start;
    padding: 1.25rem 1rem;
    min-height: 240px;
  }
  .match-date-display, .match-score-display {
    font-size: 1.85rem;
  }

  /* Headlines Grid */
  .headlines-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .news-cards-col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Standings Table */
  .standings-wrap {
    padding: 0.75rem;
  }
  .standings-tbl {
    font-size: 0.8rem;
    min-width: 520px;
  }
  .standings-tbl th, .standings-tbl td {
    padding: 0.6rem 0.5rem;
  }

  /* Highlights Grid */
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .highlight-card {
    min-height: 220px;
  }

  /* September Fixtures & Countdown */
  .fixtures-banner-wrap {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
  .tourn-headline {
    font-size: 1.45rem;
  }
  .tourn-countdown-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    width: 100%;
  }
  .cd-unit-box {
    min-width: 0;
    padding: 0.5rem 0.25rem;
  }
  .cd-number {
    font-size: 1.4rem;
  }
  .cd-label {
    font-size: 0.65rem;
  }

  /* Squad Spotlight & Grid */
  .squad-spotlight-card {
    padding: 1.25rem;
  }
  .squad-spotlight-heading {
    font-size: 1.4rem;
  }
  .squad-spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .player-modal-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .player-modal-media {
    max-width: 240px;
    margin: 0 auto;
  }

  .squad-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .squad-card {
    padding: 0;
  }
  .squad-card--has-photo .squad-card__media {
    height: 180px;
  }
  .squad-number {
    font-size: 1.35rem;
  }
  .squad-name {
    font-size: 0.95rem;
  }
  .squad-pos-full {
    font-size: 0.75rem;
  }
  .squad-stats-mini {
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.7rem;
  }

  /* Products Grid */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .product-content {
    padding: 0.85rem;
  }
  .product-title {
    font-size: 0.85rem;
  }
  .product-price {
    font-size: 1rem;
  }
  .btn-add-cart {
    font-size: 0.75rem;
    padding: 0.45rem;
  }
  .btn-quick-view {
    padding: 0.45rem 0.6rem;
  }

  /* About Section */
  .about-card-wrap {
    padding: 2rem 1rem;
    gap: 1.25rem;
  }
  .about-crest-box {
    width: 140px;
    height: 140px;
    padding: 1rem;
  }
  .about-heading {
    font-size: 1.6rem;
  }
  .about-paragraph {
    font-size: 0.875rem;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-brand-col {
    max-width: 100%;
  }
  .app-badges-row {
    flex-direction: column;
    width: 100%;
  }
  .app-badge-btn {
    width: 100%;
    justify-content: center;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Cart Drawer & Modals */
  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
    right: -100vw;
  }
  .modal-box {
    width: 95vw;
    max-width: 95vw;
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .floating-cart-btn {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
}

@media (max-width: 420px) {
  .hero-headline {
    font-size: 1.6rem;
  }
  .squad-spotlight-grid {
    grid-template-columns: 1fr;
  }
  .squad-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .footer-links-group {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   TEAM PHOTO WALL
   ========================================================================== */
.team-photo-wall {
  margin-bottom: 2.5rem;
  background: var(--ya-blue-deep);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.25rem 1rem;
  overflow: hidden;
}
.photo-wall-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ya-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.photo-wall-strip {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.photo-wall-strip::-webkit-scrollbar { display: none; }
.photo-wall-tile {
  flex: 0 0 90px;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 120px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.photo-wall-tile:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 2;
}
.photo-wall-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.photo-wall-tile__num {
  position: absolute;
  top: 5px;
  left: 6px;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  background: var(--ya-blue);
  border-radius: var(--radius-pill);
  padding: 1px 6px;
  line-height: 1.5;
}
.photo-wall-tile__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7,14,41,0.92) 0%, transparent 100%);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0.25rem 0.3rem;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   SQUAD CARD — MINIMAL BODY
   ========================================================================== */
.squad-card__body--minimal {
  padding: 0.75rem 0.85rem;
}
.squad-card__body--minimal .squad-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.15rem;
}
.squad-jersey-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ya-blue);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   REAL-TIME MATCH SECTION LABELS & BADGES
   ========================================================================== */
.match-section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  flex: 0 0 auto;
  align-self: center;
  white-space: nowrap;
}
.match-section-label--upcoming {
  color: var(--ya-blue);
  background: var(--ya-gold-light);
  border-color: var(--ya-gold);
}
.match-section-divider {
  flex: 0 0 2px;
  width: 2px;
  min-height: 60px;
  background: var(--border-color);
  align-self: center;
  border-radius: 2px;
}
.match-card--past {
  opacity: 0.7;
  filter: grayscale(25%);
}
.match-result-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: #64748B;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 2px 7px;
  margin-top: 0.2rem;
}
.match-live-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: #EF4444;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  animation: pulse-live 1.4s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ==========================================================================
   APOSTLE TV — VIDEOS GRID (Chelsea-style 3-column layout)
   ========================================================================== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .videos-grid { grid-template-columns: 1fr; }
}

.video-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ya-blue-deep);
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-card__thumb img {
  transform: scale(1.06);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: var(--ya-blue-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-card:hover .video-play-btn {
  background: var(--ya-blue);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card__content {
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.video-card-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0.25rem 0;
}

.video-card-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ya-blue-dark);
  color: #fff;
  border-radius: var(--radius-xs);
  padding: 3px 8px;
  align-self: flex-start;
  transition: background 0.15s;
}
.video-card-tag:hover {
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
}

.video-yt-quick-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(220, 38, 38, 0.92);
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  transition: background 0.2s, transform 0.2s;
  z-index: 5;
}
.video-yt-quick-badge:hover {
  background: #ef4444;
  transform: scale(1.06);
}

.video-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.video-card-yt-link {
  font-family: var(--font-heading);
  font-size: 0.73rem;
  font-weight: 700;
  color: #DC2626;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s, transform 0.15s;
}
.video-card-yt-link:hover {
  color: #ef4444;
  text-decoration: underline;
  transform: translateX(2px);
}

/* =========================================================
   CLUB NEWS: PREMIER LEAGUE MAGAZINE LAYOUT (IMAGE 3 STYLE)
   ========================================================= */
.news-section-wrap {
  background: linear-gradient(180deg, var(--ya-blue-deep) 0%, var(--ya-blue-dark) 100%);
  padding: 4.5rem 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.news-section-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(0, 119, 216, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(255, 184, 0, 0.06) 0%, transparent 45%);
  pointer-events: none;
}

.news-header-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ya-gold);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.section-header--light .section-title {
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 900;
}

.section-header--light .section-subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin-top: 0.35rem;
}

/* Chelsea-Style Layout: 1 Large Left + 2 Stacked Right */
.news-pl-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

/* Large Hero Card (Left) */
.news-hero-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-hero-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.news-hero-card:hover .news-hero-card__bg {
  transform: scale(1.05);
}

.news-hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 41, 0.15) 0%, rgba(7, 14, 41, 0.45) 40%, rgba(7, 14, 41, 0.96) 100%);
  pointer-events: none;
}

.news-hero-card__content {
  position: relative;
  z-index: 2;
  padding: 2.25rem 2rem;
}

.news-tag-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.news-tag-badge::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ya-gold);
  margin-top: 4px;
}

.news-hero-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.22;
  margin-bottom: 0.75rem;
  transition: text-decoration 0.2s;
}

.news-hero-card:hover .news-hero-card__title {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.news-hero-card__meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Stacked Column (Right) */
.news-pl-stacked {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.news-stacked-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-stacked-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.news-stacked-card:hover .news-stacked-card__bg {
  transform: scale(1.06);
}

.news-stacked-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 41, 0.15) 0%, rgba(7, 14, 41, 0.45) 35%, rgba(7, 14, 41, 0.96) 100%);
  pointer-events: none;
}

.news-stacked-card__content {
  position: relative;
  z-index: 2;
  padding: 1.35rem 1.5rem;
}

.news-stacked-card__title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 0.35rem;
  transition: text-decoration 0.2s;
}

.news-stacked-card:hover .news-stacked-card__title {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Bottom Strip: Horizontal Older Stories (Matching Image 3) */
.news-pl-strip-wrap {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-pl-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.news-pl-strip-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-pl-strip-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ya-gold);
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.3);
  padding: 2px 8px;
  border-radius: 999px;
}

.news-pl-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.news-strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.75rem 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.news-strip-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 184, 0, 0.4);
  transform: translateY(-2px);
}

.news-strip-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ya-blue);
}

.news-strip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-strip-text {
  flex: 1;
  min-width: 0;
}

.news-strip-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--ya-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.news-strip-title,
.news-strip-heading {
  font-size: 0.86rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.news-strip-item:hover .news-strip-title,
.news-strip-item:hover .news-strip-heading {
  color: var(--ya-gold);
  text-decoration: underline;
}

.news-strip-date {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}

@media (max-width: 960px) {
  .news-pl-grid {
    grid-template-columns: 1fr;
  }
  .news-hero-card {
    min-height: 380px;
  }
}

.news-featured-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 20, 137, 0.07);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 1.75rem;
}

.news-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 20, 137, 0.12);
}

.news-featured-card__media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-subtle);
}

.news-featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s ease;
  display: block;
}

.news-featured-card:hover .news-featured-card__media img {
  transform: scale(1.04);
}

.news-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.news-badge-pill--match {
  background: #16a34a;
  color: #fff;
}

.news-badge-pill--club {
  background: var(--ya-blue);
  color: #fff;
}

.news-badge-pill--preview {
  background: #d97706;
  color: #fff;
}

.news-featured-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.news-meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.news-meta-date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.news-meta-dot {
  color: var(--border-color);
}

.news-meta-source {
  color: var(--ya-blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.news-featured-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ya-blue-deep);
  line-height: 1.3;
  margin: 0.35rem 0 0.75rem;
  transition: color 0.2s;
}

.news-featured-card:hover .news-featured-title {
  color: var(--ya-blue);
}

.news-featured-excerpt {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.news-read-btn {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--ya-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.news-read-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.news-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.news-mini-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.news-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 20, 137, 0.08);
}

.news-mini-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f1f5f9;
}

.news-mini-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.3s ease;
  display: block;
}

.news-mini-card:hover .news-mini-card__thumb img {
  transform: scale(1.04);
}

.news-mini-card__thumb .news-badge-pill {
  position: absolute;
  top: 8px;
  left: 8px;
}

.news-mini-card__content {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-mini-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ya-blue-deep);
  line-height: 1.35;
  margin: 0.25rem 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-mini-excerpt {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-link-read {
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--ya-blue);
  margin-top: auto;
}

/* Dispatches Sidebar */
.news-blog-sidebar {
  position: sticky;
  top: 90px;
}

.dispatches-panel {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 20, 137, 0.06);
}

.dispatches-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-subtle);
}

.dispatches-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--ya-blue-deep);
}

.live-dot-pulse {
  width: 9px;
  height: 9px;
  background: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(22, 163, 74, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.dispatches-handle {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.dispatches-list {
  display: flex;
  flex-direction: column;
}

.dispatch-item {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: background 0.15s ease;
}

.dispatch-item:last-child {
  border-bottom: none;
}

.dispatch-item:hover {
  background: #f8fafc;
}

.dispatch-item__meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.dispatch-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  object-fit: cover;
}

.dispatch-author {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ya-blue-deep);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dispatch-time {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.dispatch-item__text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #374151;
  margin-bottom: 0.5rem;
}

.dispatch-tag-link {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ya-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dispatches-footer {
  padding: 0.9rem 1.25rem;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.dispatches-follow-link {
  font-size: 0.8rem;
  font-weight: 800;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.dispatches-follow-link:hover {
  color: var(--ya-blue);
}

@media (max-width: 960px) {
  .news-blog-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .news-subgrid {
    grid-template-columns: 1fr;
  }
  .news-blog-sidebar {
    position: static;
  }
/* =========================================================
   MODERN OLDER STORIES & ARCHIVE UI
   ========================================================= */
.news-archive-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.news-archive-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.news-archive-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.news-archive-icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 87, 184, 0.1);
  color: var(--ya-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.news-archive-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ya-blue-deep);
  margin: 0;
}

.news-archive-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.news-archive-count-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ya-blue);
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  padding: 3px 10px;
  border-radius: 999px;
}

.news-archive-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.archive-filter-btn {
  padding: 0.4rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.archive-filter-btn:hover {
  background: #F3F4F6;
  color: var(--ya-blue-deep);
}

.archive-filter-btn.active {
  background: var(--ya-blue);
  color: #fff;
  border-color: var(--ya-blue);
  box-shadow: 0 2px 8px rgba(0, 87, 184, 0.25);
}

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

.archive-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 20, 137, 0.1);
}

.archive-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #F3F4F6;
}

.archive-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.archive-card:hover .archive-card__thumb img {
  transform: scale(1.05);
}

.archive-card__thumb .news-badge-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.65rem;
}

.archive-card__body {
  padding: 1.15rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.archive-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ya-blue-deep);
  line-height: 1.35;
  margin: 0.35rem 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-card:hover .archive-card__title {
  color: var(--ya-blue);
}

.archive-card__excerpt {
  font-size: 0.82rem;
  color: #6B7280;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.archive-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--ya-blue);
  font-weight: 800;
}

@media (max-width: 960px) {
  .news-magazine-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

/* =========================================================
   FOLDED UI FOR OLDER NEWS & DISPATCHES
   ========================================================= */
.older-news-section {
  margin-top: 1.5rem;
}

.btn-older-news-toggle {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ya-blue-deep);
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.btn-older-news-toggle:hover {
  background: #f1f5f9;
  border-color: var(--ya-blue-light);
  color: var(--ya-blue);
}

.btn-older-news-toggle__left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-older-news-toggle__left i {
  color: var(--ya-gold);
  font-size: 1.05rem;
}

.btn-older-news-toggle__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-older-news-toggle__right i {
  transition: transform 0.3s ease;
}

.btn-older-news-toggle.open .btn-older-news-toggle__right i {
  transform: rotate(180deg);
}

.older-news-fold {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
}

.older-news-fold.open {
  max-height: 2500px;
  opacity: 1;
  margin-top: 1.25rem;
}

.older-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

/* Sidebar Cool Dropdown & Archive Selector */
.sidebar-dropdown-archive {
  padding: 1rem 1.25rem 1.15rem;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-dropdown-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ya-blue-deep);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.sidebar-select-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 0.75rem;
}

.sidebar-custom-select {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  padding: 0.65rem 2.2rem 0.65rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--ya-blue-deep);
  appearance: none;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.sidebar-custom-select:hover {
  border-color: var(--ya-blue);
}

.sidebar-custom-select:focus {
  outline: none;
  border-color: var(--ya-blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.15);
}

.select-arrow-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--ya-blue);
  font-size: 0.8rem;
}

.btn-sidebar-fold-toggle {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ya-blue);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.btn-sidebar-fold-toggle:hover {
  background: #eff6ff;
  border-color: var(--ya-blue-light);
}

.btn-sidebar-fold-toggle i.fa-chevron-down {
  transition: transform 0.3s ease;
}

.btn-sidebar-fold-toggle.open i.fa-chevron-down {
  transform: rotate(180deg);
}

.older-dispatches-drawer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
}

.older-dispatches-drawer.open {
  max-height: 1500px;
  opacity: 1;
  margin-top: 0.75rem;
}

/* Partners ribbon hover */
.partner-logo-item-link {
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* =========================================================
   ANTICIPATE OVERLAY / BANNER STYLES
   ========================================================= */
.anticipate-top-strip {
  background: linear-gradient(90deg, #070E29 0%, #0A1640 50%, #070E29 100%);
  border-bottom: 2px solid var(--ya-gold);
  color: #FFFFFF;
  padding: 0.55rem 1rem;
  position: relative;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.anticipate-top-strip__badge {
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.anticipate-top-strip__text {
  font-weight: 600;
  color: #FFFFFF;
}

.anticipate-top-strip__btn {
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid var(--ya-gold);
  color: var(--ya-gold);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.25rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.anticipate-top-strip__btn:hover {
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
}

/* Full-Screen Anticipate Modal/Overlay */
.anticipate-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(7, 14, 41, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  color: #FFFFFF;
  text-align: center;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.anticipate-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.anticipate-overlay__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.anticipate-overlay__close:hover {
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
  transform: rotate(90deg);
}

.anticipate-overlay__crest-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.anticipate-overlay__crest-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(16px);
  animation: pulseGlow 3s ease-in-out infinite alternate;
}

.anticipate-overlay__crest {
  position: relative;
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6));
}

.anticipate-overlay__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.4);
  color: var(--ya-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.anticipate-overlay__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  background: linear-gradient(180deg, #FFFFFF 30%, #FFB800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.anticipate-overlay__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.anticipate-overlay__countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 540px;
  margin-bottom: 2rem;
}

.anticipate-overlay__box {
  background: rgba(14, 30, 91, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 1.2rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.anticipate-overlay__num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.anticipate-overlay__label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ya-gold);
}

.anticipate-overlay__enter-btn {
  background: var(--ya-gold);
  color: var(--ya-blue-deep);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
  transition: all 0.25s ease;
}

.anticipate-overlay__enter-btn:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
}

.partner-logo-item-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ==========================================================================
   TOP UTILITY BAR CTA VARIANTS
   ========================================================================== */

.top-cta-btn--gold {
  background: linear-gradient(135deg, #F1B434, #E0A020) !important;
  color: #0A1640 !important;
  border-color: #F1B434 !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 8px rgba(241,180,52,0.35);
}

.top-cta-btn--gold:hover {
  background: #FFFFFF !important;
  color: #0A1640 !important;
  border-color: #FFFFFF !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   MEMBER PROFILE MODAL & STYLING
   ========================================================================== */

.profile-modal-box {
  max-width: 580px !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 18px !important;
  box-shadow: 0 25px 60px rgba(5, 11, 30, 0.45) !important;
  border: 1px solid rgba(241, 180, 52, 0.25);
}

.profile-modal-hdr {
  background: linear-gradient(135deg, #0A1640, #0F2263);
  padding: 1.5rem 1.75rem;
  color: #fff;
  position: relative;
  border-bottom: 2px solid var(--ya-gold);
}

.profile-modal-hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-modal-hdr__crest {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.profile-modal-hdr__titles {
  flex: 1;
  margin-left: 0.85rem;
}

.profile-modal-hdr__tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ya-gold);
  margin-bottom: 2px;
}

.profile-modal-hdr__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}

.profile-modal-body {
  padding: 1.5rem 1.75rem;
  max-height: 75vh;
  overflow-y: auto;
  background: #FFFFFF;
}

.profile-avatar-wrap {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #F8FAFC, #EFF6FF);
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  margin-bottom: 1.25rem;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A1640, #1E3A8A);
  color: var(--ya-gold);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2.5px solid var(--ya-gold);
  box-shadow: 0 4px 12px rgba(10, 22, 64, 0.2);
}

.profile-info { flex: 1; min-width: 0; }

.profile-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0A1640;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-tier-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}

.profile-tier {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92400E;
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  padding: 3px 10px;
  border-radius: 999px;
}

.profile-tier-upgrade-btn {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0057B8;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.profile-tier-upgrade-btn:hover { color: #0A1640; }

.profile-field-group {
  margin-bottom: 0.9rem;
}

.profile-field-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #475569;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.profile-field-group input,
.profile-field-group select {
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  color: #0F172A;
  background: #F8FAFC;
  transition: all 0.2s;
  outline: none;
}

.profile-field-group input:focus,
.profile-field-group select:focus {
  border-color: #0057B8;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.12);
}

.profile-section-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 0.4rem;
  border-bottom: 1.5px solid #F1F5F9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.25rem 0 0.75rem;
}

.profile-section-title i { color: var(--ya-gold); }

.profile-orders-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.profile-orders-empty {
  text-align: center;
  padding: 1.25rem 1rem;
  color: #64748B;
  font-size: 0.85rem;
  background: #F8FAFC;
  border: 1px dashed #CBD5E1;
  border-radius: 10px;
}

.profile-orders-empty i {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  display: block;
  opacity: 0.4;
}

.profile-order-entry {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
}

.profile-order-ref {
  font-family: monospace;
  font-weight: 800;
  color: #0057B8;
  font-size: 0.82rem;
}

.profile-order-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #86EFAC;
}

.profile-perks-list { display: flex; flex-direction: column; gap: 0.45rem; }

.profile-perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: #334155;
  font-weight: 500;
}

.profile-perk i { color: #16A34A; font-size: 0.85rem; }

/* ==========================================================================
   SHOP WAITLIST BANNER & CONFIRMATION
   ========================================================================== */

.shop-waitlist-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  border: 1.5px solid #86EFAC;
  border-left: 5px solid #16A34A;
  border-radius: 14px;
  padding: 1.15rem 1.4rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.08);
}

.shop-waitlist-banner__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.35);
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.shop-waitlist-banner__text { flex: 1; min-width: 0; }

.shop-waitlist-banner__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: #166534;
  margin-bottom: 0.25rem;
}

.shop-waitlist-banner__sub {
  font-size: 0.82rem;
  color: #15803D;
  line-height: 1.5;
}

.shop-waitlist-banner__count {
  text-align: center;
  flex-shrink: 0;
  background: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid #BBF7D0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.shop-waitlist-count-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #166534;
  line-height: 1;
}

.shop-waitlist-count-lbl {
  font-size: 0.65rem;
  font-weight: 800;
  color: #15803D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Waitlist Receipt Modal Details */
.waitlist-success-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.waitlist-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  font-size: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.12);
  animation: pulseSuccess 2s infinite;
}

@keyframes pulseSuccess {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.3); }
  70% { box-shadow: 0 0 0 14px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.waitlist-queue-pill {
  display: inline-block;
  background: #0A1640;
  color: var(--ya-gold);
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  border: 1px solid var(--ya-gold);
}

.waitlist-receipt-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  text-align: left;
  font-size: 0.85rem;
  color: #334155;
  margin-top: 0.75rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
}

.receipt-row span { color: #64748B; font-weight: 500; }
.receipt-row strong { color: #0F172A; font-weight: 700; }
