header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 14px 44px;
  border-bottom: 1px solid rgba(255, 132, 24, 0.07);
  background: rgba(5, 3, 2, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.logo-container,
.header-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.logo-container {
  gap: 12px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  white-space: nowrap;
}

.logo-link:hover {
  color: var(--text-main);
}

.logo-text {
  color: var(--text-main);
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 2px;
  white-space: nowrap;
}

.nav-links {
  gap: 24px;
  font-size: 0.9rem;
}

.header-actions {
  gap: 24px;
}

.header-actions form {
  display: flex;
  margin: 0;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 132, 24, 0.18);
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.045);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.login-btn:hover {
  color: #140902;
  background: linear-gradient(135deg, var(--accent-orange), #ff9632);
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.16);
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .login-btn {
    height: 36px;
    padding: 0 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 420px) {
  .logo-text {
    font-size: 0.95rem;
    letter-spacing: 1.4px;
  }
}
