/* FULLWIDTH GLOBAL */
.bsu-home-fullwidth{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  overflow:hidden;
}

.bsu-home-fullwidth .bsu-container{
  max-width:1440px;
  width:100%;
  margin:0 auto;
  padding:0 28px;
}
/* ===============================
   QUICK LINKS (HOME)
=============================== */

.bsu-quick-links-grid-pro{
  display:grid;
  grid-template-columns:repeat(4,minmax(220px,1fr));
  gap:22px;
  margin-top:50px;
  width:100%;
}

/* CARD */

.bsu-link-card-pro{
  position:relative;
  padding:26px;
  border-radius:30px;

  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 18px 45px rgba(15,23,42,.07);

  transition:.22s ease;
  overflow:hidden;
}

.bsu-link-card-pro:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 60px rgba(15,23,42,.12);
}

/* subtle glow effect */
.bsu-link-card-pro::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(120deg, transparent, rgba(244,198,34,.12), transparent);
  opacity:0;
  transition:.3s ease;
}

.bsu-link-card-pro:hover::after{
  opacity:1;
}

/* ICON / EMOJI */

.bsu-link-icon{
  width:58px;
  height:58px;
  border-radius:20px;
  background:#eef3fb;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:26px;
  margin-bottom:16px;
}

/* TITLE */

.bsu-link-card-pro h3{
  margin:0 0 6px;
  font-size:1.15rem;
  color:var(--bsu-text);
  letter-spacing:-.02em;
}

/* DESC */

.bsu-link-card-pro p{
  margin:0;
  font-size:.9rem;
  color:var(--bsu-text-soft);
  line-height:1.6;
}

/* META */

.bsu-link-meta{
  margin-top:16px;

  display:inline-flex;
  align-items:center;

  min-height:32px;
  padding:0 10px;

  border-radius:999px;
  background:#f7f9fd;

  color:var(--bsu-theme);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

/* LINK (full clickable card) */

.bsu-link-card-pro a{
  position:absolute;
  inset:0;
  z-index:5;
  text-indent:-9999px;
}

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

@media(max-width:1024px){

  .bsu-quick-links-grid-pro{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

}

@media(max-width:640px){

  .bsu-quick-links-grid-pro{
    grid-template-columns:1fr;
  }

  .bsu-link-card-pro{
    padding:22px;
    border-radius:26px;
  }

  .bsu-link-icon{
    width:50px;
    height:50px;
    border-radius:16px;
    font-size:22px;
  }

}
/* ===============================
   HERO PAGE - BLESSSPORT UI PRO
=============================== */

.bsu-hero{
  position:relative;
  overflow:hidden;
  padding:34px 0 76px;
  border-radius:0 0 38px 38px !important;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.08), transparent 30%),
    radial-gradient(circle at 82% 70%, rgba(244,198,34,.14), transparent 34%),
    linear-gradient(135deg, #081028 0%, var(--bsu-theme) 55%, #31458c 100%);
  color:transparent;
  box-shadow:0 28px 70px rgba(15,23,42,.18);
}

.bsu-hero .bsu-container{
  width:min(1200px, calc(100% - 48px));
  margin:0 auto;
}

/* NAV */
.bsu-hero-nav{
  position:relative;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:50px;
  padding:16px 20px;
  border-radius:28px;
  background:rgba(8,16,40,.40);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(16px);
  box-shadow:0 18px 44px rgba(0,0,0,.16);
}

.bsu-hero-brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.bsu-hero-brand img{
  width:58px !important;
  height:58px !important;
  object-fit:contain;
  flex:0 0 auto;
}

.bsu-hero-brand strong{
  display:block;
  color:#fff;
  line-height:1.1;
  font-weight:950;
}

.bsu-hero-brand span{
  display:block;
  margin-top:4px;
  color:rgba(255,255,255,.68);
  font-size:.78rem;
  line-height:1.2;
}

.bsu-hero-menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}

.bsu-nav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  color:rgba(255,255,255,.86);
  text-decoration:none;
  font-weight:850;
  transition:.2s ease;
}

.bsu-nav-link:hover{
  color:#fff;
  background:rgba(255,255,255,.10);
}

.bsu-nav-cta{
  margin-left:6px;
  min-height:42px !important;
  padding:0 18px !important;
  border-radius:999px !important;
  background:var(--bsu-accent) !important;
  color:#162457 !important;
  font-weight:950 !important;
  box-shadow:0 12px 28px rgba(244,198,34,.25) !important;
}

