/* ============================================================
   MARQUEE — neon ticker divider
   ============================================================ */

.marquee {
    position: relative;
    overflow: hidden;
    padding: 1.15rem 0;
    border-top: 1px solid rgba(0, 245, 255, 0.12);
    border-bottom: 1px solid rgba(0, 245, 255, 0.12);
    background: rgba(9, 11, 18, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeMove 34s linear infinite;
}

.marquee--reverse .marquee__track { animation-direction: reverse; }

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee__item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.4rem, 4vw, 2.6rem);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.marquee__item--outline {
    background: none;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.32);
    -webkit-text-fill-color: transparent;
}

.marquee__star {
    margin: 0 clamp(1.2rem, 3vw, 2.4rem);
    color: var(--cyan);
    font-size: clamp(0.8rem, 1.6vw, 1.05rem);
    opacity: 0.85;
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.8));
}

@keyframes marqueeMove {
    to { transform: translateX(-50%); }
}
