.bet058-banner-container {
    width: 100%;
    background: linear-gradient(180deg, #782422 0%, #5a1b19 100%);
    overflow: hidden;
    border-bottom: 4px solid #BE4949;
    box-shadow: 0 6px 24px rgba(190, 73, 73, 0.35);
    max-width: 1200px;
    margin: 2rem auto;
}

.bet058-header-bar {
    display: flex;
    align-items: stretch;
    height: 75px;
    background: #782422;
    position: relative;
}

.bet058-brand-section {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 32px;
    background: linear-gradient(135deg, #8b2a28 0%, #782422 100%);
    border-right: 4px solid #BE4949;
    min-width: 220px;
    position: relative;
}

.bet058-brand-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 65%;
    background: linear-gradient(180deg, transparent, #BE4949, transparent);
}

.bet058-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #BE4949 0%, #d85a5a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 16px;
    animation: bet058LogoPulse 3s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(190, 73, 73, 0.9),
                0 0 50px rgba(190, 73, 73, 0.5);
    transform-origin: center;
}

@keyframes bet058LogoPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 25px rgba(190, 73, 73, 0.9),
                    0 0 50px rgba(190, 73, 73, 0.5);
    }
    30% {
        transform: scale(1.15) rotate(-8deg);
    }
    50% {
        transform: scale(1.25) rotate(8deg);
        box-shadow: 0 0 35px rgba(190, 73, 73, 1),
                    0 0 70px rgba(190, 73, 73, 0.7);
    }
    70% {
        transform: scale(1.15) rotate(-8deg);
    }
}

.bet058-site-title {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #BE4949 0%, #ff6b6b 50%, #BE4949 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-shadow: 0 0 35px rgba(190, 73, 73, 0.6);
    animation: bet058TitleGlow 3.5s linear infinite;
    background-size: 200% auto;
    font-family: 'Arial Black', sans-serif;
}

@keyframes bet058TitleGlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.bet058-ticker-area {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #782422;
}

.bet058-animation-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: bet058ScrollMove 10s linear infinite;
    will-change: transform;
}

.bet058-animation-track:hover {
    animation-play-state: paused;
}

@keyframes bet058ScrollMove {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.bet058-content-stream {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 0;
}

.bet058-promo-item {
    padding: 0 90px;
    font-size: 17px;
    font-weight: 700;
    color: #f5e6d3;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.bet058-promo-item:hover {
    color: #BE4949;
    transform: scale(1.12);
    text-shadow: 0 0 20px rgba(190, 73, 73, 1),
                 0 0 35px rgba(190, 73, 73, 0.6);
}

.bet058-highlight {
    color: #BE4949;
    font-weight: 900;
    font-size: 20px;
    text-shadow: 0 0 18px rgba(190, 73, 73, 1);
    animation: bet058HighlightFlash 2.5s ease-in-out infinite;
}

@keyframes bet058HighlightFlash {
    0%, 100% {
        text-shadow: 0 0 18px rgba(190, 73, 73, 1),
                     0 0 30px rgba(190, 73, 73, 0.7);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(190, 73, 73, 1),
                     0 0 50px rgba(190, 73, 73, 0.9),
                     0 0 70px rgba(190, 73, 73, 0.5);
        transform: scale(1.08);
    }
}

.bet058-action-zone {
    flex-shrink: 0;
    width: 75px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #BE4949 0%, #d85a5a 100%);
    border-left: 4px solid #BE4949;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.bet058-action-zone::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: rotate(45deg);
    animation: bet058CtaShimmer 3.5s linear infinite;
}

@keyframes bet058CtaShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.bet058-action-zone:hover {
    background: linear-gradient(135deg, #d85a5a 0%, #ff7676 100%);
    box-shadow: 0 0 35px rgba(190, 73, 73, 0.8),
                inset 0 0 25px rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
}

.bet058-cta-symbol {
    width: 44px;
    height: 44px;
    background: #782422;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 26px;
    border: 3px solid #BE4949;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 1;
}

.bet058-action-zone:hover .bet058-cta-symbol {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 0 25px rgba(190, 73, 73, 0.9),
                0 5px 30px rgba(0, 0, 0, 0.45);
    border-color: #ff7676;
}

@media (max-width: 992px) {
    .bet058-header-bar {
        height: 68px;
    }
    
    .bet058-brand-section {
        padding: 0 24px;
        min-width: 190px;
    }
    
    .bet058-site-title {
        font-size: 30px;
        letter-spacing: 3px;
    }
    
    .bet058-logo-icon {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
    
    .bet058-action-zone {
        width: 68px;
    }
    
    .bet058-promo-item {
        padding: 0 70px;
        font-size: 16px;
    }
    
    .bet058-highlight {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .bet058-header-bar {
        height: 62px;
    }
    
    .bet058-brand-section {
        padding: 0 18px;
        min-width: 165px;
    }
    
    .bet058-site-title {
        font-size: 26px;
        letter-spacing: 2.5px;
    }
    
    .bet058-logo-icon {
        width: 34px;
        height: 34px;
        font-size: 20px;
        margin-right: 12px;
    }
    
    .bet058-action-zone {
        width: 62px;
    }
    
    .bet058-cta-symbol {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .bet058-promo-item {
        padding: 0 60px;
        font-size: 15px;
    }
    
    .bet058-highlight {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .bet058-header-bar {
        height: 56px;
    }
    
    .bet058-brand-section {
        padding: 0 14px;
        min-width: 140px;
    }
    
    .bet058-site-title {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .bet058-logo-icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
        margin-right: 10px;
    }
    
    .bet058-action-zone {
        width: 56px;
    }
    
    .bet058-cta-symbol {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    
    .bet058-promo-item {
        padding: 0 50px;
        font-size: 14px;
    }
    
    .bet058-highlight {
        font-size: 16px;
    }
}