.bsu-nav-cta:hover{
  background:#ffd84d !important;
  transform:translateY(-1px);
}

/* MOBILE TOGGLE */
.bsu-nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border:0;
  border-radius:16px;
  background:rgba(255,255,255,.12);
  cursor:pointer;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
}

.bsu-nav-toggle span{
  width:18px;
  height:2px;
  background:#fff;
  border-radius:999px;
}

/* HERO GRID */
.bsu-hero-grid-v2{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:48px;
  align-items:center;
}

.bsu-hero-left{
  max-width:760px;
}

.bsu-hero-tag{
  margin-bottom:18px;
  color:rgba(255,255,255,.82);
  font-size:.95rem;
  font-weight:850;
}

.bsu-hero-left h1{
  margin:0 0 24px;
  color:#fff;
  font-size:clamp(3.4rem, 5.7vw, 6rem);
  line-height:.92;
  letter-spacing:-.065em;
}

.bsu-hero-desc{
  max-width:680px;
  margin:0 0 28px;
  color:rgba(255,255,255,.82);
  font-size:1.08rem;
  line-height:1.75;
}

.bsu-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.bsu-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  text-decoration:none;
  font-weight:950;
  transition:.2s ease;
}

.bsu-btn-primary{
  background:var(--bsu-accent);
  color:#162457;
  box-shadow:0 16px 34px rgba(244,198,34,.28);
}

.bsu-btn-primary:hover{
  background:#ffd84d;
  transform:translateY(-1px);
}

.bsu-btn-secondary{
  background:#fff;
  color:var(--bsu-theme);
  box-shadow:0 12px 28px rgba(15,23,42,.14);
}

.bsu-btn-secondary:hover{
  transform:translateY(-1px);
}

.bsu-hero-meta{
  color:rgba(255,255,255,.62);
  font-size:.95rem;
  line-height:1.6;
}

/* PANEL */
.bsu-hero-panel{
  padding:30px;
  border-radius:34px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(16px);
  box-shadow:0 28px 70px rgba(0,0,0,.16);
}

.bsu-panel-header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  color:#fff;
  font-weight:850;
}

.bsu-panel-header strong{
  margin-left:auto;
  color:#fff;
  font-weight:950;
}

.bsu-status-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--bsu-accent);
  box-shadow:0 0 0 6px rgba(244,198,34,.18);
}

.bsu-panel-desc{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.7;
}

/* COUNTDOWN */
.bsu-countdown{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin:24px 0 18px;
}

.bsu-countdown > div{
  padding:18px 8px;
  border-radius:20px;
  background:#eef3fb;
  color:var(--bsu-text);
  text-align:center;
}

.bsu-countdown strong{
  display:block;
  margin-bottom:7px;
  color:#0f172a;
  font-size:1.65rem;
  line-height:1;
  font-weight:950;
}

.bsu-countdown span{
  display:block;
  color:#64748b;
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

/* PANEL GRID */
.bsu-panel-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.bsu-panel-grid div{
  padding:15px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.08);
}

.bsu-panel-grid span{
  display:block;
  color:rgba(255,255,255,.66);
  font-size:.82rem;
  font-weight:800;
}

.bsu-panel-grid strong{
  display:block;
  margin-top:5px;
  color:#fff;
  line-height:1.35;
}

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

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

  .bsu-hero-left{
    max-width:100%;
  }
}

@media(max-width:920px){
  .bsu-hero-nav{
    flex-wrap:wrap;
  }

  .bsu-nav-toggle{
    display:flex;
    margin-left:auto;
  }

  .bsu-hero-menu{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding-top:10px;
  }

  .bsu-hero-nav.is-open .bsu-hero-menu{
    display:flex;
  }

  .bsu-nav-link,
  .bsu-nav-cta{
    width:100%;
    justify-content:center;
    margin-left:0;
  }
}

