.bcf-banner,
.bcf-banner * {
    all: initial;
}

.bcf-banner {
    width: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 40%, #2d0b3a 100%);
    border-bottom: 3px solid #ff5c1f;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden;
    box-sizing: border-box;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bcf-banner.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bcf-overlay {
    display: none;
}

.bcf-glow {
    display: none;
}

.bcf-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-sizing: border-box;
    height: 100%;
}

.bcf-left {
    flex: 0 0 auto;
}

.bcf-label {
    font-size: 14px;
    font-weight: 800;
    color: #ff5c1f;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255,92,31,0.8);
    white-space: nowrap;
}

.bcf-center {
    flex: 1;
    text-align: center;
}

.bcf-message {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    display: inline;
    margin: 0;
}

.bcf-highlight {
    color: #ff5c1f;
    font-weight: 900;
    font-size: 1.35em;
    text-shadow: 0 0 20px rgba(255,92,31,0.9);
}

.bcf-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.bcf-dates {
    font-size: 14px;
    color: #ffb399;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
}

.bcf-cta {
    background: linear-gradient(45deg, #ff5c1f, #ff7518);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    height: auto;
}

.bcf-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s;
}

.bcf-cta:hover {
    background: linear-gradient(45deg, #ff7518, #ff5c1f);
    color: #fff !important;
}

.bcf-cta:hover::before {
    left: 100%;
}

@media (min-width: 1440px) {
    .bcf-banner {
        height: 48px;
    }
    .bcf-content { 
        padding: 0 0;
        width: 100%;
    }
    .bcf-label { font-size: 14px; }
    .bcf-message { font-size: 16px; }
    .bcf-highlight { font-size: 1.35em; }
    .bcf-dates { font-size: 14px; }
    .bcf-cta { padding: 8px 20px; font-size: 14px; }
}

@media (max-width: 1440px) and (min-width: 1269px) {
    .bcf-banner {
        height: 44px;
    }
    .bcf-content { padding: 0 20px; }
    .bcf-label { font-size: 14px; }
    .bcf-message { font-size: 16px; }
    .bcf-highlight { font-size: 1.3em; }
    .bcf-dates { font-size: 14px; }
    .bcf-cta { padding: 7px 18px; font-size: 14px; }
}

@media (max-width: 1268px) and (min-width: 768px) {
    .bcf-banner {
        height: 40px;
    }
    .bcf-content { 
        padding: 0 20px; 
        gap: 12px; 
    }
    .bcf-label { font-size: 14px; }
    .bcf-message { font-size: 14px; }
    .bcf-highlight { font-size: 1.25em; }
    .bcf-dates { font-size: 12px; }
    .bcf-cta { padding: 6px 16px; font-size: 14px; }
}

@media (max-width: 767px) and (min-width: 481px) {
    .bcf-banner {
        height: 36px;
    }
    .bcf-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0 16px;
        gap: 8px;
    }

    .bcf-left {
        display: none;
    }
    .bcf-center {
        flex: 1;
        text-align: left;
    }
    .bcf-right {
        flex: 0 0 auto;
        gap: 8px;
    }
    .bcf-dates { 
        display: none;
    }
    .bcf-label { font-size: 10px; }
    .bcf-message { font-size: 12px; }
    .bcf-highlight { font-size: 1.2em; }
    .bcf-cta { padding: 5px 14px; font-size: 11px; }
}

@media (max-width: 480px) {
    .bcf-banner {
        height: 32px;
    }
    .bcf-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0 12px;
        gap: 6px;
    }
    .bcf-left {
        display: none;
    }
    .bcf-center {
        flex: 1;
        text-align: left;
    }
    .bcf-right {
        flex: 0 0 auto;
        gap: 6px;
    }
    .bcf-dates { 
        display: none;
    }
    .bcf-label { font-size: 10px; letter-spacing: 1px; }
    .bcf-message { font-size: 12px; }
    .bcf-highlight { font-size: 1.15em; }
    .bcf-cta { padding: 5px 12px; font-size: 11px; max-width: 140px; }
}

@media (min-width: 1440px) {
    body.bcf-banner-visible {
        padding-top: calc(96px + 48px);
    }
}

@media (max-width: 1440px) and (min-width: 1269px) {
    body.bcf-banner-visible {
        padding-top: calc(80px + 44px);
    }
}

@media (max-width: 1268px) and (min-width: 768px) {
    body.bcf-banner-visible {
        padding-top: calc(74px + 40px);
    }
}

@media (max-width: 767px) and (min-width: 481px) {
    body.bcf-banner-visible {
        padding-top: calc(67px + 36px);
    }
}

@media (max-width: 480px) {
    body.bcf-banner-visible {
        padding-top: calc(60px + 32px);
    }
}

@media (max-width: 1268px) {
    .ng-mobile-menu-overlay.bcf-menu-visible {
        top: calc(74px + 40px) !important;
        height: calc(100% - 74px - 40px) !important;
    }
}

@media (max-width: 767px) and (min-width: 481px) {
    .ng-mobile-menu-overlay.bcf-menu-visible {
        top: calc(67px + 36px) !important;
        height: calc(100% - 67px - 36px) !important;
    }
}

@media (max-width: 480px) {
    .ng-mobile-menu-overlay.bcf-menu-visible {
        top: calc(60px + 32px) !important;
        height: calc(100% - 60px - 32px) !important;
    }
}

.ng-site-header.bcf-banner-visible {
    top: 48px;
}

@media (max-width: 1440px) and (min-width: 1269px) {
    .ng-site-header.bcf-banner-visible {
        top: 44px;
    }
}

@media (max-width: 1268px) and (min-width: 768px) {
    .ng-site-header.bcf-banner-visible {
        top: 40px;
    }
}

@media (max-width: 767px) and (min-width: 481px) {
    .ng-site-header.bcf-banner-visible {
        top: 36px;
    }
}

@media (max-width: 480px) {
    .ng-site-header.bcf-banner-visible {
        top: 32px;
    }
}

#content.bcf-content-adjusted {
    margin-top: 0;
}