/* Custom Glows and Specific Styles */

/* 100% Win Glow Effect */
.glow-gold {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.04) inset;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.02), rgba(251, 191, 36, 0));
}

/* Progress Bar Segments */
.progress-segment {
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    flex: 1;
    position: relative;
    transition: background-color 0.3s ease;
}

.progress-segment.filled-green {
    background: #34d399;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.4);
}

.progress-segment.filled-gold {
    background: #fbbf24;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

/* Progress Labels */
.progress-container {
    display: flex;
    gap: 4px;
    width: 100%;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #52525b;
    margin-top: 4px;
    font-family: 'Space Mono', monospace;
}