@media(max-width:680px){
  .bsu-hero{
    padding:24px 0 52px;
    border-radius:0 0 28px 28px;
  }

  .bsu-hero .bsu-container{
    width:min(1200px, calc(100% - 24px));
  }

  .bsu-hero-nav{
    margin-bottom:32px;
    padding:12px 14px;
    border-radius:20px;
  }

  .bsu-hero-brand img{
    width:46px !important;
    height:46px !important;
  }

  .bsu-hero-brand strong{
    font-size:.92rem;
  }

  .bsu-hero-brand span{
    display:none;
  }

  .bsu-hero-grid-v2{
    gap:28px;
  }

  .bsu-hero-left{
    text-align:center;
  }

  .bsu-hero-left h1{
    font-size:clamp(2.8rem, 13vw, 4rem);
  }

  .bsu-hero-left h1 br{
    display:none;
  }

  .bsu-hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .bsu-btn{
    width:100%;
  }

  .bsu-hero-panel{
    padding:22px;
    border-radius:26px;
  }

  .bsu-panel-header{
    flex-wrap:wrap;
  }

  .bsu-panel-header strong{
    width:100%;
    margin-left:0;
  }

  .bsu-countdown{
    gap:7px;
  }

  .bsu-countdown > div{
    padding:12px 5px;
    border-radius:16px;
  }

  .bsu-countdown strong{
    font-size:1.28rem;
  }

  .bsu-countdown span{
    font-size:.58rem;
  }

  .bsu-panel-grid{
    grid-template-columns:1fr;
  }
}
/* ===============================
   HOME V4 - BLESSSPORT UI
=============================== */

.bsu-home-v4{
  padding-bottom:80px;
}

/* ===============================
   HERO (USA EL GLOBAL)
=============================== */

.bsu-hero{
  border-radius:0 0 34px 34px;
}

/* ===============================
   GLOBAL SECTION SPACING
=============================== */

.bsu-section{
  padding:60px 0;
}

.bsu-container{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
}

/* ===============================
   GLOBAL HEADER (UNIFICADO)
=============================== */

.bsu-section-head{
  margin-bottom:32px;
}

.bsu-section-head-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.bsu-section-head-actions{
  display:flex;
  gap:10px;
}

/* ===============================
   INTRO CARD
=============================== */

.bsu-v4-intro-card{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:30px;

  padding:40px;
  border-radius:34px;

  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 25px 60px rgba(15,23,42,.08);
}

.bsu-v4-intro-card h2{
  margin:0 0 12px;
  font-size:2rem;
  line-height:1.15;
  letter-spacing:-.03em;
}

.bsu-v4-intro-card p{
  margin:0;
  color:var(--bsu-text-soft);
  line-height:1.7;
}

/* STATS */

.bsu-v4-intro-stats{
  display:grid;
  gap:16px;
}

.bsu-v4-intro-stats div{
  padding:18px;
  border-radius:20px;
  background:#f7f9fd;
  text-align:center;
}

.bsu-v4-intro-stats strong{
  display:block;
  font-size:1.8rem;
  color:var(--bsu-theme);
}

.bsu-v4-intro-stats span{
  font-size:.85rem;
  color:var(--bsu-text-soft);
}

/* ===============================
   GROUPS (FIX IMPORTANTE)
=============================== */

#ibco-groups-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:22px;
}

.bsu-v4-group-card{
  padding:28px;
  border-radius:30px;
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 18px 45px rgba(15,23,42,.07);
}

.bsu-v4-group-card h3{
  margin:0 0 14px;
  font-size:1.2rem;
  color:var(--bsu-text);
}



/* ===============================
   BUTTONS / PILLS
=============================== */

.bsu-pill{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:#eaf0fb;
  color:var(--bsu-theme);
  font-size:.85rem;
  font-weight:800;
}

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

