/* Fouz Announcement Bar Styles */
.fouz-ab-bar {
    width: 100%;
    height: 40px;
    background: #6B1E2E;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.fouz-ab-track {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.fouz-ab-bar .fouz-ab-msg {
    position: absolute;
    white-space: nowrap;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #FAF6EF;
    opacity: 0;
    transition: opacity 0.6s ease;
    text-align: center;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.fouz-ab-msg.active {
    opacity: 1;
}
