<style>
    body { padding-top: 0 !important; }
    .stui-header__top, .stui-header__top * { display: none !important; }
    .new-dy-header {
        position: relative;
        z-index: 999;
        min-height: 54px;
        padding: 0;
        color: #fff;
        background: #282738;
    }
    .new-dy-header__inner {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 12px;
    }
    .new-dy-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        min-height: 54px;
        flex-wrap: wrap;
    }
    .new-dy-logo img {
        height: 32px;
        vertical-align: middle;
    }
    .new-dy-nav-left {
        flex: 1;
        display: flex;
        gap: 5px;
        margin-left: 20px;
    }
    .new-dy-nav-left a {
        color: #fff;
        text-decoration: none;
        padding: 5px 10px;
        font-size: 14px;
    }
    .new-dy-nav-left a:hover {
        color: #0b65b9;
    }
    .new-dy-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 0 0 auto;
    }
    .search-wrapper {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 30px;
        overflow: hidden;
        padding: 0 5px;
    }
    .search-wrapper input {
        width: 210px;
        padding: 8px 12px;
        border: none;
        outline: none;
        font-size: 14px;
        background: transparent;
    }
    .search-wrapper button {
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 6px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .search-wrapper button svg {
        width: 18px;
        height: 18px;
        fill: #999;
    }
    .search-wrapper button:hover svg {
        fill: #0b65b9;
    }
    @media (max-width: 767px) {
        .new-dy-header { min-height: auto; padding: 0; }
        .new-dy-top { flex-direction: column; align-items: stretch; gap: 10px; padding: 10px 0; }
        .new-dy-nav-left { margin-left: 0; flex-wrap: wrap; justify-content: center; }
        .new-dy-nav-left a { padding: 5px 8px; font-size: 13px; }
        .new-dy-actions { justify-content: center; }
        .search-wrapper { width: 100%; }
        .search-wrapper input { width: 100%; }
    }
</style>