/* WIN STREAK CARD - GLOWING PULSE EFFECT */

.card-win-streak {
    position: relative;
    z-index: 1;
}

/* FIRE GLOW (5+ game streak) */
.flames-active {
    opacity: 1 !important;
}

/* Pulse glow via pseudo-element so it doesn't override card animation */
.flames-active::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    z-index: -1;
    animation: fire-pulse 2s infinite;
    pointer-events: none;
}

@keyframes fire-pulse {
    0%, 49% {
        box-shadow: none;
    }
    50%, 100% {
        box-shadow: 
            0 0 30px #ff4500,
            0 0 60px #ff6a00,
            0 0 90px rgba(255, 106, 0, 0.7),
            0 0 120px rgba(255, 69, 0, 0.5);
    }
}

.flames-active .value {
    color: #ff4500 !important;
    font-weight: 900;
}

/* WINS BY SEASON CHART CARD */
.card-chart {
    grid-column: span 2;
    min-height: 280px;
    padding: 1.5rem;
}

.card-chart .title {
    margin-bottom: 1rem;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 200px;
}

@media (max-width: 600px) {
    .card-chart { grid-column: span 1; min-height: 240px; }
    .chart-container { height: 160px; }
}
