/**
 * SkullTrading Sentiment - Styles CSS v2
 * Avec section résumé IA
 */

/* ═══════════════════════════════════════════════════════════════════════════
   VARIABLES
   ═══════════════════════════════════════════════════════════════════════════ */

.skulltrading-sentiment-container {
    --st-bg-primary: #1a1a2e;
    --st-bg-secondary: #16213e;
    --st-bg-card: #0f0f1a;
    --st-text-primary: #ffffff;
    --st-text-secondary: #aaaaaa;
    --st-border: #333;
    --st-accent: #e94560;
    --st-green: #00d26a;
    --st-red: #ff4757;
    --st-orange: #ffa502;
    --st-blue: #3498db;
    --st-yellow: #f1c40f;
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--st-bg-primary);
    color: var(--st-text-primary);
    padding: 30px;
    border-radius: 16px;
    max-width: 1200px;
    margin: 20px auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   EN-TÊTE
   ═══════════════════════════════════════════════════════════════════════════ */

.sentiment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--st-border);
}

.sentiment-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sentiment-logo .skull-icon {
    font-size: 3em;
}

.sentiment-logo h2 {
    margin: 0;
    font-size: 1.8em;
    color: var(--st-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.last-update {
    font-size: 0.9em;
    color: var(--st-text-secondary);
    background: var(--st-bg-card);
    padding: 8px 16px;
    border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCORE PRINCIPAL (HERO)
   ═══════════════════════════════════════════════════════════════════════════ */

.sentiment-hero {
    text-align: center;
    padding: 40px;
    margin-bottom: 30px;
    background: var(--st-bg-card);
    border-radius: 20px;
    border: 2px solid var(--st-border);
}

.sentiment-hero.extreme-fear {
    border-color: var(--st-red);
    box-shadow: 0 0 30px rgba(255, 71, 87, 0.2);
}

.sentiment-hero.fear {
    border-color: var(--st-orange);
    box-shadow: 0 0 30px rgba(255, 165, 2, 0.2);
}

.sentiment-hero.neutral {
    border-color: var(--st-yellow);
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.2);
}

.sentiment-hero.greed {
    border-color: var(--st-green);
    box-shadow: 0 0 30px rgba(0, 210, 106, 0.2);
}

.sentiment-hero.extreme-greed {
    border-color: var(--st-blue);
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.2);
}

.score-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.score-value {
    font-size: 4em;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.score-max {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.7);
}

.score-label {
    font-size: 1.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.sentiment-hero.extreme-fear .score-label { color: var(--st-red); }
.sentiment-hero.fear .score-label { color: var(--st-orange); }
.sentiment-hero.neutral .score-label { color: var(--st-yellow); }
.sentiment-hero.greed .score-label { color: var(--st-green); }
.sentiment-hero.extreme-greed .score-label { color: var(--st-blue); }

.btc-price {
    font-size: 1.4em;
    color: var(--st-text-secondary);
}

.btc-icon {
    color: #f7931a;
    margin-right: 5px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RÉSUMÉ IA
   ═══════════════════════════════════════════════════════════════════════════ */

.ai-summary-section {
    background: linear-gradient(135deg, var(--st-bg-card) 0%, var(--st-bg-secondary) 100%);
    border: 2px solid var(--st-accent);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.ai-summary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--st-accent), #ff6b9d, var(--st-accent));
}

.ai-summary-section h3 {
    margin: 0 0 20px 0;
    font-size: 1.4em;
    color: var(--st-accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-summary-content {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--st-text-primary);
}

.ai-summary-content strong {
    color: var(--st-accent);
}

.ai-summary-content p {
    margin: 0 0 15px 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SOURCES
   ═══════════════════════════════════════════════════════════════════════════ */

.sentiment-sources {
    margin-bottom: 30px;
}

.sentiment-sources h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--st-border);
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.source-card {
    background: var(--st-bg-card);
    border: 1px solid var(--st-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.source-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.source-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.source-name {
    font-size: 0.9em;
    color: var(--st-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.source-score {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 5px;
}

.source-score.low { color: var(--st-red); }
.source-score.medium { color: var(--st-yellow); }
.source-score.high { color: var(--st-green); }

.source-label {
    font-size: 0.85em;
    color: var(--st-text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   GRAPHIQUE
   ═══════════════════════════════════════════════════════════════════════════ */

.sentiment-chart-section {
    background: var(--st-bg-card);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.sentiment-chart-section h3 {
    margin: 0 0 20px 0;
    font-size: 1.2em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.sentiment-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--st-border);
    text-align: center;
    font-size: 0.85em;
    color: var(--st-text-secondary);
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .skulltrading-sentiment-container {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .sentiment-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .score-circle {
        width: 140px;
        height: 140px;
    }
    
    .score-value {
        font-size: 3em;
    }
    
    .score-label {
        font-size: 1.4em;
    }
    
    .ai-summary-section {
        padding: 20px;
    }
    
    .ai-summary-content {
        font-size: 1em;
    }
    
    .sources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes pulse-score {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.score-circle {
    animation: pulse-score 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(233, 69, 96, 0.3); }
    50% { box-shadow: 0 0 40px rgba(233, 69, 96, 0.5); }
}

.ai-summary-section {
    animation: glow 4s ease-in-out infinite;
}
