/*
Theme Name:        JuanSports
Theme URI:         https://juansports.org
Description:       Custom WordPress theme for JuanSports.org — bold sports editorial, no page builder.
Author:            JuanSports
Version:           1.0.0
Requires at least: 6.0
Tested up to:      6.5
Requires PHP:      8.0
License:           GNU General Public License v2
Text Domain:       juansports
*/

:root {
  --blue:#1c6eb3;--blue-d:#155a94;--blue-l:#2a82d0;--blue-p:#e8f2fb;
  --navy:#0b1120;--navy2:#111827;--navy3:#1a2535;
  --white:#ffffff;--off:#f7f9fc;--border:#e2e8f0;
  --text:#1e293b;--muted:#64748b;--light:#94a3b8;
  --fh:'Barlow Condensed',Arial Narrow,sans-serif;
  --fb:'Barlow',sans-serif;
  --ease:.2s ease;--sh:0 8px 28px rgba(28,110,179,.12);
  --mw:1280px;--pad:48px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--fb);font-size:15px;line-height:1.65;color:var(--text);background:var(--white);-webkit-font-smoothing:antialiased}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
ul,ol{list-style:none;padding:0}
button{cursor:pointer;font-family:var(--fb)}
h1,h2,h3,h4,h5,h6{font-family:var(--fh);color:var(--navy);line-height:1.08;letter-spacing:.02em;font-weight:800}
h1{font-size:clamp(28px,4.5vw,52px);font-weight:900}
h2{font-size:clamp(22px,3vw,34px)}
h3{font-size:clamp(18px,2vw,24px)}
p{margin-bottom:1em}
p:last-child{margin-bottom:0}
.wrap{max-width:var(--mw);margin:0 auto;padding:0 var(--pad)}

/* ================================================================
   JUANSPORTS — FULL STYLES (merged from Additional CSS)
   ================================================================ */

/* ── HIDE ELEMENTOR HEADER ── */
.elementor-location-header { display: none !important; }

/* ── TOPBAR ── */
.js-topbar {
  background: #0b1120;
  padding: 7px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #475569;
  letter-spacing: .05em;
}
.js-topbar__socials { display: flex; gap: 7px; }
.js-topbar__socials a {
  width: 26px; height: 26px;
  background: rgba(28,110,179,.2);
  border: 1px solid rgba(28,110,179,.3);
  color: #7bb3e0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  text-decoration: none; transition: all .2s;
}
.js-topbar__socials a:hover { background: #1c6eb3; border-color: #1c6eb3; color: #fff; }

/* ── HEADER ── */
.js-header, #masthead {
  background: #ffffff;
  background-image: none;
  border-bottom: 3px solid #1c6eb3;
  border-top: none;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 14px rgba(11,17,32,.07);
  overflow: visible;
}
.js-header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: nowrap;
  gap: 16px;
  overflow: visible;
  position: relative;
}
.js-logo-text {
  font-family: var(--fh);
  font-size: 28px; font-weight: 900;
  letter-spacing: .04em;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}
