.creativeland-navbar {
  background-color: #000;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.navbar-logo a:hover {
  opacity: 0.8;
}

.navbar-logo-img {
  width: 135px;
  height: auto;
}

.navbar-links {
  display: none;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-dropdown {
  position: relative;
}

.navbar-dropdown-button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-dropdown-button:hover {
  color: #74D1F3;
}

.navbar-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  min-width: 200px;
  margin-top: 0;
  padding-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.navbar-dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
  text-decoration: none;
  text-align: right;
  transition: background 0.3s ease;
}

.navbar-dropdown-item:hover {
  background: #262626;
  color: #74D1F3;
}

.navbar-user-indicator {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.navbar-manage-button {
  background: #74D1F3;
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.navbar-manage-button:hover {
  opacity: 0.9;
}

.navbar-login-button {
  background: transparent;
  border: 1px solid #74D1F3;
  color: #74D1F3;
  border-radius: 6px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar-login-button:hover {
  background: #74D1F3;
  color: #000;
}

@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    gap: 1rem;
  }

  .navbar-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}
