#metrics-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.metrics-card {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
}

.metric {
    margin: 0;
    position: relative;
}

.metric-label {
    display: block;
    color: #8E8E93;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.progress-bar {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    height: 6px;
    overflow: hidden;
    margin-top: 8px;
}

.progress {
    border-radius: 20px;
    height: 100%;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress {
    background: linear-gradient(90deg, #34C759, #30D158);
}

.progress-blue {
    background: linear-gradient(90deg, #007AFF, #0A84FF);
}

/* Add subtle hover effects */
.metric {
    transition: transform 0.2s ease;
}

.metric:hover {
    transform: translateY(-2px);
}

/* Add separator lines between metrics */
.metric:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
} 