.bca-pool-header {
    position: relative;
    z-index: 999;
    width: 100%;
    background: #fff;
    box-shadow: 0 12px 35px rgba(17, 54, 85, 0.08);
    overflow: visible;
}

.bca-pool-header--sticky {
    position: sticky;
    top: 16px;
}

.bca-pool-header__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

.bca-pool-header__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.bca-pool-header__logo img {
    display: block;
    height: auto;
    max-width: 100%;
}

.bca-pool-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    margin-left: auto;
}

.bca-pool-header__nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color .25s ease;
}

.bca-pool-header__nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    border-radius: 99px;
    transform: translateX(-50%);
    transition: width .25s ease;
}

.bca-pool-header__nav a:hover::after,
.bca-pool-header__nav a.is-active::after {
    width: 24px;
}

.bca-pool-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(248, 189, 36, 0.28);
    transition: transform .2s ease, box-shadow .2s ease;
}

.bca-pool-header__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(248, 189, 36, 0.36);
}

.bca-pool-header__cta svg {
    width: 16px;
    height: 16px;
}

.bca-pool-header__burger {
    display: none;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(24, 167, 181, 0.11);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bca-pool-header__burger span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
}

.bca-pool-header__overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(8, 31, 51, .45);
    backdrop-filter: blur(4px);
}

.bca-pool-header__drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: min(88vw, 390px);
    height: 100vh;
    padding: 26px;
    box-shadow: -20px 0 50px rgba(16, 46, 71, .16);
    transform: translateX(105%);
    transition: transform .3s ease;
    overflow-y: auto;
}

.bca-pool-header__drawer.is-open {
    transform: translateX(0);
}

.bca-pool-header__drawer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    color: #12385b;
    font-size: 20px;
    font-weight: 800;
}

.bca-pool-header__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(24, 167, 181, 0.12);
    color: #12385b;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.bca-pool-header__drawer nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bca-pool-header__drawer nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 14px;
    background: rgba(24, 167, 181, 0.06);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.bca-pool-header__drawer nav a:hover {
    background: rgba(24, 167, 181, 0.12);
    transform: translateX(3px);
}

.bca-pool-header__cta--mobile {
    width: 100%;
    margin-top: 24px;
}

body.bca-pool-menu-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .bca-pool-header--sticky {
        top: 8px;
    }

    .bca-pool-header__inner {
        gap: 14px;
    }

    .bca-pool-header__drawer {
        width: min(92vw, 360px);
    }
}
