.bet676-announcement-wrapper {
    width: 100%;
    background: linear-gradient(180deg, #604898 0%, #4a3a7a 100%);
    border-radius: 0;
    overflow: hidden;
    max-width: 1200px;
    margin: 2rem auto;
    box-shadow: 0 4px 15px rgba(96, 72, 152, 0.3);
}

.bet676-main-container {
    display: flex;
    align-items: center;
    height: 70px;
    background: #604898;
    position: relative;
}

.bet676-logo-area {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 28px;
    background: linear-gradient(135deg, #7862AB 0%, #604898 100%);
    border-right: 3px solid #9b7dd6;
    min-width: 200px;
    box-shadow: 2px 0 10px rgba(120, 98, 171, 0.4);
}

.bet676-animated-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #9b7dd6 0%, #b99de8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 14px;
    animation: bet676IconBounce 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(155, 125, 214, 0.8);
}

@keyframes bet676IconBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 20px rgba(155, 125, 214, 0.8);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        box-shadow: 0 0 30px rgba(155, 125, 214, 1);
    }
}

.bet676-brand-name {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e8d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(155, 125, 214, 0.6);
    letter-spacing: 3px;
    font-family: 'Arial Black', sans-serif;
}

.bet676-content-slider {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #604898;
}

.bet676-slider-rail {
    display: flex;
    align-items: center;
    height: 100%;
    animation: bet676Scroll 10s linear infinite;
}

.bet676-slider-rail:hover {
    animation-play-state: paused;
}

@keyframes bet676Scroll {
    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;
    gap: 0;
}

.bet676-message {
    padding: 0 80px;
    font-size: 16px;
    font-weight: 600;
    color: #f5f0ff;
    cursor: pointer;
    transition: all 0.35s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.bet676-message:hover {
    color: #ffffff;
    transform: scale(1.08);
    text-shadow: 0 0 15px rgba(155, 125, 214, 0.9);
}

.bet676-accent {
    color: #b99de8;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(185, 157, 232, 0.8);
}

.bet676-glow {
    color: #ffffff;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(155, 125, 214, 1);
    animation: bet676TextPulse 2.5s ease-in-out infinite;
}

@keyframes bet676TextPulse {
    0%, 100% {
        text-shadow: 0 0 15px rgba(155, 125, 214, 1);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 25px rgba(185, 157, 232, 1), 0 0 35px rgba(155, 125, 214, 0.8);
        transform: scale(1.05);
    }
}

.bet676-cta-zone {
    flex-shrink: 0;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9b7dd6 0%, #b99de8 100%);
    border-left: 3px solid #7862AB;
    transition: all 0.35s ease;
    cursor: pointer;
}

.bet676-cta-zone:hover {
    background: linear-gradient(135deg, #b99de8 0%, #d4c3f0 100%);
    box-shadow: 0 0 25px rgba(155, 125, 214, 0.6);
    transform: scale(1.05);
}

.bet676-link-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bet676-download-badge {
    width: 38px;
    height: 38px;
    background: #604898;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid #9b7dd6;
    transition: all 0.35s ease;
}

.bet676-cta-zone:hover .bet676-download-badge {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(155, 125, 214, 0.7);
    border-color: #b99de8;
}

@media (max-width: 768px) {
    .bet676-main-container {
        height: 60px;
    }
    .bet676-logo-area {
        padding: 0 18px;
        min-width: 160px;
    }
    .bet676-brand-name {
        font-size: 24px;
        letter-spacing: 2px;
    }
    .bet676-animated-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin-right: 10px;
    }
    .bet676-cta-zone {
        width: 60px;
    }
    .bet676-message {
        padding: 0 60px;
        font-size: 14px;
    }
    .bet676-download-badge {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .bet676-main-container {
        height: 50px;
    }
    .bet676-logo-area {
        padding: 0 12px;
        min-width: 130px;
    }
    .bet676-brand-name {
        font-size: 20px;
        letter-spacing: 1px;
    }
    .bet676-animated-icon {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }
    .bet676-message {
        padding: 0 40px;
        font-size: 12px;
    }
}