#spinwheel-ticker {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #e5b22b 0%, #886100 100%);
    border-radius: 10px;
    padding: 15px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    min-width: 300px;
    display: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.ticker-header {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-right: 20px;
}

.ticker-close {
    position: absolute;
    top: -5px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.7;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ticker-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.ticker-content {
    text-align: center;
}

.win-text {
    display: block;
    font-weight: 500;
    margin-bottom: 2px;
    font-size: 13px;
}

.time-ago {
    font-size: 11px;
    opacity: 0.8;
    font-style: italic;
}

/* Animation for new wins */
@keyframes pulseWin {
    0% { transform: scale(0.95); opacity: 0; }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); opacity: 1; }
}

#spinwheel-ticker {
    animation: pulseWin 0.5s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    #spinwheel-ticker {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
}