/* Wrapper - fixed at the bottom */
.event-ticker-wrapper-309aaf00 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 50px;
    background-color: #09182B; /* Exxata dark blue */
    color: #ffffff;
    display: flex;
    align-items: center;
    z-index: 999999;
    font-family: 'Manrope', sans-serif;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.25);
    overflow: hidden;
}

/* Make sure the widget container doesn't restrict the fixed element if inside a limited section */
.elementor-widget-event_ticker_309aaf00 {
    position: static;
}

/* Badge (Left Side) */
.ticker-badge-309aaf00 {
    background-color: #f2295b; /* Accent red/pink */
    color: #ffffff;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 25px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    position: relative;
    box-shadow: 3px 0 10px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

/* Marquee Container (Right Side) */
.ticker-marquee-309aaf00 {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
}

/* The moving track */
.ticker-track-309aaf00 {
    display: inline-flex;
    align-items: center;
    animation-name: tickerScroll-309aaf00;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 40s; /* Overridden by widget controls */
}

/* Pause animation on hover */
.ticker-marquee-309aaf00:hover .ticker-track-309aaf00 {
    animation-play-state: paused;
}

/* Individual Item */
.ticker-item-309aaf00 {
    display: inline-flex;
    align-items: center;
    padding: 0 30px;
    gap: 12px;
}

.ticker-title-309aaf00 {
    font-weight: 600;
    font-size: 1rem;
}

.ticker-date-309aaf00 {
    color: #6EC1E4; /* Light blue accent */
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Bullet separator between items */
.ticker-item-309aaf00::after {
    content: "•";
    margin-left: 30px;
    color: rgba(255,255,255,0.3);
    font-size: 1.2rem;
}
.ticker-item-309aaf00:last-child::after {
    display: none;
}

/* The infinite loop animation */
@keyframes tickerScroll-309aaf00 {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move exactly half the width since we duplicated the items */
        transform: translateX(-50%);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .ticker-badge-309aaf00 {
        padding: 0 15px;
        font-size: 0.85rem;
    }
    .ticker-title-309aaf00 {
        font-size: 0.9rem;
    }
    .ticker-item-309aaf00 {
        padding: 0 20px;
    }
    .ticker-item-309aaf00::after {
        margin-left: 20px;
    }
}
