.header {
  width: 100%;
  min-height: 60px;
  height: auto;
  border-radius: 100px;
  border: 1px inset var(--dark-color-10);
  background-color: var(--dark-color-60);
  justify-content: space-between;
  padding: 6px 12px 6px 6px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

.big-pixel {
  display: flex;
  height: 48px;
  width: 192px;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;
}

.big-pixel img {
  width: 48px;
  height: 48px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

.big-pixel .name {
  height: 100%;
  width: 136px;
  gap: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.big-pixel .name .title {
  font-size: 18px;
  color: var(--white-color);
  font-family: "Kaushan Script", cursive;
  font-weight: 400;
  font-style: normal;
  height: auto;
  line-height: 1.2;
  transition: all 0.3s ease-in-out;
}

.big-pixel .name .subtitle {
  font-size: 14px;
  color: var(--dark-pink-color);
  font-family: "Geist", sans-serif;
  font-weight: 500;
  height: auto;
  line-height: 1.2;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
  max-height: 20px;
  overflow: hidden;
}

.nav {
  display: flex;
  gap: 8px;
  width: 168px;
  height: 36px;
}

.nav img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.controls {
  width: 80px;
  height: 36px;
  gap: 8px;
  display: flex;
}

.item {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  border: 1px solid var(--dark-color-10);
  background-color: var(--dark-color-60);
  align-items: center;
  display: flex;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}

.item:hover {
  background-color: var(--dark-color-80);
  border: 1px solid var(--dark-color-20);
}

.item svg {
  width: 18px;
  height: 18px;
  fill: white;
  fill-opacity: 0.8;
}

.active svg {
  fill: var(--dark-pink-color);
  fill-opacity: 1;
}

.item:hover svg {
  fill: white;
  fill-opacity: 1;
}

.active:hover svg {
  fill: var(--dark-pink-color);
}

.active {
  background-color: var(--dark-pink-10);
  border: 1px solid var(--dark-pink-60);
}

.active:hover {
  background-color: var(--dark-pink-10);
  border: 1px solid var(--dark-pink-60);
}

.header.no-prof {
  padding: 6px;
  min-height: 48px;
  transition: all 0.3s ease-in-out;
}

.header.no-prof .big-pixel {
  width: auto;
  height: 36px;
}

.header.no-prof .big-pixel img {
  width: 36px;
  height: 36px;
}

.header.no-prof .big-pixel .name .subtitle {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.big-pixel img {
  width: 48px;
  height: 48px;
  transition: all 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.big-pixel .name .title {
  font-size: 18px;
  color: var(--white-color);
  font-family: "Kaushan Script", cursive;
  font-weight: 400;
  font-style: normal;
  height: auto;
  line-height: 1.2;
  transition: all 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.big-pixel .name .subtitle {
  font-size: 14px;
  color: var(--dark-pink-color);
  font-family: "Geist", sans-serif;
  font-weight: 500;
  height: auto;
  line-height: 1.2;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
  max-height: 20px;
  overflow: hidden;
}

@media screen and (max-width: 508px) {
  .nav {
    display: none;
  }

  .controls {
    display: none;
  }
}