/* ============================================================
   BLUEJAYS SPORTS — Master Design System v2
   Laravel Public CSS — Ported from static site
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  /* Backgrounds */
  --bg-page:      #05070D;
  --bg-nav:       #070A12;
  --bg-card:      #0E1521;
  --bg-card-2:    #101827;
  --bg-elevated:  #111B2B;
  --bg-input:     #0B1220;
  --bg-sidebar:   #060A10;

  /* Brand Colors */
  --cyan:         #28B6F6;
  --cyan-bright:  #2ECDF8;
  --cyan-dim:     rgba(40, 182, 246, 0.15);
  --cyan-glow:    rgba(40, 182, 246, 0.25);
  --blue:         #1E8EE5;
  --blue-dark:    #155EBC;
  --blue-muted:   #1D3552;

  /* Borders */
  --border:       #204066;
  --border-bright: #2A5E8F;
  --border-glow:  rgba(40, 182, 246, 0.4);
  --border-card:  1px solid #204066;

  /* Text */
  --text-white:   #F5F8FC;
  --text-gray:    #9AA7B8;
  --text-muted:   #6A7A8E;
  --text-cyan:    #28B6F6;

  /* Status Colors */
  --green:        #2BB673;
  --green-bg:     rgba(43, 182, 115, 0.15);
  --orange:       #E39A3D;
  --orange-bg:    rgba(227, 154, 61, 0.15);
  --red:          #E05252;
  --red-bg:       rgba(224, 82, 82, 0.15);

  /* Gradients */
  --grad-btn:     linear-gradient(135deg, #1E8EE5 0%, #28B6F6 100%);
  --grad-page:    linear-gradient(180deg, #05070D 0%, #070B14 100%);
  --grad-card:    linear-gradient(145deg, #0E1521 0%, #0B1018 100%);
  --grad-hero:    linear-gradient(135deg, #05070D 0%, #0A1020 50%, #06091500 100%);

  /* Shadows & Glows */
  --shadow-card:  0 4px 20px rgba(0,0,0,0.5), 0 0 0 1px #204066;
  --glow-cyan:    0 0 20px rgba(40,182,246,0.3);
  --glow-btn:     0 4px 15px rgba(40,182,246,0.4);

  /* Sizing */
  --nav-h:        70px;
  --sidebar-w:    220px;
  --container:    1280px;
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    14px;
  --radius-xl:    20px;

  /* Fonts */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --transition:   all 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-page);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── Background diagonal lines ── */
.bg-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(40,182,246,0.03) 40px,
      rgba(40,182,246,0.03) 41px
    );
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(6, 9, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(32, 64, 102, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: 32px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 38px;
  height: 38px;
  background: var(--grad-btn);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  font-family: var(--font-display);
  color: #fff;
  overflow: hidden;
}
.nav-logo-img img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 0.05em;
}
.nav-logo-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  flex: 1;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links > li > a:hover { color: var(--text-white); }
.nav-links > li > a.active {
  color: var(--text-white);
}
.nav-links > li > a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--grad-btn);
  border-radius: 2px;
}

/* ── Nav Dropdown ── */
.nav-has-dropdown { position: relative; list-style: none; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #0B1220;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  padding-top: 16px;   /* replaces the old 8px gap — keeps visual spacing */
  list-style: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}

/* invisible bridge: fills any sub-pixel gap between <li> and dropdown */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.nav-has-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 8px 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-gray);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown li a:hover,
.nav-dropdown li a.active {
  background: rgba(40,182,246,0.08);
  color: var(--text-white);
}
.nav-dropdown li a.active { color: var(--cyan); }

/* ── Burger button (mobile) ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-gray);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav ── */
@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-actions { display: none; }
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(7,10,18,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 16px;
    display: none;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links > li > a { padding: 10px 24px; font-size: 15px; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(40,182,246,0.04);
    border-radius: 0;
    padding: 0 0 4px 16px;
  }
  .nav-has-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown { display: none; }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: var(--glow-btn);
}
.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 20px rgba(40,182,246,0.6);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-sm { height: 32px; padding: 0 14px; font-size: 12px; }
.btn-lg { height: 46px; padding: 0 28px; font-size: 15px; }
.btn-xl { height: 52px; padding: 0 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-apply {
  background: var(--grad-btn);
  color: #fff;
  height: 50px;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--glow-btn);
  border-radius: var(--radius-sm);
}
.btn-cyan-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
}
.btn-cyan-outline:hover { background: var(--cyan-dim); }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.card-glow:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 20px rgba(40,182,246,0.15);
}
.card-p { padding: 24px; }
.card-p-sm { padding: 16px; }

