/* ===============================
   STANDINGS PAGE (HEADER FIXED)
=============================== */

.bsu-standings-section{
  padding-top:56px;
}

/* ===============================
   HEADER UNIFICADO
=============================== */

.bsu-standings-section .bsu-section-head{
  position:relative;
  overflow:hidden;

  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;

  padding:56px 42px;
  border-radius:34px;

  background:
    radial-gradient(circle at top right, rgba(244,198,34,.20), transparent 30%),
    radial-gradient(circle at bottom left, rgba(59,130,246,.18), transparent 35%),
    linear-gradient(135deg, #081028, #162457 55%, #31458c);

  color:#fff;
  box-shadow:0 28px 70px rgba(15,23,42,.18);
}

.bsu-standings-section .bsu-section-head > *{
  position:relative;
  z-index:2;
}

.bsu-standings-section .bsu-section-kicker{
  margin:0 0 10px;
  color:#f4c622;
  font-size:.78rem;
  font-weight:950;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.bsu-standings-section .bsu-section-head h2{
  margin:0 0 12px;
  color:#fff;
  font-size:clamp(3rem,6vw,5.5rem);
  line-height:.92;
  letter-spacing:-.06em;
}

.bsu-standings-section .bsu-section-head p{
  max-width:760px;
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:1.05rem;
  line-height:1.7;
}

.bsu-standings-section .bsu-pill{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
}

/* ===============================
   ORIGINAL LAYOUT (UNCHANGED)
=============================== */

.bsu-standings-layout{
  display:grid;
  grid-template-columns:.95fr 1.35fr;
  gap:24px;
  align-items:start;
}

.bsu-standings-podium{
  display:grid;
  gap:16px;
}

.bsu-podium-card{
  position:relative;
  padding:24px;
  border-radius:28px;
  color:#fff;
  box-shadow:0 22px 52px rgba(15,23,42,.14);
  overflow:hidden;
}

.bsu-podium-card::after{
  content:"";
  position:absolute;
  inset:auto -20% -40% auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}

.bsu-podium-1{
  background:linear-gradient(135deg, #162457 0%, #31458c 100%);
}

.bsu-podium-2{
  background:linear-gradient(135deg, #334155 0%, #475569 100%);
}

.bsu-podium-3{
  background:linear-gradient(135deg, #7c5a2b 0%, #a97b38 100%);
}

.bsu-podium-rank{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  font-size:.82rem;
  font-weight:800;
  margin-bottom:18px;
}

.bsu-podium-card h3{
  margin:0 0 8px;
  font-size:1.28rem;
  line-height:1.15;
  color:#fff;
}

.bsu-podium-card p{
  margin:0 0 14px;
  color:rgba(255,255,255,.82);
}

.bsu-podium-card strong{
  font-size:1.35rem;
  color:#fff;
}

.bsu-table-wrap-pro{
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  border-radius:30px;
  overflow:auto;
  box-shadow:0 18px 44px rgba(15,23,42,.07);
}

.bsu-table-pro{
  width:100%;
  border-collapse:collapse;
  min-width:720px;
}

.bsu-table-pro thead th{
  padding:18px 20px;
  background:#f7f9fd;
  color:var(--bsu-text-faint);
  text-align:left;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.1em;
}

.bsu-table-pro tbody td{
  padding:18px 20px;
  border-bottom:1px solid rgba(15,23,42,.06);
  color:var(--bsu-text);
  vertical-align:middle;
}

.bsu-table-pro tbody tr:hover{
  background:#fbfcff;
}

.bsu-table-pro tbody tr.is-top-three{
  background:rgba(234,240,251,.55);
}

.bsu-rank-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:999px;
  background:#eef3fb;
  color:var(--bsu-theme);
  font-size:.84rem;
  font-weight:800;
}

.bsu-team-cell{
  display:flex;
  align-items:center;
  gap:12px;
}

.bsu-team-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#cbd5e1;
  flex:0 0 auto;
}

.bsu-team-dot.is-highlight{
  background:var(--bsu-accent);
  box-shadow:0 0 0 5px rgba(244,198,34,.16);
}

.bsu-points{
  color:var(--bsu-theme);
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width:1100px){
  .bsu-standings-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){

  .bsu-standings-section .bsu-section-head{
    flex-direction:column;
    align-items:flex-start;
    padding:38px 26px;
    border-radius:28px;
  }

  .bsu-standings-section .bsu-section-head h2{
    font-size:clamp(2.6rem,12vw,4rem);
  }
}
/* FULLWIDTH GLOBAL */
.bsu-section,
.bsu-container{
  max-width:100% !important;
  width:100% !important;
  padding-left:0px;
  padding-right:0px;
}