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