.creator-header {
  position: relative;
  z-index: 100;
  background:
    radial-gradient(120% 120% at 8% -28%, rgba(205, 188, 255, 0.44) 0%, rgba(205, 188, 255, 0) 52%),
    radial-gradient(90% 110% at 96% 128%, rgba(158, 138, 255, 0.34) 0%, rgba(158, 138, 255, 0) 58%),
    linear-gradient(142deg, #3a46c9 0%, #4c55dd 44%, #5e63e9 100%);
  border-bottom: 1px solid rgba(201, 190, 255, 0.44);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.creator-header .creator-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.creator-header .creator-brand {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #ffffff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;}

.creator-header .creator-brand::before {
  content: "유피픽";
  font-family: var(--font-body);
  letter-spacing: 0;
}

.creator-header .creator-brand-logo {
  display: none;
  width: auto;
  height: 40px;
}

.creator-header .creator-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.creator-header .creator-links > a,
.creator-header .creator-profile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;}

.creator-header .creator-cash-link {
  white-space: nowrap;
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 700;
  border-color: #2f2f2f;
  background: #1a1a1a;
  margin-left: 2px;
}

.creator-header .creator-cash-link:hover {
  background: #242424;
}

.creator-header .creator-links > a:hover,
.creator-header .creator-links > a.active,
.creator-header .creator-profile-btn:hover,
.creator-header .creator-profile.active .creator-profile-btn {
  background: rgba(255, 255, 255, 0.14);
}

.creator-header .creator-profile {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.creator-header .creator-profile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
}

.creator-header .creator-profile-menu.hidden {
  display: none;
}

.creator-header .creator-profile-menu a {
  color: #111111;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 8px;
  border-radius: 8px;
}

.creator-header .creator-profile-menu a:hover {
  background: #f3f4f6;
}

.creator-header .nav-chat-link {
  position: relative;
}

.creator-header .nav-chat-dot {
  position: absolute;
  top: 2px;
  right: -4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  display: none;
}

.creator-header .nav-chat-link.has-unread .nav-chat-dot,
.creator-header .nav-chat-link.has-unread-chat .nav-chat-dot,
.creator-header .nav-chat-link.has-unread-notice .nav-chat-dot {
  display: block;
}

.creator-header .creator-menu-toggle {
  display: none;
}

@media (max-width: 720px) {
  .creator-header .creator-header-inner {
    padding: 10px 12px;
    min-height: 52px;
  }

  .creator-header .creator-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
  }

  .creator-header .creator-links {
    display: none;
    position: absolute;
    top: calc(100% - 4px);
    right: 12px;
    width: 230px;
    margin-left: 0;
    padding: 8px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid #dce6ff;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(47, 65, 155, 0.13);
    z-index: 1200;
  }

  .creator-header.is-open .creator-links {
    display: flex;
  }

  .creator-header .creator-links > a,
  .creator-header .creator-profile-btn {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    max-width: none;
    color: #1f2b4d;
  }

  .creator-header .creator-links > a:hover,
  .creator-header .creator-links > a.active,
  .creator-header .creator-profile-btn:hover {
    background: #eef2ff;
    color: #2c45b8;
  }

  .creator-header .creator-profile {
    width: 100%;
  }

  .creator-header .creator-profile-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 4px;
    border-color: #dce6ff;
    background: #f8faff;
    box-shadow: none;
  }

  .creator-header .creator-profile-menu a {
    color: #1f2b4d;
  }

  .creator-header .creator-profile-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
  }
}
