.font-racing {
    font-family: 'Racing Sans One', cursive;
}

.track-gradient {
    background: linear-gradient(180deg, #374151 0%, #111827 100%);
}

.kerb-stripes {
    background-image: repeating-linear-gradient(90deg, #ef4444 0px, #ef4444 20px, #ffffff 20px, #ffffff 40px);
    height: 20px;
}

/* High-quality claymation background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('clay_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}