/* Dashboard Simplified Styles */

/* Performance Overview */
.performance-overview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(222, 222, 0, 0.1);
    margin-bottom: 1.5rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ff88;
    font-size: 0.8rem;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.perf-card {
    background: rgba(222, 222, 0, 0.05);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(222, 222, 0, 0.1);
}

.perf-card:hover {
    background: rgba(222, 222, 0, 0.1);
    border-color: rgba(222, 222, 0, 0.3);
}

.perf-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.perf-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.perf-trend {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    display: inline-block;
}

.perf-trend.up {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

/* Trending Now */
.trending-now {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(222, 222, 0, 0.1);
}

.trend-indicator {
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 600;
}

.trending-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.trending-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(222, 222, 0, 0.05);
    border-radius: 6px;
    padding: 0.75rem;
    transition: var(--transition);
}

.trending-item:hover {
    background: rgba(222, 222, 0, 0.1);
}

.trend-hashtag {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.trend-growth {
    color: #00ff88;
    font-weight: 700;
    font-size: 0.8rem;
    background: rgba(0, 255, 136, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .perf-card {
        padding: 0.75rem;
    }
    
    .perf-value {
        font-size: 1.2rem;
    }
    
    .trending-item {
        padding: 0.5rem;
    }
}