.bmw33-banner-container {
    width: 100%;
    background: #140505;
    border-radius: 0;
    overflow: hidden;
    border-bottom: 2px solid #2A2B30;
    max-width: 1200px;
    margin: 2rem auto;
}

.bmw33-header-bar {
    display: flex;
    align-items: center;
    height: 75px;
    background: linear-gradient(135deg, #140505 0%, #2A2B30 100%);
}

.bmw33-brand-section {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 32px;
    background: #140505;
    border-right: 2px solid #FFB800;
    min-width: 220px;
    box-shadow: inset 0 0 25px rgba(42, 43, 48, 0.5);
}

.bmw33-icon-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 16px;
    animation: bmw33Pulse 3s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(255, 184, 0, 0.9);
}

@keyframes bmw33Pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 25px rgba(255, 184, 0, 0.9);
    }
    50% {
        transform: scale(1.15) rotate(180deg);
        box-shadow: 0 0 35px rgba(255, 184, 0, 1);
    }
}

.bmw33-site-title {
    font-size: 32px;
    font-weight: 900;
    color: #FFB800;
    text-shadow: 0 0 18px rgba(255, 184, 0, 0.8);
    letter-spacing: 4px;
    font-family: 'Arial Black', sans-serif;
}

.bmw33-scroll-area {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #2A2B30;
}

.bmw33-ticker-wrap {
    display: flex;
    align-items: center;
    height: 100%;
    animation: bmw33Scroll 10s linear infinite;
}

.bmw33-ticker-wrap:hover {
    animation-play-state: paused;
}

@keyframes bmw33Scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.bmw33-news-feed {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.bmw33-news-item {
    padding: 0 90px;
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.35s ease;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.bmw33-news-item:hover {
    color: #FFB800;
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(255, 184, 0, 0.9);
}

.bmw33-highlight {
    color: #FFB800;
    font-weight: 900;
    font-size: 19px;
    text-shadow: 0 0 18px rgba(255, 184, 0, 1);
    animation: bmw33Glow 2.8s ease-in-out infinite;
}

@keyframes bmw33Glow {
    0%, 100% {
        text-shadow: 0 0 18px rgba(255, 184, 0, 1);
        color: #FFB800;
    }
    50% {
        text-shadow: 0 0 28px rgba(255, 184, 0, 1), 0 0 38px rgba(255, 140, 0, 0.9);
        color: #FF8C00;
    }
}

.bmw33-action-button {
    flex-shrink: 0;
    width: 75px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    border-left: 2px solid #FFB800;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: -6px 0 18px rgba(0, 0, 0, 0.4);
}

.bmw33-action-button:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FFB800 100%);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.7);
    transform: scale(1.08);
}

.bmw33-btn-icon {
    width: 42px;
    height: 42px;
    background: #140505;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 2px solid #FFB800;
    transition: all 0.35s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.bmw33-action-button:hover .bmw33-btn-icon {
    transform: scale(1.25) rotate(360deg);
    box-shadow: 0 0 25px rgba(255, 184, 0, 0.9);
}

@media (max-width: 768px) {
    .bmw33-header-bar {
        height: 65px;
    }
    .bmw33-brand-section {
        padding: 0 20px;
        min-width: 160px;
    }
    .bmw33-site-title {
        font-size: 26px;
        letter-spacing: 2px;
    }
    .bmw33-icon-badge {
        width: 32px;
        height: 32px;
        font-size: 17px;
        margin-right: 12px;
    }
    .bmw33-action-button {
        width: 65px;
    }
    .bmw33-btn-icon {
        width: 36px;
        height: 36px;
        font-size: 19px;
    }
    .bmw33-news-item {
        padding: 0 70px;
        font-size: 15px;
    }
    .bmw33-highlight {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .bmw33-header-bar {
        height: 55px;
    }
    .bmw33-brand-section {
        padding: 0 14px;
        min-width: 130px;
    }
    .bmw33-site-title {
        font-size: 22px;
        letter-spacing: 1px;
    }
    .bmw33-icon-badge {
        width: 28px;
        height: 28px;
        font-size: 15px;
        margin-right: 10px;
    }
    .bmw33-news-item {
        padding: 0 50px;
        font-size: 13px;
    }
}