.js-logo-text span { color: #1c6eb3; }
.custom-logo-link img { max-height: 50px; width: auto; }

/* Nav */
.js-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  position: static;
}
.js-nav__menu {
  display: flex;
  flex-direction: row;
  gap: 2px;
  list-style: none; padding: 0; margin: 0;
  align-items: center;
  position: static;
  background: transparent;
  box-shadow: none;
  border: none;
  flex-wrap: nowrap;
}
.js-nav__menu li { position: relative; }
.js-nav__menu li > a {
  font-size: 12px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); padding: 7px 11px;
  border-radius: 3px; text-decoration: none;
  display: flex; align-items: center;
  white-space: nowrap; transition: all .2s;
}
.js-nav__menu li > a:hover,
.js-nav__menu .current-menu-item > a,
.js-nav__menu .current-menu-ancestor > a {
  color: #1c6eb3; background: #e8f2fb;
}
.js-nav__menu .sub-menu {
  position: absolute; top: calc(100% + 3px); left: 0;
  min-width: 180px; background: #fff;
  border: 1px solid var(--border); border-top: 2px solid #1c6eb3;
  box-shadow: 0 8px 24px rgba(11,17,32,.1);
  z-index: 9999; display: none; padding: 0;
}
.js-nav__menu li:hover > .sub-menu { display: block; }
.js-nav__menu .sub-menu li > a {
  padding: 10px 16px; font-size: 12px; font-weight: 600;
  color: var(--text); background: transparent;
  border-bottom: 1px solid #f1f5f9; border-radius: 0;
  text-transform: none; letter-spacing: .02em;
}
.js-nav__menu .sub-menu li > a:hover { background: #e8f2fb; color: #1c6eb3; }
.js-nav__menu .sub-menu li:last-child > a { border-bottom: none; }

.js-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 9999;
}
.js-search-toggle {
  width: 34px; height: 34px;
  background: #e8f2fb;
  border: 1.5px solid rgba(28,110,179,.2);
  border-radius: 3px; color: #1c6eb3;
  font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  position: relative; z-index: 9999;
}
.js-search-toggle:hover { background: #1c6eb3; color: #fff; }
.js-menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 9999;
  transition: all .2s;
}
.js-menu-toggle:hover { border-color: #1c6eb3; }
.js-burger { display: flex; flex-direction: column; gap: 5px; pointer-events: none; }
.js-burger span { display: block; width: 18px; height: 2px; background: #0b1120; border-radius: 1px; transition: all .2s; }

/* Search bar */
.js-search-bar { background: var(--off); border-bottom: 1px solid var(--border); padding: 10px 48px; }
.js-search-bar .search-form { display: flex; max-width: 600px; }
.js-search-bar .search-field {
  flex: 1; font-size: 13px;
  border: 1.5px solid var(--border); border-right: none;
  padding: 9px 14px; color: var(--text);
  outline: none; border-radius: 0;
}
.js-search-bar .search-field:focus { border-color: #1c6eb3; }
.js-search-bar .search-submit {
  background: #1c6eb3; color: #fff; border: none;
  padding: 9px 16px; font-size: 12px; font-weight: 700;
  cursor: pointer; border-radius: 0;
}

/* ── TICKER ── */
.js-ticker {
  background: #1c6eb3; padding: 7px 48px;
  display: flex; align-items: center; overflow: hidden;
}
.js-ticker__label {
  font-size: 9px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; background: rgba(0,0,0,.2);
  color: rgba(255,255,255,.9); padding: 3px 12px;
  margin-right: 18px; white-space: nowrap;
  border-radius: 2px; flex-shrink: 0;
}
.js-ticker__wrap { overflow: hidden; flex: 1; }
.js-ticker__inner { display: flex; gap: 40px; white-space: nowrap; animation: js-tick 28s linear infinite; }
@keyframes js-tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.js-ticker__item { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.82); display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.js-ticker__item strong { color: #fff; font-weight: 800; }

/* ── SPORTS BAR ── */
.js-sports-bar { display: grid; grid-template-columns: repeat(6,1fr); border-bottom: 3px solid #1c6eb3; background: #fff; }
.js-sport-tab { padding: 15px 10px; text-align: center; border-right: 1px solid var(--border); transition: background .2s; display: flex; flex-direction: column; align-items: center; gap: 5px; text-decoration: none; }
.js-sport-tab:last-child { border-right: none; }
.js-sport-tab:hover, .js-sport-tab.active { background: #1c6eb3; }
.js-sport-tab:hover .js-sport-tab__name, .js-sport-tab.active .js-sport-tab__name { color: #fff; }
.js-sport-tab__icon { font-size: 20px; transition: transform .2s; }
.js-sport-tab:hover .js-sport-tab__icon { transform: scale(1.1); }
.js-sport-tab__name { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); transition: color .2s; }

/* ── LAYOUT ── */
.js-homepage-body { padding: 36px 0; background: #fff; }
.js-homepage-body .wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.js-two-col { display: grid; grid-template-columns: 1fr 300px; gap: 44px; align-items: start; }
.js-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 32px; }
.js-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 32px; }
.js-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 32px; }

/* ── SECTION LABEL ── */
.js-sec-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.js-sec-label__text { font-family: var(--fh); font-size: 19px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); white-space: nowrap; }
.js-sec-label__bar { flex: 1; height: 2px; background: linear-gradient(to right, #1c6eb3, transparent); }
.js-sec-label__link { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #1c6eb3; white-space: nowrap; border-bottom: 1px solid rgba(28,110,179,.3); text-decoration: none; }

/* ── HERO ── */
.js-hero { display: grid; grid-template-columns: 1fr 340px; gap: 3px; background: var(--navy); padding: 3px; max-width: 1280px; margin: 0 auto; }
.js-hero__main { position: relative; min-height: 460px; overflow: hidden; background: #0b1a33; display: block; text-decoration: none; }
.js-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.js-hero__grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,17,32,.98) 0%, rgba(11,17,32,.5) 50%, rgba(11,17,32,.1) 100%); }
.js-hero__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 32px; z-index: 2; }
.js-hero__cat { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: #2a82d0; margin-bottom: 10px; }
.js-hero__cat::before { content: ''; width: 22px; height: 2px; background: #1c6eb3; }
.js-hero__title { font-family: var(--fh); font-size: clamp(26px,3.5vw,44px); font-weight: 900; line-height: 1.05; color: #fff; margin-bottom: 12px; }
.js-hero__meta { font-size: 12px; color: var(--light); display: flex; gap: 10px; flex-wrap: wrap; }
.js-hero__btn { display: inline-flex; background: #1c6eb3; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 9px 20px; margin-top: 14px; }
.js-hero__sidebar { display: flex; flex-direction: column; gap: 3px; }
.js-hero__side { background: var(--navy2); padding: 15px 17px; display: flex; gap: 12px; border-left: 3px solid transparent; transition: all .2s; flex: 1; text-decoration: none; }
.js-hero__side:hover { background: var(--navy3); border-left-color: #1c6eb3; }
.js-hero__side-num { font-family: var(--fh); font-size: 28px; font-weight: 900; color: rgba(28,110,179,.3); line-height: 1; min-width: 26px; }
.js-hero__side-cat { font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #2a82d0; margin-bottom: 4px; }
.js-hero__side-title { font-size: 13px; font-weight: 700; color: #cbd5e1; line-height: 1.38; }
.js-hero__side-date { font-size: 11px; color: var(--light); margin-top: 4px; }

/* ── CARDS ── */
.js-card { background: #fff; border: 1px solid var(--border); overflow: hidden; transition: all .2s; display: flex; flex-direction: column; text-decoration: none; color: inherit; width: 100%; }
.js-card:hover { border-color: #1c6eb3; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(28,110,179,.12); }
.js-card__img { aspect-ratio: 16/9; overflow: hidden; background: #e8f2fb; width: 100%; }
.js-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.js-card:hover .js-card__img img { transform: scale(1.05); }
.js-card__placeholder { width: 100%; height: 160px; display: flex; align-items: center; justify-content: center; font-size: 40px; background: linear-gradient(135deg, #e8f2fb, #c8dff5); }
.js-card__body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; }
.js-card__cat { font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #1c6eb3; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.js-card__cat::before { content: ''; width: 12px; height: 2px; background: #1c6eb3; display: inline-block; }
.js-card__title { font-family: var(--fh); font-size: 15px; font-weight: 700; line-height: 1.25; color: var(--navy); margin-bottom: 8px; flex: 1; transition: color .2s; }
.js-card:hover .js-card__title { color: #1c6eb3; }
.js-card__meta { font-size: 11px; color: var(--light); display: flex; gap: 10px; padding-top: 10px; border-top: 1px solid var(--border); margin-top: auto; }

/* ── INTRO ── */
.js-intro { background: linear-gradient(135deg, #0b1120 0%, #0d1e3a 100%); padding: 48px 40px; margin-bottom: 32px; min-height: 380px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; position: relative; overflow: hidden; }
.js-intro__title { font-family: var(--fh); font-size: clamp(20px,2.5vw,30px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 10px; }
.js-intro__title .accent { color: #2a82d0; }
.js-intro__body { font-size: 14px; color: #94a3b8; line-height: 1.7; }
.js-intro__img { overflow: hidden; aspect-ratio: 1/1; max-width: 380px; width: 100%; margin-left: auto; }
.js-intro__img img { width: 100%; height: 100%; object-fit: contain; }

/* ── SPORT CARDS ── */
.js-sport-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 32px; }
.js-sport-card { border: 1px solid var(--border); overflow: hidden; display: block; text-decoration: none; transition: all .2s; background: #fff; }
.js-sport-card:hover { border-color: #1c6eb3; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(28,110,179,.12); }
.js-sport-card__img { aspect-ratio: 16/9; overflow: hidden; width: 100%; }
.js-sport-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .3s; }
.js-sport-card:hover .js-sport-card__img img { transform: scale(1.04); }
.js-sport-card__body { padding: 14px 16px; }
.js-sport-card__name { font-family: var(--fh); font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; transition: color .2s; }
.js-sport-card:hover .js-sport-card__name { color: #1c6eb3; }
.js-sport-card__desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 8px; }
.js-sport-card__link { font-size: 11px; font-weight: 800; color: #1c6eb3; letter-spacing: .08em; text-transform: uppercase; }

/* ── ATHLETE INTRO ── */
.js-athlete-intro { background: var(--off); border: 1px solid var(--border); border-left: 4px solid #1c6eb3; padding: 18px 22px; margin-bottom: 20px; }
.js-athlete-intro__title { font-family: var(--fh); font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.js-athlete-intro ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.js-athlete-intro ul li { font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.js-athlete-intro ul li::before { content: '→'; color: #1c6eb3; font-weight: 800; flex-shrink: 0; }

/* ── DARK SECTIONS ── */
.js-featured-box { background: #0b1120; padding: 24px 28px; margin-bottom: 32px; border-left: 4px solid #1c6eb3; }
.js-featured-box__title { font-family: var(--fh); font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.js-featured-items { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.js-feat-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.06); padding: 14px; }
.js-feat-item__icon { font-size: 20px; margin-bottom: 6px; }
.js-feat-item__title { font-family: var(--fh); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.js-feat-item__desc { font-size: 12px; color: #94a3b8; line-height: 1.5; }
.js-multimedia { background: linear-gradient(135deg, #0d1e3a, #0b1120); border: 1px solid rgba(28,110,179,.18); padding: 24px 28px; margin-bottom: 32px; }
.js-mm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 12px; }
.js-mm-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.05); padding: 14px; }
.js-mm-item__icon { font-size: 20px; margin-bottom: 6px; }
.js-mm-item__title { font-family: var(--fh); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.js-mm-item__desc { font-size: 12px; color: #94a3b8; line-height: 1.5; }
.js-community { display: grid; grid-template-columns: 1fr 1fr; background: #0b1120; border: 1px solid rgba(28,110,179,.12); margin-bottom: 32px; }
.js-comm-col { padding: 24px 26px; }
.js-comm-col:first-child { border-right: 1px solid rgba(255,255,255,.05); }
.js-comm-title { font-family: var(--fh); font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.js-comm-body { font-size: 13px; color: #94a3b8; line-height: 1.7; }
.js-comm-items { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.js-comm-item { display: flex; gap: 10px; align-items: flex-start; }
.js-comm-icon { font-size: 17px; flex-shrink: 0; }
.js-comm-item-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.js-comm-item-desc { font-size: 12px; color: #94a3b8; line-height: 1.5; }
.js-conclusion { background: linear-gradient(135deg, #0b1120, #0d1e3a); padding: 26px 30px; margin-bottom: 32px; }
.js-conclusion__title { font-family: var(--fh); font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.js-conclusion__body { font-size: 14px; color: #94a3b8; line-height: 1.75; }
.js-conclusion__body p { margin-bottom: 10px; }

/* ── BETTING ── */
.js-betting { background: var(--off); border: 1px solid var(--border); padding: 22px 26px; margin-bottom: 32px; }
.js-betting__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.js-betting__title { font-family: var(--fh); font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.js-betting__body { font-size: 13px; color: var(--muted); line-height: 1.7; }
.js-betting__disclaimer { font-size: 12px; color: #1c6eb3; background: #e8f2fb; border-left: 3px solid #1c6eb3; padding: 8px 14px; margin-top: 10px; }
.js-pred-label { font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: #1c6eb3; margin-bottom: 10px; }
.js-pred-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.js-pred-card { background: #fff; border: 1px solid var(--border); padding: 14px; display: block; text-decoration: none; transition: all .2s; }
.js-pred-card:hover { border-color: #1c6eb3; }
.js-pred-card__cat { font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #1c6eb3; margin-bottom: 6px; display: block; }
.js-pred-card__title { font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 5px; }
.js-pred-card:hover .js-pred-card__title { color: #1c6eb3; }
.js-pred-card__meta { font-size: 11px; color: var(--light); }

/* ── SIDEBAR ── */
.js-sidebar { min-width: 0; }
.js-sidebar .widget { margin-bottom: 24px; background: transparent; padding: 0; border: none; }
.js-sidebar .widget-title { font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: #1c6eb3; border-bottom: 1px solid var(--border); padding-bottom: 9px; margin-bottom: 12px; }
.js-sb-ad { display: block; background: linear-gradient(160deg, #0b1120, #0d1e3a); padding: 20px; text-align: center; border: none; text-decoration: none; margin-bottom: 24px; }
.js-sb-ad__label { font-size: 9px; color: var(--light); letter-spacing: .14em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.js-sb-ad__title { font-family: var(--fh); font-size: 24px; font-weight: 900; color: #fff; letter-spacing: .04em; display: block; }
.js-sb-ad__sub { font-size: 12px; color: #7bb3e0; display: block; margin-bottom: 4px; }
.js-sb-ad__img { width: 100%; margin: 10px 0; }
.js-sb-ad__btn { display: inline-block; background: #1c6eb3; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 8px 18px; }
.js-sb-post { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); text-decoration: none; align-items: flex-start; }
.js-sb-post:last-child { border-bottom: none; }
.js-sb-post__thumb { width: 62px; height: 48px; flex-shrink: 0; overflow: hidden; background: #e8f2fb; }
.js-sb-post__thumb img { width: 100%; height: 100%; object-fit: cover; }
.js-sb-post__ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 18px; background: linear-gradient(135deg, #e8f2fb, #c8dff5); }
.js-sb-post__cat { font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #1c6eb3; display: block; }
.js-sb-post__title { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.35; margin-top: 2px; transition: color .2s; display: block; }
.js-sb-post:hover .js-sb-post__title { color: #1c6eb3; }
.js-sb-post__date { font-size: 10px; color: var(--light); margin-top: 3px; display: block; }

/* ── FOOTER ── */
.js-footer, #colophon { background: var(--navy); border-top: 3px solid #1c6eb3; }
.js-footer__main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; max-width: 1280px; margin: 0 auto; padding: 48px 48px 36px; }
.js-footer__logo { font-family: var(--fh); font-size: 26px; font-weight: 900; color: #fff; display: block; margin-bottom: 4px; text-decoration: none; }
.js-footer__tagline { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #374151; margin-bottom: 10px; display: block; }
.js-footer__desc { font-size: 13px; color: #374151; line-height: 1.65; margin-bottom: 16px; }
.js-footer__socials { display: flex; gap: 8px; }
.js-footer__socials a { width: 30px; height: 30px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); color: #374151; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; transition: all .2s; }
.js-footer__socials a:hover { background: #1c6eb3; border-color: #1c6eb3; color: #fff; }
.js-footer__col-title { font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: #fff; border-bottom: 1px solid rgba(255,255,255,.05); padding-bottom: 9px; margin-bottom: 12px; display: block; }
.js-footer__col ul { list-style: none; padding: 0; }
.js-footer__col ul li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.03); }
.js-footer__col ul li:last-child { border-bottom: none; }
.js-footer__col ul li a { font-size: 13px; color: #374151; text-decoration: none; transition: color .2s; }
.js-footer__col ul li a:hover { color: #7bb3e0; }
.js-footer__bottom { background: #060a12; border-top: 1px solid rgba(255,255,255,.03); }
.js-footer__bottom-inner { max-width: 1280px; margin: 0 auto; padding: 13px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.js-footer__copy { font-size: 11px; color: #1f2937; letter-spacing: .04em; }
.js-footer__copy a { color: #1f2937; text-decoration: none; }
.js-footer__copy a:hover { color: #7bb3e0; }
.js-footer__pagcor { font-size: 10px; color: #1f2937; letter-spacing: .06em; }

/* ── BACK TO TOP ── */
.js-back-top { position: fixed; bottom: 22px; right: 22px; width: 38px; height: 38px; background: #1c6eb3; color: #fff; border: none; font-size: 15px; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .2s; z-index: 9999; cursor: pointer; }
.js-back-top.show { opacity: 1; visibility: visible; }
.js-back-top:hover { background: #155a94; transform: translateY(-2px); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .js-grid-4 { grid-template-columns: repeat(2,1fr); }
  .js-sport-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1024px) {
  .js-topbar { padding: 6px 24px; }
  .js-header, #masthead { padding: 0 24px; }
  .js-ticker { padding: 6px 24px; }
  .js-sports-bar { grid-template-columns: repeat(3,1fr); }
  .js-homepage-body .wrap { padding: 0 24px; }
  .js-two-col { grid-template-columns: 1fr; }
  .js-hero { grid-template-columns: 1fr; }
  .js-intro { grid-template-columns: 1fr; }
  .js-intro__img { display: none; }
  .js-community { grid-template-columns: 1fr; }
  .js-comm-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); }
  .js-betting__intro { grid-template-columns: 1fr; }
  .js-featured-items, .js-mm-grid { grid-template-columns: repeat(2,1fr); }
  .js-footer__main { grid-template-columns: 1fr 1fr; padding: 36px 24px 28px; gap: 28px; }
}
@media (max-width: 768px) {
  .js-header, #masthead { padding: 0 16px; height: 60px; }
  .js-menu-toggle { display: flex; }
  .js-topbar { padding: 6px 16px; }
  .js-topbar__date { display: none; }
  .js-ticker { padding: 6px 16px; }
  .js-sports-bar {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-bottom: 2px solid #1c6eb3;
  }
  .js-sports-bar::-webkit-scrollbar { display: none; }
  .js-sport-tab { flex: 0 0 auto; min-width: 80px; padding: 10px 8px; }
  .js-homepage-body .wrap { padding: 0 16px; }
  .js-grid-4, .js-grid-3, .js-grid-2 { grid-template-columns: 1fr; }
  .js-sport-cards { grid-template-columns: 1fr; }
  .js-pred-grid { grid-template-columns: 1fr; }
  .js-featured-items, .js-mm-grid { grid-template-columns: 1fr; }
  .js-footer__main { grid-template-columns: 1fr; }
  .js-hero { display: flex; flex-direction: column; }
  .js-hero__main { order: 1; min-height: 300px; width: 100%; }
  .js-hero__sidebar { order: 2; flex-direction: column; width: 100%; }
  .js-hero__side { width: 100%; }
  .js-nav__menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: #fff;
    border-top: 2px solid #1c6eb3;
    box-shadow: 0 8px 24px rgba(11,17,32,.1);
    z-index: 9999;
    padding: 8px 0;
  }
  .js-nav__menu.open { display: flex; }
  .js-nav__menu li > a { padding: 13px 20px; border-bottom: 1px solid #f1f5f9; border-radius: 0; width: 100%; font-size: 13px; }
  .js-search-bar { padding: 10px 16px; }
}

/* ================================================================
   SEO HEADING STRUCTURE — PROPER H1/H2 HIERARCHY
   ================================================================ */

/* Homepage H1 = site tagline in intro section */
.js-intro__title {
  font-family: var(--fh);
  font-size: clamp(20px,2.5vw,30px);
  font-weight: 900;
  color: #ffffff !important;
  line-height: 1.1;
  margin-bottom: 10px;
}

/* Hero title is NOT H1 anymore (just a styled div) */
.js-hero__title {
  font-family: var(--fh);
  font-size: clamp(26px,3.5vw,44px);
  font-weight: 900;
  line-height: 1.05;
  color: #7bb3e0 !important;
  margin-bottom: 12px;
}

/* Card titles are now H2 (not H3) */
.js-card__title,
h2.js-card__title {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 8px;
  flex: 1;
  transition: color .2s;
}

.js-card:hover .js-card__title,
.js-card:hover h2.js-card__title {
  color: #1c6eb3;
}

/* Section labels are NOT headings (spans/divs only) */
.js-sec-label__text {
  font-family: var(--fh);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
