.header {
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(78, 201, 176, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  height: 60px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  font-family: "Inter", sans-serif;
}
.header-logo .logo-bracket {
  color: #4ec9b0;
  font-size: 24px;
}
.header-logo .logo-text {
  color: #ffffff;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 700px) {
  .header-nav {
    display: none;
  }
}

.nav-link {
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}
.nav-link:hover {
  color: #4ec9b0;
  background: rgba(78, 201, 176, 0.05);
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4ec9b0;
}

.nav-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(78, 201, 176, 0.4);
}

.nav-auth {
  padding: 8px 20px;
  background: rgba(78, 201, 176, 0.1);
  border: 1px solid rgba(78, 201, 176, 0.3);
  border-radius: 8px;
  color: #4ec9b0;
}
.nav-auth:hover {
  background: rgba(78, 201, 176, 0.2);
}

.nav-logout {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}
.nav-logout:hover {
  color: #ff3636;
  background: rgba(255, 54, 54, 0.1);
}

.header-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
@media (max-width: 700px) {
  .header-burger {
    display: flex;
  }
}
.header-burger span {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 25px 15px;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(78, 201, 176, 0.1);
}
.header-mobile-nav.active {
  display: flex;
}
.header-mobile-nav a {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Inter", sans-serif;
  transition: color 0.3s ease;
}
.header-mobile-nav a:hover {
  color: #4ec9b0;
}
.header-mobile-nav a:last-child {
  border-bottom: none;
}/*# sourceMappingURL=header.css.map */