.newsflash {
    background: linear-gradient(135deg, rgba(102, 217, 239, 0.1), rgba(166, 226, 46, 0.1));
    border: 1px solid rgba(102, 217, 239, 0.2);
    padding: 15px 25px;
    border-radius: 8px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsflash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #66d9ef, #a6e22e);
}

.news-item {
    transition: all 0.5s ease;
    text-align: center;
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.news-item span {
    display: inline-block;
}

.news-link {
    color: #66d9ef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #a6e22e;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .newsflash {
        padding: 12px 20px;
    }
    
    .news-item {
        font-size: 1rem;
    }
}
