/* FBB-LADDER-FRESH-MIXED-WIDGET */

#fbbLadderMixedFresh {
  width: 100%;
  min-width: 0;
  position: relative;
  isolation: isolate;
}

.fbb-ladder-fresh-loading,
.fbb-ladder-fresh-empty,
.fbb-ladder-fresh-error {
  width: 100%;
  padding: 28px 18px;
  border: 1px solid rgba(0, 177, 255, 0.28);
  border-radius: 16px;
  background: #102427;
  color: #d8f7ff;
  text-align: center;
  font-weight: 800;
}

.fbb-ladder-fresh-grid {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

a.fbb-ladder-fresh-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
  padding: 15px;
  overflow: hidden;

  border: 1px solid rgba(0, 177, 255, 0.38);
  border-radius: 15px;

  background:
    linear-gradient(
      145deg,
      rgba(14, 42, 47, 0.98),
      rgba(10, 31, 34, 0.98)
    );

  color: #ffffff;
  text-decoration: none !important;

  cursor: pointer !important;
  pointer-events: auto !important;
  touch-action: manipulation;

  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.18);

  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

a.fbb-ladder-fresh-card:hover,
a.fbb-ladder-fresh-card:focus-visible {
  transform: translateY(-2px);
  border-color: #00ff87;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(0, 255, 135, 0.14);

  outline: none;
}

.fbb-ladder-fresh-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.fbb-ladder-fresh-competition {
  min-width: 0;
  color: #55d9ff;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.fbb-ladder-fresh-status {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(119, 145, 151, 0.24);
  color: #e9fbff;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.fbb-ladder-fresh-status.live {
  background: rgba(255, 55, 72, 0.2);
  color: #ff707d;
}

.fbb-ladder-fresh-matchup {
  min-height: 106px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.fbb-ladder-fresh-team {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}

.fbb-ladder-fresh-visual {
  width: 46px;
  height: 46px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  background: #18383c;
}

.fbb-ladder-fresh-visual img {
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 2;
  display: block;
  object-fit: contain;
}

.fbb-ladder-fresh-initials {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #dffaff;
  font-size: 12px;
  font-weight: 950;
}

.fbb-ladder-fresh-team-name {
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 950;
  text-overflow: ellipsis;
}

.fbb-ladder-fresh-vs {
  color: #8cb1b7;
  font-size: 10px;
  font-weight: 950;
  text-align: center;
}

.fbb-ladder-fresh-kickoff {
  color: #bde7ed;
  font-size: 11px;
  text-align: center;
}

.fbb-ladder-fresh-pick {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 11px;
  border: 1px solid rgba(0, 255, 135, 0.34);
  border-radius: 10px;
  background: rgba(0, 255, 135, 0.09);
}

.fbb-ladder-fresh-pick span,
.fbb-ladder-fresh-meta span {
  color: #83aeb4;
  font-size: 8px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.fbb-ladder-fresh-pick strong {
  color: #00ff87;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 950;
}

.fbb-ladder-fresh-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.fbb-ladder-fresh-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.13);
}

.fbb-ladder-fresh-meta strong {
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.fbb-ladder-fresh-open {
  margin-top: auto;
  color: #5edcff;
  font-size: 11px;
  font-weight: 950;
}

@media (max-width: 900px) {
  .fbb-ladder-fresh-grid {
    grid-template-columns: 1fr;
  }
}

/* FBB-LADDER-CANONICAL-OUTCOME-BEGIN */

.fbb-ladder-fresh-status.won{
  color:#062d1f!important;
  background:#00ff87!important;
  border-color:#00ff87!important;
}

.fbb-ladder-fresh-status.lost{
  color:#ffffff!important;
  background:#dc3545!important;
  border-color:#ff5a68!important;
}

.fbb-ladder-fresh-status.void{
  color:#201700!important;
  background:#ffc857!important;
  border-color:#ffd978!important;
}

.fbb-ladder-fresh-status.finished{
  color:#ffffff!important;
  background:#44506a!important;
  border-color:#667390!important;
}

/* FBB-LADDER-CANONICAL-OUTCOME-END */
