/* Sprint 71: Standard Golden Girls site header */
.gg-site-header{
  position:sticky;
  top:0;
  z-index:9999;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px clamp(18px,4vw,48px);
  background:rgba(3,3,3,.94);
  border-bottom:1px solid rgba(214,178,99,.28);
  box-shadow:0 18px 42px rgba(0,0,0,.28);
  backdrop-filter:blur(14px);
}
.gg-site-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  text-decoration:none;
  min-width:max-content;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.gg-site-brand img{
  width:46px;
  height:46px;
  object-fit:contain;
  display:block;
}
.gg-site-brand span{
  font-size:clamp(18px,2vw,25px);
  line-height:1;
}
.gg-site-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex-wrap:nowrap;
}
.gg-site-nav a{
  color:rgba(255,255,255,.82);
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  font-weight:850;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition:background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease;
}
.gg-site-nav a:hover,
.gg-site-nav a.is-active{
  color:#f5d37a;
  background:rgba(214,178,99,.11);
  border-color:rgba(214,178,99,.35);
}
.gg-site-menu-toggle{
  display:none;
  width:46px;
  height:42px;
  border-radius:13px;
  border:1px solid rgba(214,178,99,.4);
  background:rgba(214,178,99,.1);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.gg-site-menu-toggle span{
  width:22px;
  height:2px;
  display:block;
  background:#f5d37a;
  border-radius:999px;
  transition:transform .2s ease,opacity .2s ease;
}
body.gg-menu-open{overflow:hidden;}
body.gg-menu-open .gg-site-menu-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg);}
body.gg-menu-open .gg-site-menu-toggle span:nth-child(2){opacity:0;}
body.gg-menu-open .gg-site-menu-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* Neutralize older sprint nav systems when this header is present. */
body:has(.gg-site-header) .gg-player-fixed-header:not(.gg-site-header),
body:has(.gg-site-header) .gg-mobile-nav:not(.gg-site-header),
body:has(.gg-site-header) .gg-universal-header:not(.gg-site-header){display:none!important;}

@media (max-width: 900px){
  .gg-site-header{min-height:68px;padding:11px 16px;}
  .gg-site-brand img{width:42px;height:42px;}
  .gg-site-brand span{font-size:18px;}
  .gg-site-menu-toggle{display:flex;}
  .gg-site-nav{
    position:fixed;
    top:68px;
    left:12px;
    right:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    gap:8px;
    padding:16px;
    max-height:calc(100vh - 88px);
    overflow:auto;
    background:linear-gradient(180deg,rgba(8,8,8,.98),rgba(0,0,0,.96));
    border:1px solid rgba(214,178,99,.32);
    border-radius:20px;
    box-shadow:0 28px 70px rgba(0,0,0,.62);
  }
  body.gg-menu-open .gg-site-nav{display:flex;}
  .gg-site-nav a{
    display:block;
    width:100%;
    padding:15px 16px;
    font-size:14px;
    border-radius:14px;
    background:rgba(255,255,255,.04);
    border-color:rgba(255,255,255,.07);
  }
  .gg-site-nav a.is-active{background:rgba(214,178,99,.16);border-color:rgba(214,178,99,.45);}
}
@media (min-width:901px){.gg-site-nav{display:flex!important;}}
