/* Ticker Wrapper */
.ticker-wrapper {
    width: 80%;
    max-width: 900px;
    height: 70px;
    overflow: hidden;
    margin: 2rem auto;
    position: relative;
    border-radius: 18px;
    background: rgba(30, 0, 50, 0.6); /* dunkler transparenter BG */
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* Scrollender Inhalt */
.ticker-content {
    display: inline-block;
    white-space: nowrap;
    color: rgba(255,255,255,0.95);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 70px;
    padding-left: 100%;
    animation: ticker-scroll 20s linear infinite;
    text-shadow: 
        0 0 6px rgba(173,0,255,0.8),
        0 0 10px rgba(0,203,255,0.8);
    font-family: Arial, Helvetica, sans-serif;
}

/* Scroll Animation */
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Chat Button */
.chat-button {
    display: inline-block;
    margin-left: 20px;
    padding: 10px 24px;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    border-radius: 25px;
    background: rgba(173,0,255,0.7);
    font-weight: 700;
    letter-spacing: 0.03em;
    vertical-align: middle;
    user-select: none;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(173,0,255,0.5);
}

/* Button Hover */
.chat-button:hover,
.chat-button:focus {
    transform: scale(1.1);
    background: rgba(138,0,204,0.9);
    box-shadow: 0 6px 20px rgba(138,0,204,0.7);
    outline: none;
}

/* Responsive */
@media (max-width: 768px) {
    .ticker-wrapper {
        height: 50px;
    }
    .ticker-content {
        font-size: 1.2rem;
        line-height: 50px;
        padding-left: 100%;
    }
    .chat-button {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
}
