/* 모바일 상단 헤더 */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    border-bottom: 1px solid rgba(9, 30, 66, .14);
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.mobile-header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding: 0 16px;
}

.mobile-header-logo {
    display: none;
}

.mobile-header-logo img {
    width: 100px;
    height: auto;
}

.mobile-header-hamburger {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #091E42;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    border-radius: 8px;
}

.mobile-header-hamburger:hover {
    background-color: rgba(9, 30, 66, 0.04);
}

.pc-header {
    height: 90px;
    display: none;
    justify-content: center;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    position: fixed;
    top: 0;
    background-color: rgb(255, 255, 255);
    width: 100%;
    margin: auto;
}

.pc-header-container {
    width: 100%;
}

.pc-header-content {
    padding: 0 20px;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.pc-header-left {
    display: flex;
    align-items: center;
}

.pc-header-logo-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

.pc-header-logo {
    width: 130px;
}

.pc-header-nav {
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pc-header-nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.pc-header-nav-text {
    cursor: pointer;
    color: rgb(34, 34, 34);
    font-weight: 700;
    font-size: 17px;
    word-break: keep-all;
    white-space: pre-wrap;
    transition: all 0.3s ease;
    display: block;
    height: 70px;
    padding: 0 26px;
    line-height: 72px;
    text-decoration: none;
}

.pc-header-nav-text:hover {
    font-weight: 700;
    transform: translateY(-2px);
}

.pc-header-nav-item .sub-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: -20px;
    min-width: max-content;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
    border: 1px solid rgba(9, 30, 66, .14);
    box-sizing: border-box;
    z-index: 10;
    cursor: default;
}

.pc-header-nav-item:hover .sub-menu {
    display: block;
}

.pc-header-nav-item .sub-menu .inner-sub {
    display: flex;
    width: 100%;
}

.pc-header-nav-item .sub-menu .list-sub {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    min-width: 145px;
    max-height: 200px;
    list-style: none;
}

.pc-header-nav-item .sub-menu .list-sub li {
    width: 100%;
}

.pc-header-nav-item .sub-menu .link-sub {
    display: flex;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: rgb(0, 0, 0);
    letter-spacing: -0.3px;
    box-sizing: border-box;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.pc-header-nav-item .sub-menu .link-sub:hover {
    font-weight: 700;
    background-color: rgba(9, 30, 66, .04);
    border-radius: 12px;
}

.pc-header-nav-item .sub-menu .txt-link {
    display: block;
}

.pc-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.auth_buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.membership_btn {
    font-weight: 700;
    padding: 10px;
    color: transparent;
    background: linear-gradient(to right, #ff4d8d, #ff6b8b, #ff8e79);
    background-size: 200% auto;
    background-position: left center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background-position 0.5s ease-in-out;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.membership_link {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.membership_link:hover {
    color: #ff4d8d;
}

.auth_divider {
    color: #ddd;
    font-size: 14px;
}

.auth_actions {
    display: flex;
    gap: 8px;
}

.login_btn {
    padding: 8px 16px;
    border: 1px solid #ff4d8d;
    color: #ff4d8d;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
}

.login_btn:hover {
    background: #ff4d8d;
    color: white;
}

.signup_btn {
    padding: 8px 16px;
    background: linear-gradient(45deg, #ff4d8d, #ff6b8b);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.signup_btn:hover {
    background: linear-gradient(45deg, #ff6b8b, #ff8e79);
    transform: translateY(-1px);
}

.notification-wrapper {
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.notification-wrapper svg {
    transition: fill 0.3s ease;
}

.notification-wrapper:hover svg {
    fill: #ff4d8d;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #ff4d8d, #ff6b8b);
    color: white;
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.notification-side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-side-panel.active {
    visibility: visible;
    opacity: 1;
}

.notification-side-panel__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification-side-panel.active .notification-side-panel__overlay {
    opacity: 1;
}

.notification-side-panel__container {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.notification-side-panel.active .notification-side-panel__container {
    transform: translateX(0);
}

.notification-side-panel__header {
    padding: 20px 24px 0 24px;
    flex-shrink: 0;
}

.notification-side-panel__title-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-side-panel__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.notification-side-panel__close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    color: #666;
    transition: all 0.2s ease;
}

.notification-side-panel__close:hover {
    background-color: #f5f5f5;
    color: #333;
}

.notification-side-panel__filter-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f2f5;
}

.notification-side-panel__filter-dropdown {
    position: relative;
    width: 180px;
}

.notification-side-panel__filter-button {
    width: 100%;
    padding: 10px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.notification-side-panel__filter-button:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.notification-side-panel__filter-button.active {
    background: linear-gradient(45deg, #ff4d8d, #ff6b8b);
    color: white;
    border-color: transparent;
}

.notification-side-panel__filter-arrow {
    transition: transform 0.3s ease;
}

.notification-side-panel__filter-dropdown.open .notification-side-panel__filter-arrow {
    transform: rotate(180deg);
}

.notification-side-panel__filter-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.notification-side-panel__filter-dropdown.open .notification-side-panel__filter-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-side-panel__filter-option {
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f2f5;
}

.notification-side-panel__filter-option:last-child {
    border-bottom: none;
}

.notification-side-panel__filter-option:hover {
    background-color: #f8f9fa;
}

.notification-side-panel__filter-option.selected {
    background: linear-gradient(45deg, #ff4d8d, #ff6b8b);
    color: white;
}

.notification-side-panel__mark-all-read {
    background: linear-gradient(45deg, #ff4d8d, #ff6b8b);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-side-panel__mark-all-read:hover {
    background: linear-gradient(45deg, #ff6b8b, #ff8e79);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 77, 141, 0.3);
}

.notification-side-panel__content {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.notification-side-panel__list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.notification-side-panel__list::-webkit-scrollbar {
    width: 6px;
}

.notification-side-panel__list::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.notification-side-panel__list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.notification-side-panel__list::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.notification-side-panel__item {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f2f5;
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
}

.notification-side-panel__item:hover {
    background-color: rgba(9, 30, 66, 0.04);
}

.notification-side-panel__item.unread {
    background-color: #fff8f0;
    border-left: 4px solid #ff4d8d;
}

.notification-side-panel__item.unread::before {
    content: '';
    position: absolute;
    top: 18px;
    right: 20px;
    width: 8px;
    height: 8px;
    background: #ff4d8d;
    border-radius: 50%;
}

.notification-side-panel__item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-side-panel__item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.notification-side-panel__item-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    word-break: break-word;
    flex: 1;
}

.notification-side-panel__item-type {
    background: linear-gradient(45deg, #ff4d8d, #ff6b8b);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.notification-side-panel__item-message {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    word-break: break-word;
    margin-top: 4px;
    white-space: pre-line;
}

.notification-side-panel__item-time {
    font-size: 12px;
    color: #8b95a1;
    margin-top: 4px;
}

.notification-side-panel__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
    color: #8b95a1;
}

.notification-side-panel__empty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.notification-side-panel__empty-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.notification-side-panel__empty-desc {
    font-size: 14px;
}

.notification-side-panel__skeleton {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f2f5;
}

.notification-side-panel__skeleton-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-side-panel__skeleton-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.notification-side-panel__skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, #f0f2f5 25%, #e4e6ea 50%, #f0f2f5 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: notification-skeleton-loading 1.2s ease-in-out infinite;
}

.notification-side-panel__skeleton-line.short {
    width: 60%;
}

.notification-side-panel__skeleton-line.medium {
    width: 80%;
}

.notification-side-panel__skeleton-line.long {
    width: 100%;
}

.notification-side-panel__skeleton-line.time {
    width: 40%;
    height: 12px;
}

.notification-side-panel__skeleton-line.type {
    width: 50px;
    height: 20px;
    border-radius: 10px;
}

@keyframes notification-skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.chat-wrapper {
    position: relative;
    display: inline-block;
}

.chat-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    min-width: 17px;
    height: 17px;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
    display: none;
}

.profile-wrapper {
    position: relative;
    cursor: pointer;
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff4d8d, #ff6b8b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.profile-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #d9dee3;
}

.profile-icon:hover {
    transform: scale(1.05);
}

.profile-dropdown {
    position: absolute;
    top: 45px;
    right: 0;
    width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
    border: 1px solid rgba(9, 30, 66, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.profile-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 18px;
    width: 16px;
    height: 16px;
    background: white;
    border: 1px solid rgba(9, 30, 66, .14);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.profile-dropdown .profile-info {
    padding: 20px;
    border-bottom: 1px solid #f0f2f5;
    text-align: center;
}

.profile-dropdown .profile-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.profile-dropdown .profile-email {
    font-size: 13px;
    color: #8b95a1;
}

.profile-dropdown .profile-menu {
    padding: 8px 0;
}

.profile-dropdown .profile-menu-item {
    display: block;
    padding: 14px 20px;
    color: #1a1a1a;
    font-size: 14px;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    border-radius: 8px;
    margin: 0 8px;
    width: calc(100% - 16px);
}

.profile-dropdown .profile-menu-item:hover {
    background-color: rgba(9, 30, 66, .04);
}

.profile-dropdown .profile-menu-item.logout {
    color: #dc3545;
    border-top: 1px solid #f0f2f5;
    margin-top: 8px;
    padding-top: 14px;
}

.profile-dropdown .profile-menu-item.logout:hover {
    background-color: #fff5f5;
}

/* 모바일 하단 네비게이션 */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid rgba(9, 30, 66, .14);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    height: 60px;
    padding: 0;
}

.mobile-bottom-nav__item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 0;
    text-decoration: none;
    color: #091E42;
    opacity: 0.5;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-bottom-nav__item.active,
.mobile-bottom-nav__item:hover {
    opacity: 1;
}

.mobile-bottom-nav__item.active svg path {
    fill: #ff4d8d;
    fill-opacity: 1;
}

.mobile-bottom-nav__label {
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

.mobile-bottom-nav__badge {
    position: absolute;
    top: 4px;
    right: 50%;
    transform: translateX(12px);
    background: linear-gradient(45deg, #ff4d8d, #ff6b8b);
    color: white;
    font-size: 10px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    padding: 0 4px;
}

.slide-menu {
    position: fixed;
    top: 0;
    left: -85%;
    width: 85%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
    transition: left 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.slide-menu.active {
    left: 0;
}

.slide-menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #eee;
    height: 60px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.close-menu {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #444;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-menu-logo {
    width: 100px;
    height: auto;
}

.mobile-auth-content {
    padding: 24px 20px;
    background: linear-gradient(135deg, #ff4d8d, #ff6b8b, #ff8e79);
    color: white;
    text-align: center;
    flex-shrink: 0;
}

.mobile-auth-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.mobile-auth-text p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.4;
}

.mobile-auth-buttons {
    display: flex;
    justify-content: center;
}

.mobile-start-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 14px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mobile-start-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.mobile-start-btn:hover::before {
    left: 100%;
}

.mobile-start-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mobile-profile-section {
    padding: 20px 16px;
    background-color: #ff4d8d;
    color: white;
    flex-shrink: 0;
}

.mobile-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.mobile-profile-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

.mobile-profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.mobile-profile-text {
    flex: 1;
    min-width: 0;
}

.mobile-profile-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-profile-text p {
    font-size: 13px;
    opacity: 0.9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-profile-logout {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-profile-logout:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.mobile-profile-logout svg {
    width: 20px;
    height: 20px;
}

.mobile-profile-buttons {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding: 0;
}

.mobile-profile-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

.mobile-profile-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.mobile-profile-btn:active {
    transform: translateY(0);
}

.slide-menu-nav {
    padding: 16px 0;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.slide-menu-nav::-webkit-scrollbar {
    width: 6px;
}

.slide-menu-nav::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.slide-menu-nav::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.slide-menu-nav::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.slide-menu-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.slide-menu-nav ul li {
    padding: 12px 16px;
}

.slide-menu-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: block;
}

.menu-title {
    font-weight: bold;
    color: #000;
    font-size: 18px;
    padding-top: 20px !important;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

@media screen and (max-width: 768px) {
    .mobile-header {
        display: block !important;
    }

    .notification-side-panel__container {
        width: 100%;
    }

    .mobile-bottom-nav {
        display: flex !important;
    }

    .hero-action-buttons {
        flex-direction: row !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 320px !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    body {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

@media screen and (min-width: 768px) {
    .pc-header {
        display: flex !important;
    }

    body {
        padding-top: 90px !important;
    }
}

/* 랜딩 페이지 전용 헤더 스타일 */
.pc-header.landing-page {
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
}

.pc-header.landing-page .pc-header-container {
    background: transparent;
    transition: all 0.3s ease;
}

.pc-header.landing-page .pc-header-content {
    background: transparent;
    transition: all 0.3s ease;
}

.pc-header.landing-page.scrolled {
    background: #ffffff !important;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08) !important;
}

.pc-header.landing-page.scrolled .pc-header-container {
    background: transparent !important;
}

.pc-header.landing-page.scrolled .pc-header-content {
    background: transparent !important;
}

.pc-header.landing-page .pc-header-nav-text {
    color: #fff;
}

.pc-header.landing-page.scrolled .pc-header-nav-text {
    color: rgb(34, 34, 34) !important;
}

.pc-header.landing-page .membership_btn {
    color: #fff;
    background: transparent;
    -webkit-text-fill-color: #fff;
}

.pc-header.landing-page.scrolled .membership_btn {
    color: transparent !important;
    background: linear-gradient(to right, #ff4d8d, #ff6b8b, #ff8e79) !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
}

.pc-header.landing-page .auth_divider {
    color: rgba(255, 255, 255, 0.5);
}

.pc-header.landing-page.scrolled .auth_divider {
    color: #ddd !important;
}

.pc-header.landing-page .login_btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.pc-header.landing-page.scrolled .login_btn {
    color: #ff4d8d !important;
    border-color: #ff4d8d !important;
}

.pc-header.landing-page .login_btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.pc-header.landing-page.scrolled .login_btn:hover {
    background: #ff4d8d !important;
    color: white !important;
}

.pc-header.landing-page .notification-wrapper svg,
.pc-header.landing-page .chat-wrapper svg {
    color: #fff;
}

.pc-header.landing-page.scrolled .notification-wrapper svg,
.pc-header.landing-page.scrolled .chat-wrapper svg {
    color: #666 !important;
}

.pc-header.landing-page .profile-icon {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.pc-header.landing-page.scrolled .profile-icon {
    border: 1px solid #d9dee3 !important;
}

.pc-header.landing-page .sub-menu {
    background-color: #fff !important;
}

.pc-header.landing-page .sub-menu .link-sub {
    color: rgb(0, 0, 0) !important;
}

/* 랜딩 페이지 전용 모바일 헤더 스타일 */
.mobile-header.landing-page {
    background: transparent;
    box-shadow: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

.mobile-header.landing-page.scrolled {
    background: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04) !important;
    border-bottom: 1px solid rgba(9, 30, 66, .14) !important;
}

.mobile-header.landing-page .mobile-header-hamburger {
    color: #ffffff;
}

.mobile-header.landing-page.scrolled .mobile-header-hamburger {
    color: #091E42 !important;
}

.mobile-header.landing-page .mobile-header-hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-header.landing-page.scrolled .mobile-header-hamburger:hover {
    background-color: rgba(9, 30, 66, 0.04) !important;
}