.elite-header-1886-container {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.elite-header-1886-trust-bar {
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
}

.elite-header-1886-trust-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.elite-header-1886-trust-bar .trust-text {
    color: #D4AF37;
}

.elite-header-1886-trust-bar .trust-phone {
    color: #D4AF37;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.elite-header-1886-trust-bar .trust-phone:hover {
    color: #FFD700;
}

.elite-header-1886-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.elite-header-1886-logo {
    width: 250px;
    display: flex;
    align-items: center;
}

.elite-header-1886-logo a {
    display: block;
    width: 100%;
}

.merseybeatz-logo-svg {
    width: 100%;
    height: auto;
}

.wave {
    animation: waveMove 2s infinite ease-in-out;
}

@keyframes waveMove {
    0% { d: path("M200 250 L400 250 L500 200 L600 320 L700 120 L800 420 L900 100 L1000 300 L1100 200 L1200 250"); }
    50% { d: path("M200 250 L400 260 L500 180 L600 340 L700 140 L800 380 L900 140 L1000 280 L1100 220 L1200 250"); }
    100% { d: path("M200 250 L400 250 L500 200 L600 320 L700 120 L800 420 L900 100 L1000 300 L1100 200 L1200 250"); }
}

.glow {
    animation: glowPulse 1.5s infinite ease-in-out;
}

@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 10px gold); }
    50% { filter: drop-shadow(0 0 60px gold); }
}

.audio {
    animation: bounce 0.8s infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0px); }
    to { transform: translateY(-10px); }
}

.elite-header-1886-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.elite-header-1886-menu li {
    margin: 0;
    padding: 0;
}

.elite-header-1886-menu a {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.elite-header-1886-menu a:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 4px;
}

.elite-header-1886-cta {
    background: linear-gradient(135deg, #D4AF37 0%, #AA8111 100%);
    color: #0F0F0F;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
}

.elite-header-1886-cta:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.elite-header-1886-cta:focus {
    outline: 2px solid #FFD700;
    outline-offset: 4px;
}

.elite-header-1886-mobile-toggle {
    display: none;
    cursor: pointer;
    color: #D4AF37;
    background: transparent;
    border: none;
    padding: 8px;
}

.elite-header-1886-mobile-toggle:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 4px;
}

.elite-header-1886-bottom-bar {
    background: #111;
    padding: 10px 40px;
    font-size: 12px;
    color: #aaa;
    border-top: 1px solid #222;
}

.elite-header-1886-breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.elite-header-1886-breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.elite-header-1886-breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 8px;
    color: #666;
}

.elite-header-1886-breadcrumb a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s;
}

.elite-header-1886-breadcrumb a:hover {
    color: #FFD700;
}

/* Responsive */
@media (max-width: 1024px) {
    .elite-header-1886-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0F0F0F;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    
    .elite-header-1886-nav.is-active {
        display: block;
    }
    
    .elite-header-1886-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .elite-header-1886-mobile-toggle {
        display: flex;
        align-items: center;
    }
    
    .elite-header-1886-main {
        padding: 15px 20px;
        position: relative;
    }
    
    .elite-header-1886-bottom-bar {
        padding: 10px 20px;
    }
}

@media (max-width: 767px) {
    .elite-header-1886-actions {
        display: none;
    }
    
    .elite-header-1886-logo {
        width: 180px;
    }
    
    .elite-header-1886-trust-bar {
        font-size: 10px;
        padding: 6px 10px;
    }
    
    .elite-header-1886-trust-content {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .elite-header-1886-logo {
        width: 140px;
    }
    
    .elite-header-1886-main {
        padding: 10px 15px;
    }
}