Media Queries
@media screen and (max-width: 768px) { body { font-size: 14px; } }
CSS Variables
:root { --primary-color: #007bff; } button { background: var(--primary-color); }