﻿.ticker-container {
    width: 100%;
    overflow: hidden;
    background-color: #16bc94;
    color: #fff;
    padding: 8px 0;
    font-weight: bold;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 100;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    will-change: transform;
}

    .ticker-track a {
        color: #fff;
        text-decoration: none;
        padding: 0 40px;
        display: inline-block;
        transition: color 0.3s;
    }

        .ticker-track a:hover {
            color: #ffd700;
            text-decoration: underline;
        }

/* Mobile view */
@media (max-width: 768px) {
    .ticker-container {
        padding: 6px 0;
        font-size: 14px;
    }

    .ticker-track a {
        padding: 0 24px;
    }

    .slider-content {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
        padding: 15px;
    }

    .slider-banner {
        height: 500px;
    }
}
