html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: #050505;
  color: #f7f4ec;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-taskbar {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(920px, calc(100% - 32px));
  min-height: 72px;
  padding: 10px 12px 10px 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 174, 42, 0.24);
  border-radius: 18px;
  background: rgba(15, 15, 15, 0.9);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45), 0 0 32px rgba(255, 169, 31, 0.08);
  backdrop-filter: blur(22px);
}

.taskbar-brand,
.taskbar-link {
  color: inherit;
  text-decoration: none;
}

.taskbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.taskbar-logo {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 174, 42, 0.08);
}

.taskbar-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.taskbar-name {
  color: #fff8e7;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.taskbar-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.taskbar-link {
  padding: 11px 14px;
  border-radius: 11px;
  color: rgba(247, 244, 236, 0.66);
  font-size: 0.86rem;
  font-weight: 650;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.taskbar-link:hover,
.taskbar-link:focus-visible,
.taskbar-link.is-active {
  color: #fff8e7;
  background: rgba(255, 174, 42, 0.12);
}

.taskbar-link:focus-visible,
.taskbar-brand:focus-visible {
  outline: 2px solid #ffae2a;
  outline-offset: 3px;
}

.taskbar-link--accent {
  color: #ffbd4b;
}

@media (max-width: 640px) {
  .site-taskbar {
    bottom: 12px;
    gap: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding-left: 10px;
  }

  .taskbar-logo {
    width: 42px;
    height: 42px;
  }

  .taskbar-logo img {
    width: 32px;
    height: 32px;
  }

  .taskbar-name {
    display: none;
  }

  .taskbar-links {
    flex: 1;
    justify-content: space-between;
    gap: 0;
  }

  .taskbar-link {
    padding: 10px 8px;
    font-size: 0.74rem;
  }
}