/* ── Page offset ── */
.page-top { padding-top: var(--nav-h); }

/* ── Section headers ── */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 8px;
}
.section-title-xl {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--text-white);
}
.section-title-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-white);
}
.section-title-md {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
}
.section-sub {
  font-size: 15px;
  color: var(--text-gray);
  margin-top: 8px;
}

/* ── Badges / Pills ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid;
  white-space: nowrap;
}
.pill-dark   { background: rgba(14,21,33,0.9); border-color: var(--border); color: var(--text-gray); }
.pill-dark:hover { border-color: var(--border-bright); color: var(--text-white); }
.pill-active { background: rgba(40,182,246,0.15); border-color: var(--cyan); color: var(--cyan); }
.pill-cyan   { background: rgba(40,182,246,0.12); border-color: rgba(40,182,246,0.5); color: var(--cyan); }
.pill-green  { background: var(--green-bg); border-color: rgba(43,182,115,0.5); color: var(--green); }
.pill-orange { background: var(--orange-bg); border-color: rgba(227,154,61,0.5); color: var(--orange); }
.pill-red    { background: var(--red-bg); border-color: rgba(224,82,82,0.5); color: var(--red); }

/* Tag badges */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tag-cyan    { background: rgba(40,182,246,0.15); color: var(--cyan); }
.tag-blue    { background: rgba(30,142,229,0.15); color: #5BA4E8; }
.tag-green   { background: var(--green-bg); color: var(--green); }
.tag-orange  { background: var(--orange-bg); color: var(--orange); }
.tag-gray    { background: rgba(255,255,255,0.06); color: var(--text-gray); }

/* ── Hero Backgrounds ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #05070D 40%, rgba(5,7,13,0.6) 100%);
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 40px,
    rgba(40,182,246,0.04) 40px,
    rgba(40,182,246,0.04) 41px
  );
}
.hero-content { position: relative; z-index: 1; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}

/* ── Filter Row ── */
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Grid Utilities ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ── Forms ── */
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  transition: var(--transition);
  outline: none;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(40,182,246,0.15);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-input.valid { border-color: var(--green); }
.form-input.error,
.is-invalid { border-color: var(--red) !important; }
.invalid-feedback,
.field-msg-err { font-size: 12px; color: var(--red); margin-top: 4px; display: block; }
.field-msg-ok  { font-size: 12px; color: var(--green); margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.form-group { margin-bottom: 16px; }

/* ── Alert / Flash ── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid;
}
.alert-success { background: var(--green-bg); border-color: rgba(43,182,115,0.4); color: var(--green); }
.alert-danger  { background: var(--red-bg);   border-color: rgba(224,82,82,0.4); color: var(--red); }
.alert-warning { background: var(--orange-bg); border-color: rgba(227,154,61,0.4); color: var(--orange); }
.alert-info    { background: var(--cyan-dim);  border-color: rgba(40,182,246,0.4); color: var(--cyan); }

/* ── Footer ── */
.footer {
  background: var(--bg-nav);
  border-top: 1px solid rgba(32,64,102,0.5);
  padding: 48px 0 0;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; font-style: italic; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--cyan); color: var(--cyan); }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-gray);
  margin-bottom: 14px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(32,64,102,0.4);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copyright { font-size: 12px; color: var(--text-muted); }

/* ── Avatar ── */
.avatar {
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-elevated);
  font-size: 16px;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.av-sm  { width: 32px;  height: 32px; }
.av-md  { width: 44px;  height: 44px; }
.av-lg  { width: 60px;  height: 60px; }
.av-xl  { width: 80px;  height: 80px; }
.av-xxl { width: 120px; height: 120px; }

/* ── View All Link ── */
.view-all {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  transition: var(--transition);
}
.view-all:hover { color: var(--cyan-bright); }

/* ── Section heading row ── */
.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sec-head-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-white);
}

/* ── Pagination ── */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-gray);
  transition: var(--transition);
}
.pagination .page-link:hover { border-color: var(--cyan); color: var(--cyan); }
.pagination .page-item.active .page-link {
  background: var(--grad-btn);
  border-color: transparent;
  color: #fff;
}
.pagination .page-item.disabled .page-link { opacity: 0.4; pointer-events: none; }

