.ticker-wrap {
    width: 100%;
    height: 45px;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.95) 50%, rgba(0,0,0,0.9) 100%);
    padding: 8px 0;
    overflow: hidden;
    margin: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation: ticker 1800s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.ticker-item {
    display: inline-block;
    padding: 0 60px;
    color: white;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
    position: relative;
}

.ticker-item:after {
    content: "•";
    position: absolute;
    right: 20px;
    color: rgba(255,255,255,0.3);
}

.ticker-amount {
    color: #00ff9d;
    font-weight: bold;
    margin-right: 15px;
    padding: 4px 8px;
    background: rgba(0,255,157,0.1);
    border-radius: 4px;
    text-shadow: 0 0 10px rgba(0,255,157,0.5);
}

.ticker-address {
    color: #b8b8b8;
    letter-spacing: 0.5px;
} 