/* Versioned CSS file with content hash for cache testing */
:root {
    --test-color: #9b59b6;
    --cache-version: 'a1b2c3';
}

.versioned-style {
    color: var(--test-color);
    font-weight: bold;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 4px;
}

.versioned-style::after {
    content: ' (v' var(--cache-version) ')';
    font-size: 0.8em;
    opacity: 0.7;
}

/* This file demonstrates cache busting with content hashes */