@media(max-width:1024px){

  .bsu-quick-links-grid-pro{
    grid-template-columns:repeat(2,minmax(220px,1fr));
  }

  .bsu-v4-intro-card{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){

  .bsu-section{
    padding:40px 0;
  }

  .bsu-container{
    width:min(100%, calc(100% - 24px));
  }

  #ibco-groups-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:520px){

  .bsu-quick-links-grid-pro{
    grid-template-columns:1fr;
  }
}
/* HERO FIX FINAL */
.bsu-hero.bsu-hero-v2.bsu-hero-full{
  width:100vw !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;

  min-height:680px;
  padding:32px 0 110px !important;
  border-radius:0 0 34px 34px !important;
  overflow:hidden !important;

  background:
    radial-gradient(circle at 18% 18%, rgba(244,198,34,.28), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(59,130,246,.24), transparent 36%),
    linear-gradient(135deg,#06102b 0%,#101d49 52%,#243f8f 100%) !important;
}

.bsu-hero.bsu-hero-v2.bsu-hero-full::before{
  opacity:.18 !important;
}

.bsu-hero.bsu-hero-v2.bsu-hero-full::after{
  height:120px !important;
  background:linear-gradient(to bottom, transparent, #f3f6fb) !important;
}

.bsu-hero.bsu-hero-v2.bsu-hero-full .bsu-container{
  max-width:1480px !important;
  padding-left:72px !important;
  padding-right:72px !important;
}

.bsu-hero-grid-v2{
  padding-top:78px !important;
  align-items:center !important;
}

.bsu-hero-left h1{
  max-width:720px;
  font-size:clamp(4rem, 6.6vw, 7.2rem) !important;
  line-height:.92 !important;
}

.bsu-hero-desc{
  max-width:720px;
  font-size:1.15rem !important;
  line-height:1.7 !important;
}

.bsu-hero-panel{
  transform:translateY(20px);
}

@media (max-width:768px){
  .bsu-hero.bsu-hero-v2.bsu-hero-full{
    min-height:auto;
    padding:22px 0 70px !important;
    border-radius:0 0 26px 26px !important;
  }

  .bsu-hero.bsu-hero-v2.bsu-hero-full .bsu-container{
    padding-left:22px !important;
    padding-right:22px !important;
  }

  .bsu-hero-grid-v2{
    padding-top:44px !important;
  }

  .bsu-hero-left h1{
    font-size:clamp(3rem, 13vw, 4.4rem) !important;
  }
}
/* ===============================
   GROUP STAGE PRO - HOME V4
=============================== */

#bsu-groups{
  padding-top:36px;
  padding-bottom:36px;
}

#bsu-groups .bsu-section-head{
  margin-bottom:20px;
}

#ibco-groups-grid.bsu-two-col{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.bsu-v4-group-card{
  padding:20px !important;
  border-radius:28px !important;
  background:#fff !important;
  border:1px solid rgba(15,23,42,.08) !important;
  box-shadow:0 18px 50px rgba(15,23,42,.08) !important;
}

.bsu-v4-group-card h3{
  margin:0 0 16px !important;
  font-size:1.2rem !important;
  font-weight:950 !important;
  color:#0f172a !important;
}

.bsu-home-group-list{
  display:grid;
  gap:12px;
}

.bsu-home-group-team{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px;
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff,#f7f9fd);
  border:1px solid rgba(15,23,42,.07);
}

.bsu-home-group-team img,
.bsu-home-group-avatar{
  width:58px !important;
  height:58px !important;
  min-width:58px !important;
  border-radius:18px;
  background:#eef3fb;
  display:flex;
  align-items:center;
  justify-content:center;
  object-fit:contain !important;
  padding:6px;
  color:#162457;
  font-weight:950;
  font-size:1.25rem;
  border:1px solid rgba(15,23,42,.06);
}

.bsu-home-group-team strong{
  display:block;
  color:#0f172a;
  font-size:1rem;
  line-height:1.2;
  font-weight:950;
}

.bsu-home-group-team span{
  display:block;
  margin-top:5px;
  color:#64748b;
  font-size:.84rem;
  font-weight:800;
}

#bsu-groups .bsu-muted{
  margin:0;
  padding:18px;
  border-radius:20px;
  background:#f7f9fd;
  color:#64748b;
  font-weight:800;
}

@media (max-width:768px){
  #ibco-groups-grid.bsu-two-col{
    grid-template-columns:1fr;
  }

  .bsu-home-group-team img,
  .bsu-home-group-avatar{
    width:52px !important;
    height:52px !important;
    min-width:52px !important;
  }
}
/* ===============================
   FOOTER PRO FIX
=============================== */

.bsu-footer,
.bsu-site-footer{
  margin-top:48px !important;
  padding:34px 0 !important;
  background:#07102b !important;
  color:#fff !important;
  width:100vw !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
}

.bsu-footer .bsu-container,
.bsu-site-footer .bsu-container{
  max-width:1480px !important;
  padding-left:64px !important;
  padding-right:64px !important;
  margin:0 auto !important;
}

.bsu-footer a,
.bsu-site-footer a{
  color:#fff !important;
  font-weight:800;
}

.bsu-footer strong,
.bsu-site-footer strong{
  color:#fff !important;
  font-size:1rem;
}

.bsu-footer p,
.bsu-site-footer p{
  color:rgba(255,255,255,.72) !important;
}