.mobile-hamburger-wrapper {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  left: auto;
  z-index: 2001;
  display: none;
}
.mobile-hamburger-btn {
  background: none;
  border: none;
  border-radius: 0.6rem;
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: none;
  padding: 0;
  transition: transform 0.35s cubic-bezier(0.4,0.2,0.2,1);
}
.mobile-hamburger-btn.rotated {
  transform: rotate(90deg);
}
.hamburger-bar {
  width: 24px;
  height: 0.7px;
  background: rgba(255,255,255,0.7);
  margin: 4px 0;
  border-radius: 2px;
  transition: background 0.18s;
}
.mobile-hamburger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  height: 220px;
  background: linear-gradient(90deg, #8B5CF6 0%, #EC4899 100%);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(139,92,246,0.13);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  z-index: 9999;
  display: none;
  animation: fadeInMenu 0.3s ease;
}
@keyframes fadeInMenu {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-hamburger-content {
  padding: 28px 18px 0 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 140px;
  justify-content: flex-start;
}
.mobile-hamburger-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100vw;
}
.mobile-hamburger-list li {
  margin-bottom: 0;
  padding: 0;
  width: 100%;
}
.mobile-hamburger-list a {
  font-family: 'Pretendard', 'Montserrat', 'Apple SD Gothic Neo', 'Noto Sans KR', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 12px 0 10px 0;
  letter-spacing: 0.01em;
  border-bottom: none;
  background: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: relative;
  max-width: 92vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile-hamburger-list a:hover {
  background: rgba(255,255,255,0.10);
  color: #E3D6FF;
}
.menu-close-x {
  position: absolute;
  top: 12px;
  right: 18px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  background: none;
  border: none;
  box-shadow: none;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  z-index: 1001;
}
@media (max-width: 900px) {
  .mobile-hamburger-wrapper { display: block; }
  .mobile-hamburger-list a.active {
    font-weight: 800;
    color: #fff !important;
    background: rgba(162,89,255,0.13);
    border-radius: 0.9em;
    position: relative;
    box-shadow: none;
    padding-left: 1.2em;
  }
  .mobile-hamburger-list a.active::before {
    content: '';
    display: block;
    position: absolute;
    left: 0.3em;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1.7em;
    border-radius: 3px;
    background: linear-gradient(180deg, #a259ff 0%, #6a00f4 100%);
    box-shadow: 0 0 6px 1px #a259ff44;
  }
}
