/* OBS Overlay — Transparent info bar at bottom */

.obs-overlay {
    width: 1920px;
    height: 1080px;
    position: relative;
    overflow: hidden;
    background: transparent;
    font-family: 'Inter', sans-serif;
    color: #e0e0e0;
}

/* Bottom info bar */
.overlay-bar {
    position: absolute;
    bottom: 20px;
    left: 40px;
    right: 40px;
    height: 70px;
    background: rgba(8, 0, 20, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 0;
    box-shadow:
        0 0 20px rgba(0, 212, 255, 0.08),
        0 0 40px rgba(255, 45, 123, 0.04),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    animation: overlayBarAppear 0.6s ease-out;
}

@keyframes overlayBarAppear {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Bar section */
.overlay-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    height: 100%;
    animation: overlaySectionFade 0.5s ease-out both;
}

.overlay-section:not(:last-child) {
    border-right: 1px solid rgba(0, 212, 255, 0.12);
}

.overlay-section:nth-child(1) { animation-delay: 0.1s; }
.overlay-section:nth-child(2) { animation-delay: 0.2s; }
.overlay-section:nth-child(3) { animation-delay: 0.3s; }
.overlay-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes overlaySectionFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Video section — takes more space */
.overlay-section.video-section {
    flex: 1;
    min-width: 0;
}

/* Icon in section */
.overlay-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.overlay-icon.cyan {
    color: #00d4ff;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.5));
}

.overlay-icon.pink {
    color: #ff2d7b;
    filter: drop-shadow(0 0 6px rgba(255, 45, 123, 0.5));
}

.overlay-icon.gold {
    color: #ffd700;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
}

/* Section text */
.overlay-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
}

.overlay-value {
    font-size: 15px;
    font-weight: 600;
    color: #e0e0e0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.overlay-value .highlight-cyan {
    color: #00d4ff;
    text-shadow: 0 0 6px rgba(0, 212, 255, 0.3);
}

.overlay-value .highlight-pink {
    color: #ff2d7b;
    text-shadow: 0 0 6px rgba(255, 45, 123, 0.3);
}

.overlay-value .highlight-gold {
    color: #ffd700;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.3);
}

/* Section text column */
.overlay-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

/* Stat badge */
.overlay-stat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

/* Empty bar state */
.overlay-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #444;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Fade transition for content changes */
.overlay-fade-enter {
    animation: overlayFadeIn 0.3s ease-out;
}

@keyframes overlayFadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
