.aml-topbar {
    --aml-topbar-height: 44px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-sizing: border-box;
    height: var(--aml-topbar-height);
    min-height: var(--aml-topbar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 9px 18px;
    background: #111;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    font-size: 0.9rem;
    line-height: 1.25;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.aml-topbar:hover {
    color: #fff;
}
.aml-topbar__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ff5630;
    box-shadow: 0 0 0 0 rgba(255, 86, 48, 0.55);
    animation: amlTopbarPulse 1.8s ease-in-out infinite;
    flex: 0 0 auto;
}
.aml-topbar__title {
    font-weight: 750;
    white-space: nowrap;
}
.aml-topbar__copy {
    color: rgba(255, 255, 255, 0.78);
    min-width: 0;
}
.aml-topbar__copy-mobile {
    display: none;
}
.aml-topbar__cta {
    color: #ffb5a3;
    font-weight: 750;
    white-space: nowrap;
}
body.aml-topbar-enabled {
    padding-top: 0;
}
body.aml-topbar-enabled > header {
    top: 44px !important;
}
body.aml-topbar-enabled .sticky-buy-bar {
    display: none !important;
}
@keyframes amlTopbarPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 86, 48, 0.55); }
    50% { box-shadow: 0 0 0 6px rgba(255, 86, 48, 0); }
}
@media (max-width: 720px) {
    .aml-topbar {
        --aml-topbar-height: 58px;
        height: var(--aml-topbar-height);
        min-height: var(--aml-topbar-height);
        justify-content: flex-start;
        gap: 8px;
        padding: 9px 14px;
        font-size: 0.82rem;
    }
    .aml-topbar__copy {
        flex: 1 1 auto;
        overflow: hidden;
        white-space: nowrap;
    }
    .aml-topbar__copy-desktop {
        display: none;
    }
    .aml-topbar__copy-mobile {
        display: inline;
    }
    .aml-topbar__cta {
        display: none;
    }
    body.aml-topbar-enabled {
        padding-top: 0;
    }
    body.aml-topbar-enabled > header {
        top: 58px !important;
    }
}
