/* Rivals Gauntlet — Global Footer */
:root{
  --rg-footer-bg:#07060b;
  --rg-footer-panel:#0d0a14;
  --rg-footer-text:#f8f5ff;
  --rg-footer-muted:#8f879d;
  --rg-footer-dim:#655e70;
  --rg-footer-line:rgba(255,255,255,.085);
  --rg-footer-purple:#a855f7;
  --rg-footer-purple-2:#c084fc;
}

#globalFooter{
  width:100%;
  flex:0 0 auto;
}

.rg-footer{
  position:relative;
  overflow:hidden;
  border-top:1px solid var(--rg-footer-line);
  background:
    radial-gradient(circle at 16% 0%,rgba(124,58,237,.15),transparent 31%),
    radial-gradient(circle at 88% 110%,rgba(168,85,247,.09),transparent 34%),
    linear-gradient(180deg,#09070f,var(--rg-footer-bg));
  color:var(--rg-footer-text);
  font-family:"Rajdhani",sans-serif;
}

.rg-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:12%;
  right:12%;
  height:1px;
  pointer-events:none;
  background:linear-gradient(90deg,transparent,rgba(192,132,252,.6),transparent);
  box-shadow:0 0 22px rgba(168,85,247,.28);
}

.rg-footer::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.014) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(180deg,black,transparent 82%);
}

.rg-footer__inner{
  position:relative;
  z-index:1;
  width:min(100% - 32px,1440px);
  margin:0 auto;
  padding:34px 0 20px;
}

.rg-footer__main{
  display:grid;
  grid-template-columns:minmax(230px,.85fr) minmax(420px,1.45fr);
  align-items:start;
  gap:50px;
}

.rg-footer__brand{
  min-width:0;
}

.rg-footer__eyebrow{
  display:flex;
  align-items:center;
  gap:9px;
  color:var(--rg-footer-purple-2);
  font-size:9px;
  font-weight:800;
  letter-spacing:1.8px;
  text-transform:uppercase;
}

.rg-footer__eyebrow::before{
  content:"";
  width:26px;
  height:2px;
  background:linear-gradient(90deg,var(--rg-footer-purple),var(--rg-footer-purple-2));
  box-shadow:0 0 12px rgba(168,85,247,.65);
}

.rg-footer__name{
  margin-top:10px;
  font-size:clamp(25px,2.2vw,38px);
  font-weight:800;
  line-height:.92;
  letter-spacing:-.7px;
  text-transform:uppercase;
}

.rg-footer__domain{
  margin-top:8px;
  color:var(--rg-footer-muted);
  font-size:11px;
  font-weight:700;
  letter-spacing:1.1px;
  text-transform:uppercase;
}

.rg-footer__groups{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:34px;
}

.rg-footer__group-title{
  margin:0 0 12px;
  color:var(--rg-footer-dim);
  font-size:9px;
  font-weight:800;
  letter-spacing:1.35px;
  text-transform:uppercase;
}

.rg-footer__links{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:7px 22px;
}

.rg-footer__links--legal{
  grid-template-columns:1fr;
}

.rg-footer__link{
  position:relative;
  width:max-content;
  max-width:100%;
  padding:3px 0;
  color:var(--rg-footer-muted);
  font-size:12px;
  font-weight:700;
  letter-spacing:.3px;
  text-transform:uppercase;
  transition:color .18s ease,transform .18s ease;
}

.rg-footer__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:1px;
  background:var(--rg-footer-purple-2);
  box-shadow:0 0 8px rgba(192,132,252,.55);
  transition:width .18s ease;
}

.rg-footer__link:hover,
.rg-footer__link:focus-visible{
  color:#fff;
  transform:translateX(2px);
}

.rg-footer__link:hover::after,
.rg-footer__link:focus-visible::after{
  width:100%;
}

.rg-footer__bottom{
  min-height:52px;
  margin-top:28px;
  padding-top:15px;
  border-top:1px solid var(--rg-footer-line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.rg-footer__copyright,
.rg-footer__status{
  margin:0;
  color:var(--rg-footer-dim);
  font-size:9px;
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.rg-footer__status{
  display:flex;
  align-items:center;
  gap:7px;
  text-align:right;
}

.rg-footer__status::before{
  content:"";
  width:6px;
  height:6px;
  flex:0 0 6px;
  border-radius:50%;
  background:var(--rg-footer-purple);
  box-shadow:0 0 10px rgba(168,85,247,.7);
}

@media(max-width:820px){
  .rg-footer__inner{padding-top:28px}
  .rg-footer__main{
    grid-template-columns:1fr;
    gap:28px;
  }
  .rg-footer__groups{
    grid-template-columns:1.2fr 1fr;
  }
}

@media(max-width:560px){
  .rg-footer__inner{
    width:min(100% - 22px,1440px);
    padding:25px 0 16px;
  }
  .rg-footer__groups{
    grid-template-columns:1fr;
    gap:24px;
  }
  .rg-footer__links{
    grid-template-columns:1fr 1fr;
    gap:8px 16px;
  }
  .rg-footer__links--legal{
    grid-template-columns:1fr 1fr;
  }
  .rg-footer__bottom{
    align-items:flex-start;
    flex-direction:column;
    gap:7px;
  }
  .rg-footer__status{text-align:left}
}

@media(prefers-reduced-motion:reduce){
  .rg-footer__link,
  .rg-footer__link::after{
    transition:none;
  }
}
