.ndu-nbb-stats {
    background: #2c0b5a;
    padding: 28px 30px;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.ndu-nbb-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}
.ndu-nbb-head h2{
  margin:0;
  color:#fff;
  font-weight:900;
  letter-spacing:.3px;
  font-size:13px;
}
.ndu-nbb-sub{
  color:rgba(255,255,255,.75);
  font-weight:800;
  font-size:12px;
}

.ndu-nbb-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ndu-nbb-card {
    background: linear-gradient(45deg, #7c00ff, #ffffff24);
    overflow: hidden;
}

.ndu-nbb-card-title{
  padding:10px 12px 8px;
  color:#fff;
  font-weight:900;
  font-size:11px;
  text-transform:uppercase;
  display:flex;
  gap:8px;
  align-items:center;
}
.ndu-nbb-card-title .tri{ opacity:.95; font-size:10px; }

.ndu-nbb-top{
  display:grid;
  grid-template-columns: 74px 1fr 40px;
  gap:10px;
  padding: 8px 12px 10px;
  align-items:center;
  background: rgba(0,0,0,.10);
}

.ndu-nbb-photo img {
  width: 74px;
  height: 100px;
  object-fit: cover;
  background: #0a2f4f;
}

.ndu-nbb-teamlogo img{
  width:34px;
  height:34px;
  object-fit:contain;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  padding: 3px;
}

.ndu-nbb-name {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
}

    .ndu-nbb-name span {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        white-space: normal;
        line-height: 1.15;
        max-width: 190px;
    }

.ndu-nbb-icon{
  width:16px;
  height:16px;
  object-fit:contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
}

.ndu-nbb-value{
  margin-top:4px;
  display:flex;
  align-items:baseline;
  gap:8px;
}
.ndu-nbb-value strong{
  color:#ffd200;
  font-size:20px;
  font-weight:900;
}
.ndu-nbb-value span {
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    opacity: .95;
}

.ndu-nbb-subline{
  padding:8px 12px;
  color:rgba(255,255,255,.92);
  font-weight:800;
  font-size:10px;
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
    .ndu-nbb-subline .mini-team {
        width: 30px;
        height: 30px;
        object-fit: contain;
        background: rgba(255,255,255,.9);
        border-radius: 50%;
        padding: 2px;
    }
.ndu-nbb-subline .dot{ opacity:.7; }

.ndu-nbb-list{ padding: 0 12px 10px; }

.ndu-nbb-row{
  display:grid;
  grid-template-columns: 26px 1fr auto;
  gap:10px;
  align-items:center;
  padding: 7px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  color:#fff;
  font-weight:900;
  font-size:11px;
}
.ndu-nbb-row .pos{ opacity:.9; }
.ndu-nbb-row .nm{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.ndu-nbb-row .val{
  color:#ffd200;
  font-weight:900;
}

.ndu-nbb-more{
  display:block;
  padding: 10px 12px 12px;
  color:#fff;
  font-weight:900;
  font-size:11px;
  text-decoration:none;
  opacity:.95;
}
.ndu-nbb-more:hover{ text-decoration:underline; }

@media (max-width: 1300px){ .ndu-nbb-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px){ .ndu-nbb-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .ndu-nbb-grid{ grid-template-columns: 1fr; } }

/* =========================
   HOME STATS - CAROUSEL (discreto)
   ========================= */
.ndu-nbb-carousel {
    position: relative;
    padding: 0 55px;
}

.ndu-nbb-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 2px 10px;
    scroll-snap-type: x mandatory;
}

    .ndu-nbb-track::-webkit-scrollbar {
        display: none;
    }

.ndu-nbb-card {
    flex: 0 0 320px;
    max-width: 320px;
    scroll-snap-align: start;
    border-radius: 8px;
    border-radius: 8px;
}

/* botões pequenos e sobrepostos */
.nbb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgb(255 255 255 / 37%);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: .75;
    transition: opacity .15s ease, transform .15s ease, background .15s ease;
    z-index: 5;
}

    .nbb-btn:hover {
        opacity: 1;
        background: rgba(255,255,255,.10);
    }

    .nbb-btn:active {
        transform: translateY(-50%) scale(.98);
    }

    .nbb-btn[disabled] {
        opacity: .25;
        cursor: default;
    }

.nbb-prev {
    left: 8px;
}

.nbb-next {
    right: 8px;
}

/* “sigla embaixo da foto” */
.ndu-nbb-photo {
    position: relative;
}

.ndu-nbb-abbr {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.92);
    color: #2b0b59;
    font-weight: 900;
    font-size: 11px;
}

/* ícone (bola) aparecer mesmo se for escuro */
.ndu-nbb-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: invert(1) drop-shadow(0 2px 4px rgba(0,0,0,.25));
}

/* deixa a linha de detalhes respirar e não “atropelar” */
.ndu-nbb-subline {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    flex-wrap: wrap;
    row-gap: 4px;
    font-size: 10px;
}

    .ndu-nbb-subline .meta-sigla {
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.14);
        padding: 2px 8px;
        border-radius: 999px;
    }

/* textos menos “estourados” */
.ndu-nbb-name {
    font-size: 11px;
}

.ndu-nbb-value strong {
    font-size: 22px;
}

.ndu-nbb-row {
    font-size: 10px;
}

.ndu-nbb-card-title img {
    width: 35px;
    height: 35px;
    border-radius: 999px;
    padding: 2px;
    background: white;
}

/* mobile */
@media (max-width: 700px) {

    .ndu-nbb-sub {
        color: rgba(255, 255, 255, .75);
        font-weight: 800;
        font-size: 12px;
        text-align: right;
    }

    .ndu-nbb-track {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 6px 2px 10px;
        scroll-snap-type: x mandatory;
        width: 345px;
    }

    .ndu-nbb-carousel {
        padding: 0;
        width: 315px;
    }

    .nbb-prev {
        left: -15px;
    }

    .nbb-next {
        right: -35px;
    }

    .ndu-nbb-card {
        flex-basis: 315px;
        max-width: 320px;
    }

    .nbb-btn {
        width: 30px;
        height: 30px;
        font-size: 22px;
    }
}