/* Speculation Metrics Styling */

.speculation-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--accent-blue);
    border-radius: 8px;
}

.spec-stat {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.spec-stat:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.7);
}

.spec-stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.spec-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 8px;
}

.spec-stat-change {
    font-size: 13px;
    color: var(--text-muted);
}

.spec-stat-change.positive {
    color: var(--success-green);
}

.spec-stat-change.negative {
    color: var(--error-red);
}

/* Growth Indicator */
.growth-indicator {
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--accent-purple);
    border-radius: 8px;
}

.growth-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.growth-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transition: width 1s ease;
    border-radius: 4px;
}

.growth-text {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.growth-target {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

/* Pulse animation for live updates */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.spec-stat-value {
    animation: pulse 3s ease-in-out infinite;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .speculation-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 15px;
    }

    .spec-stat {
        padding: 15px;
    }

    .spec-stat-value {
        font-size: 22px;
    }

    .spec-stat-label {
        font-size: 10px;
    }
}
