.bet987-announcement-wrapper {
    width: 100%;
    background: var(--color-primary-hover);
    overflow: hidden;
    border-bottom: 3px solid var(--color-accent);
    max-width: 1200px;
    margin: 2rem auto;
}

.bet987-main-container {
    display: flex;
    align-items: center;
    height: 70px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
}

.bet987-logo-panel {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 28px;
    background: var(--color-primary);
    border-right: 3px solid var(--color-accent);
    min-width: 200px;
    position: relative;
}

.bet987-logo-panel::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
}

.bet987-icon-animated {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #fff45c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 14px;
    animation: bet987IconPulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 244, 92, 0.8);
}

@keyframes bet987IconPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 20px rgba(255, 244, 92, 0.8);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
        box-shadow: 0 0 30px rgba(255, 244, 92, 1);
    }
}

.bet987-brand-name {
    font-size: 30px;
    font-weight: 900;
    color: var(--color-accent);
    text-shadow: 0 0 15px rgba(255, 244, 92, 0.6),
                 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    font-family: Arial, sans-serif;
}

.bet987-message-zone {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: var(--color-primary-hover);
}

.bet987-scrolling-content {
    display: flex;
    align-items: center;
    height: 100%;
    animation: bet987ScrollMove 10s linear infinite;
}

.bet987-scrolling-content:hover {
    animation-play-state: paused;
}

@keyframes bet987ScrollMove {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.bet987-message-list {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.bet987-message-entry {
    padding: 0 80px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.4s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.bet987-message-entry:hover {
    color: var(--color-accent);
    transform: scale(1.08);
    text-shadow: 0 0 10px rgba(255, 244, 92, 0.8);
}

.bet987-accent-text {
    color: var(--color-accent);
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 244, 92, 0.9);
}

.bet987-special-value {
    color: #2ecc71;
    font-weight: 900;
    font-size: 18px;
    animation: bet987ValueGlow 2s ease-in-out infinite;
}

@keyframes bet987ValueGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(46, 204, 113, 0.9);
    }
    50% {
        text-shadow: 0 0 25px rgba(46, 204, 113, 1), 0 0 35px rgba(46, 204, 113, 0.7);
    }
}

.bet987-cta-section {
    flex-shrink: 0;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, #fff45c 100%);
    border-left: 3px solid var(--color-accent);
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
}

.bet987-cta-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
}

.bet987-cta-section:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, #fff45c 100%);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.bet987-mobile-symbol {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 2px solid var(--color-accent);
    transition: all 0.4s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.bet987-cta-section:hover .bet987-mobile-symbol {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 244, 92, 0.8);
    border-color: #2ecc71;
}

@media (max-width: 1024px) {
    .bet987-main-container {
        height: 60px;
    }
    
    .bet987-logo-panel {
        padding: 0 20px;
        min-width: 160px;
    }
    
    .bet987-brand-name {
        font-size: 26px;
    }
    
    .bet987-icon-animated {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .bet987-message-entry {
        padding: 0 60px;
        font-size: 14px;
    }
    
    .bet987-cta-section {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .bet987-main-container {
        height: 55px;
    }
    
    .bet987-logo-panel {
        padding: 0 16px;
        min-width: 140px;
    }
    
    .bet987-brand-name {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .bet987-icon-animated {
        width: 28px;
        height: 28px;
        font-size: 16px;
        margin-right: 10px;
    }
    
    .bet987-message-entry {
        padding: 0 40px;
        font-size: 13px;
    }
    
    .bet987-cta-section {
        width: 55px;
    }
    
    .bet987-mobile-symbol {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .bet987-main-container {
        height: 50px;
    }
    
    .bet987-logo-panel {
        padding: 0 12px;
        min-width: 120px;
    }
    
    .bet987-brand-name {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .bet987-icon-animated {
        width: 24px;
        height: 24px;
        font-size: 14px;
        margin-right: 8px;
    }
    
    .bet987-message-entry {
        padding: 0 30px;
        font-size: 12px;
    }
    
    .bet987-special-value {
        font-size: 16px;
    }
    
    .bet987-cta-section {
        width: 50px;
    }
    
    .bet987-mobile-symbol {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}