/* News Cards */
.news-item-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.news-item-card:hover {
    transform: translateX(10px);
    background: var(--accent-dim);
}

/* Stats Widgets */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(118, 75, 162, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(118, 75, 162, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(118, 75, 162, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(118, 75, 162, 0);
    }
}

/* Profile Elements */
.profile-avatar-lg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    background: var(--panel);
}

/* Lightbox */
.lightbox-image {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Search Results */
.search-result {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    background: var(--panel);
    transition: var(--transition);
}

.search-result:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.search-result h3 a {
    color: var(--text);
}

.search-result h3 a:hover {
    color: var(--accent);
}

.search-filters {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.search-stats {
    padding: 1rem 0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
}

.search-suggestions-hidden {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 1000;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    color: var(--text);
}

.suggestion-item:hover {
    background: var(--accent-dim);
    color: var(--accent);
}
