.track-record-stats {
    padding: 3rem 2rem;
    background: rgba(30, 31, 34, 0.5);
    border-radius: 8px;
    margin: 2rem 0;
}

.track-record-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.track-record-stat {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(30, 31, 34, 0.8);
    border: 2px solid rgba(188, 163, 59, 0.3);
    border-radius: 8px;
}

.track-record-number {
    font-size: 4rem;
    font-weight: bold;
    color: rgba(188, 163, 59, 1);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.05s ease;
}

.track-record-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.track-record-sublabel {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 0.25rem;
}

.track-record-split {
    padding: 2rem;
    background: rgba(30, 31, 34, 0.6);
    border-radius: 8px;
}

.track-record-split h3 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
}

.track-record-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.track-record-bar-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track-record-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.track-record-bar-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: rgba(188, 163, 59, 1);
}

.track-record-bar-track {
    width: 100%;
    height: 28px;
    background: rgba(30, 31, 34, 0.9);
    border: 1px solid rgba(188, 163, 59, 0.3);
    border-radius: 6px;
    overflow: hidden;
}

.track-record-bar-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,
        rgba(188, 163, 59, 0.5) 0%,
        rgba(188, 163, 59, 0.8) 100%);
    animation: trackRecordFillBar 2s ease-out forwards;
    animation-delay: 0.6s;
}

.track-record-bar-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .track-record-stats {
        padding: 2rem 1rem;
    }

    .track-record-numbers {
        grid-template-columns: 1fr;
    }

    .track-record-number {
        font-size: 3rem;
    }

    .track-record-bar-header {
        font-size: 1rem;
    }

    .track-record-bar-value {
        font-size: 1.5rem;
    }
}

/* Keep animations on CPU, not GPU */
.track-record-number,
.track-record-bar-progress,
.track-record-stat,
.track-record-bar-item {
    will-change: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
}

@keyframes trackRecordFillBar {
    to {
        width: var(--progress);
    }
}
