.v110-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, auto);
  align-items: center;
  gap: 10px;
}

.v110-topbar-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.v110-main-nav {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  width: 100%;
  min-width: 0;
}

.v110-main-nav button {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v110-account-shortcut {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  border: 1px solid rgba(105, 244, 177, 0.62);
  border-radius: 13px;
  background: linear-gradient(145deg, #123b43, #102a45);
  color: var(--v110-text);
  padding: 7px 10px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(210, 255, 233, 0.06);
}

.v110-account-shortcut:hover,
.v110-account-shortcut.is-active {
  border-color: var(--v110-mint);
  background: #164c4c;
}

.v110-account-shortcut i {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: var(--v110-mint);
  color: #082017;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.v110-account-shortcut span {
  display: inline;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.v110-coverage-ring {
  grid-template-rows: auto auto;
}

.v110-coverage-ring em {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  margin-top: -2px;
  color: var(--v110-muted);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.v110-coverage-definition strong {
  color: var(--v110-mint);
}

@media (max-width: 720px) {
  .v110-root {
    padding-inline: 12px;
  }

  .v110-topbar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 0 12px;
  }

  .v110-topbar-primary {
    width: 100%;
  }

  .v110-logo {
    min-width: 0;
  }

  .v110-logo em {
    display: none;
  }

  .v110-logo b {
    font-size: 15px;
  }

  .v110-account-shortcut {
    padding: 6px 9px;
  }

  .v110-main-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .v110-main-nav button {
    padding: 9px 5px !important;
    font-size: 10px;
    line-height: 1.2;
  }

  .v110-coverage-sports span {
    align-items: flex-start;
    gap: 8px;
  }

  .v110-coverage-sports span em {
    text-align: right;
    font-size: 9px;
    line-height: 1.35;
  }

  .v110-dashboard-sports button footer {
    align-items: flex-start;
    gap: 6px;
  }

  .v110-dashboard-sports button footer span:last-child {
    text-align: right;
  }

  .v110-dashboard-hero aside em {
    max-width: 150px;
    text-align: center;
    line-height: 1.35;
  }
}

@media (max-width: 390px) {
  .v110-account-shortcut {
    gap: 5px;
    padding: 5px 7px;
  }

  .v110-account-shortcut span {
    display: inline;
    font-size: 10px;
  }

  .v110-main-nav button {
    font-size: 9px;
  }

  .v110-logo > i {
    width: 38px;
    height: 38px;
  }

  .v110-logo b {
    font-size: 14px;
  }

  .v110-coverage-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}