.modern-header-wrapper-eed81293 {
    position: relative;
    width: 100%;
    z-index: 999;
}
.modern-header-eed81293 {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 12px;
    margin: 10px;
    transition: all 0.3s ease;
}
.modern-header-eed81293.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 0;
    animation: slideDown 0.3s ease forwards;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.mh-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}
.mh-brand-area-link {
    text-decoration: none;
    color: inherit;
}
.mh-brand-area {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.mh-logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}
.mh-event-name {
    font-size: 15px;
    color: #444;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}
.mh-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}
.mh-nav-list a {
    text-decoration: none;
    color: #444;
    transition: color 0.2s;
}
.mh-nav-list a:hover {
    color: #000;
}
.mh-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.mh-cta {
    background: #111;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    display: inline-block;
}
.mh-cta:hover {
    background: #333;
    transform: translateY(-2px);
    color: #fff;
}
.mh-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    padding: 5px;
}
.mh-mobile-menu {
    display: none;
    padding: 20px;
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.mh-mobile-menu.is-active {
    display: block;
}
.mh-mobile-menu .mh-nav-list {
    flex-direction: column;
    gap: 15px;
}
@media (max-width: 768px) {
    .mh-nav, .mh-cta {
        display: none;
    }
    .mh-mobile-toggle {
        display: block;
    }
    .mh-container {
        padding: 15px 20px;
    }
    .mh-brand-area {
        gap: 10px;
    }
    .mh-logo-img {
        max-height: 40px;
    }
    .mh-event-name {
        font-size: 13px;
    }
}