/* GWEP News Ticker — css/ticker.css */

.gwep-ticker-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: rgba(4, 12, 28, 0.85);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 9999;
}

.gwep-ticker-label {
    background: #00f3ff;
    color: #02040a;
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 900;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gwep-ticker-scroll {
    display: flex;
    white-space: nowrap;
    animation: marquee 60s linear infinite;
    padding-left: 20px;
}

.gwep-ticker-item {
    display: flex;
    align-items: center;
    color: #e5e7eb;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    margin-right: 50px;
}

.gwep-ticker-item::before {
    content: '◈';
    color: #00f3ff;
    margin-right: 12px;
    font-size: 14px;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.8);
}

.gwep-ticker-item .highlight {
    color: #f5a623;
    font-weight: 700;
    margin: 0 4px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.gwep-ticker-container:hover .gwep-ticker-scroll {
    animation-play-state: paused;
}

/* Add padding to body so ticker doesn't hide content */
body {
    padding-bottom: 32px;
}