/**
 * Unified Token Ticker - Trinity Network
 * All 5 tokens: DEEZ, CHOC, MDRNDME, PCC, GHST
 */

.unified-token-ticker {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-bottom: 2px solid var(--accent-purple);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.unified-ticker-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem;
}

.unified-ticker-label {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--accent-purple);
    text-transform: uppercase;
    white-space: nowrap;
    padding-right: 2rem;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    font-family: 'Courier New', monospace;
}

.unified-ticker-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) var(--bg-dark);
}

.unified-ticker-scroll::-webkit-scrollbar {
    height: 4px;
}

.unified-ticker-scroll::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

.unified-ticker-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 2px;
}

.unified-ticker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.unified-ticker-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.unified-ticker-item.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border-color: var(--accent-purple);
}

.unified-ticker-item.featured:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.1));
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.unified-ticker-symbol {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Courier New', monospace;
}

.unified-verified-badge {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: var(--accent-purple);
    color: var(--bg-dark);
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 11px;
    font-weight: bold;
}

.unified-featured-badge {
    color: #FFD700;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    animation: pulse-star-unified 2s ease-in-out infinite;
}

@keyframes pulse-star-unified {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.unified-ticker-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Monaco', 'Courier New', monospace;
}

.unified-price-update {
    animation: price-flash-unified 0.5s ease-out;
}

@keyframes price-flash-unified {
    0% {
        background: rgba(139, 92, 246, 0.3);
    }
    100% {
        background: transparent;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .unified-ticker-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .unified-ticker-label {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .unified-ticker-scroll {
        width: 100%;
    }

    .unified-ticker-item {
        padding: 0.5rem 1rem;
        gap: 0.75rem;
    }

    .unified-ticker-symbol {
        font-size: 0.9rem;
    }

    .unified-ticker-price {
        font-size: 1rem;
    }
}