/* ── News Card ── */
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.news-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.news-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.news-card-category {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 8px;
}
.news-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 8px;
  flex: 1;
}
.news-card-excerpt {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Match Card ── */
.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.match-card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; }
.match-card.live-card::before     { background: var(--red,#e05252); }
.match-card.upcoming-card::before { background: var(--grad-btn); }
.match-card.result-card::before   { background: var(--border); }
.match-card.result-card.win::before  { background: var(--green,#2bb673); }
.match-card.result-card.loss::before { background: var(--red,#e05252); }
.match-card:hover { border-color: var(--border-bright); transform: translateX(2px); }
.match-card:last-child { margin-bottom: 0; }
/* MC columns */
.mc-left { display:flex; flex-direction:column; gap:4px; }
.mc-status-badge { display:inline-flex; align-items:center; gap:4px; padding:3px 8px; border-radius:4px; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.06em; width:fit-content; }
.mc-status-badge.live      { background:rgba(224,82,82,.15);  color:#e05252; border:1px solid rgba(224,82,82,.3); }
.mc-status-badge.upcoming  { background:rgba(40,182,246,.1);  color:#28b6f6; border:1px solid rgba(40,182,246,.2); }
.mc-status-badge.win       { background:rgba(43,182,115,.12); color:#2bb673; border:1px solid rgba(43,182,115,.25); }
.mc-status-badge.loss      { background:rgba(224,82,82,.1);   color:#e05252; border:1px solid rgba(224,82,82,.2); }
.mc-status-badge.postponed { background:rgba(255,165,0,.1);   color:#FFA500; border:1px solid rgba(255,165,0,.25); }
.mc-tournament { font-size:12px; font-weight:700; color:var(--text-white); }
.mc-format     { font-size:11px; color:var(--text-muted); }
.mc-time       { font-size:13px; font-weight:600; color:var(--text-white); margin-top:6px; }
.mc-date       { font-size:11px; color:var(--text-muted); }
.mc-center { display:flex; align-items:center; gap:12px; justify-content:center; }
.mc-team   { display:flex; flex-direction:column; align-items:center; gap:6px; flex:1; }
.mc-team-logo {
  width:42px; height:42px; border-radius:6px;
  background:var(--bg-elevated); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; font-size:22px;
  overflow:hidden;
}
.mc-team-logo img { width:100%; height:100%; object-fit:contain; }
.mc-team-name { font-family:var(--font-display); font-size:13px; font-weight:800; text-transform:uppercase; color:var(--text-white); text-align:center; }
.mc-team-tag  { font-size:10px; color:var(--text-muted); text-align:center; }
.mc-score-box { text-align:center; flex-shrink:0; }
.mc-score { font-family:var(--font-display); font-size:28px; font-weight:900; color:var(--text-white); display:flex; align-items:center; gap:6px; line-height:1; }
.mc-score .w   { color:var(--cyan,#28b6f6); }
.mc-score .sep { color:var(--text-muted); font-size:18px; }
.mc-vs { font-family:var(--font-display); font-size:16px; font-weight:900; color:var(--text-muted); }
.mc-game-tag { font-size:10px; color:var(--text-muted); margin-top:4px; }
.mc-right { display:flex; flex-direction:column; align-items:flex-end; gap:8px; }
.mc-cta { padding:7px 16px; border-radius:6px; font-family:var(--font-display); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; text-decoration:none; transition:all .2s; white-space:nowrap; display:inline-block; }
.mc-cta.primary   { background:var(--grad-btn); color:#fff; }
.mc-cta.secondary { background:transparent; border:1px solid var(--border); color:var(--text-muted); }
.mc-cta.secondary:hover { border-color:var(--cyan,#28b6f6); color:var(--cyan,#28b6f6); }
.live-dot { width:6px; height:6px; border-radius:50%; background:var(--red,#e05252); display:inline-block; animation:blink 1s ease-in-out infinite; }
/* Legacy fields still used by older views */
.match-card-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  text-align: center;
}
.match-team-logo {
  width: 48px; height: 48px;
  border-radius: 8px;
  object-fit: contain;
}
.match-team-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
}
.match-score {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--text-white);
  text-align: center;
}
.match-score-sep { color: var(--text-muted); }
.match-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Player Card ── */
.player-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.player-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(40,182,246,0.15);
}
.player-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.player-card-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.player-card-body { padding: 16px; }
.player-card-role {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 4px;
}
.player-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-white);
}
.player-card-realname {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Sponsor Tier Colors ── */
.sponsor-tier-platinum { border-color: rgba(180,180,200,0.3); }
.sponsor-tier-gold     { border-color: rgba(212,175,55,0.4); }
.sponsor-tier-silver   { border-color: rgba(150,150,160,0.3); }
.sponsor-tier-bronze   { border-color: rgba(180,120,60,0.3); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb { background: var(--blue-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease forwards; }
.anim { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title-xl { font-size: 48px; }
  .match-team { min-width: 70px; }
}
