.topbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--primary), #39472a);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 4px 14px rgba(0,0,0,.10);
}

.topbar-inner{
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.topbar-left,
.topbar-right{
  opacity: .92;
}

.topbar-right{
  text-align: right;
}

.topbar-center{
  text-align: center;
  font-weight: 700;
  color: #ebc60e;
  white-space: nowrap;
}

.topbar-inline-timer{
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #fff;
  font-weight: 800;
  margin-left: 4px;
}

.topbar.open .topbar-center{
  color: #c8f7a6;
}

@media (max-width: 980px){
  .topbar-inner{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 6px;
  }

  .topbar-left,
  .topbar-right{
    text-align: center;
  }

  .topbar-center{
    white-space: normal;
  }
}
