.polo9-announcement-wrapper {
    width: 100%;
    background: #03193A;
    border-radius: 0;
    overflow: hidden;
    border-bottom: 3px solid #12294A;
    margin: 0 auto;
    margin-top: 2rem;
    max-width: 1200px;
}

.polo9-main-header {
    display: flex;
    align-items: center;
    height: 70px;
    background: linear-gradient(135deg, #03193A 0%, #12294A 100%);
}

.polo9-logo-zone {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 28px;
    background: #03193A;
    border-right: 3px solid #FFD700;
    min-width: 200px;
    box-shadow: inset 0 0 20px rgba(18, 41, 74, 0.6);
}

.polo9-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 14px;
    animation: polo9Rotate 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

@keyframes polo9Rotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        box-shadow: 0 0 30px rgba(255, 215, 0, 1);
    }
}

.polo9-brand-name {
    font-size: 28px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    letter-spacing: 3px;
    font-family: 'Arial Black', sans-serif;
}

.polo9-content-zone {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #12294A;
}

.polo9-sliding-content {
    display: flex;
    align-items: center;
    height: 100%;
    animation: polo9Slide 10s linear infinite;
}

.polo9-sliding-content:hover {
    animation-play-state: paused;
}

@keyframes polo9Slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.polo9-message-list {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.polo9-message {
    padding: 0 80px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.polo9-message:hover {
    color: #FFD700;
    transform: scale(1.08);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.polo9-special {
    color: #FFD700;
    font-weight: 900;
    font-size: 18px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 1);
    animation: polo9Shine 2.5s ease-in-out infinite;
}

@keyframes polo9Shine {
    0%, 100% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 1);
        color: #FFD700;
    }
    50% {
        text-shadow: 0 0 25px rgba(255, 215, 0, 1), 0 0 35px rgba(255, 165, 0, 0.8);
        color: #FFA500;
    }
}

.polo9-cta-zone {
    flex-shrink: 0;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-left: 3px solid #FFD700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.polo9-cta-zone:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    transform: scale(1.05);
}

.polo9-app-icon {
    width: 38px;
    height: 38px;
    background: #03193A;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid #FFD700;
    transition: all 0.4s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.polo9-cta-zone:hover .polo9-app-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

@media (max-width: 768px) {
    .polo9-main-header {
        height: 60px;
    }
    .polo9-logo-zone {
        padding: 0 18px;
        min-width: 150px;
    }
    .polo9-brand-name {
        font-size: 24px;
        letter-spacing: 2px;
    }
    .polo9-logo-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin-right: 10px;
    }
    .polo9-cta-zone {
        width: 60px;
    }
    .polo9-app-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    .polo9-message {
        padding: 0 60px;
        font-size: 14px;
    }
    .polo9-special {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .polo9-main-header {
        height: 50px;
    }
    .polo9-logo-zone {
        padding: 0 12px;
        min-width: 120px;
    }
    .polo9-brand-name {
        font-size: 20px;
        letter-spacing: 1px;
    }
    .polo9-logo-icon {
        width: 26px;
        height: 26px;
        font-size: 14px;
        margin-right: 8px;
    }
    .polo9-message {
        padding: 0 40px;
        font-size: 12px;
    }
}