/* 【新】市场情绪呼吸灯 */
div#mod_sentiment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 8vh;
    border-top: 0.092vh solid rgba(var(--color_r), var(--color_g), var(--color_b), 0.3);
}

div#mod_sentiment h1 {
    margin: 0;
    font-size: 3vh;
    font-weight: normal;
    letter-spacing: 0.6vh;
    animation: sentiment_breathe 2s ease-in-out infinite;
}

div#mod_sentiment h2 {
    margin: 0.4vh 0 0;
    font-size: 0.95vh;
    font-weight: normal;
    font-family: var(--font_main_light);
    letter-spacing: 0.15em;
    opacity: 0.5;
}

div#mod_sentiment h1.normal {
    color: rgb(var(--color_r), var(--color_g), var(--color_b));
    text-shadow: 0 0 1.5vh rgba(var(--color_r), var(--color_g), var(--color_b), 0.8);
}
div#mod_sentiment h1.ebb {
    color: var(--color_up);
    text-shadow: 0 0 1.5vh var(--color_up);
}
div#mod_sentiment h1.chaos {
    color: #ffc107;
    text-shadow: 0 0 1.5vh #ffc107;
}

@keyframes sentiment_breathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
