/* AmSC USG Bar (secondary header) */

#header-secondary-outer.amsc-usgbar {
  width: 100%;
  position: relative;
  z-index: 100;
  background: rgba(0, 0, 0, 1) !important;
  border-bottom: 1px solid rgba(252, 250, 248, 0.1) !important;
  backdrop-filter: blur(10px);
}

#header-secondary-outer.amsc-usgbar .container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 26px;
  padding-right: 26px;
}

#header-secondary-outer.amsc-usgbar nav {
  display: block;
}

.amsc-usgbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
}

.amsc-usgbar__left,
.amsc-usgbar__center,
.amsc-usgbar__right {
  display: flex;
  align-items: center;
}

/* DOE logo */
.amsc-usgbar__doe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.amsc-usgbar__doeLogo {
  height: 22px;
  width: auto;
  display: block;
}

.amsc-usgbar__flagImg {
  width: 26px;
  height: 16px;
  display: block;
  border-radius: 3px;
  overflow: hidden;
}

/* Center notice */
.amsc-usgbar__center {
  flex: 1;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
}

.amsc-usgbar__officialText {
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .72px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  font-family: var(--font-mono);
}

/* Small US flag */
.amsc-usgbar__flag svg {
  width: 26px;
  height: 16px;
  display: block;
  border-radius: 3px;
  overflow: hidden;
}

.amsc-usgbar__flag svg rect:first-child {
  fill: #ffffff;
}

.amsc-usgbar__flagStripes rect {
  fill: #b22234;
}

.amsc-usgbar__flagCanton {
  fill: #3c3b6e;
}

.amsc-usgbar__flagStars circle {
  fill: rgba(255, 255, 255, 0.92);
}

/* Right clock */
.amsc-usgbar__right {
  justify-content: flex-end;
}

.amsc-usgbar__clock {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  white-space: nowrap;
}

/* Optional secondary nav menu — keep it subtle and not competing */
.amsc-usgbar__menu {
  display: none;
}

/* Mobile */
@media (max-width: 999px) {
  #header-secondary-outer.amsc-usgbar .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .amsc-usgbar__doeLogo {
    height: 20px;
  }

  .amsc-usgbar__officialText {
    white-space: normal;
  }

  .amsc-usgbar__center {
    font-size: 12.5px;
  }
}

@media (max-width: 690px) {
  .amsc-usgbar__center {
    display: none; /* keep it clean on small screens */
  }
}