# HTML pages - always revalidate
/index.html
  Cache-Control: no-cache
/games/*/index.html
  Cache-Control: no-cache
/downloads/index.html
  Cache-Control: no-cache

# JS and CSS - always revalidate (code changes frequently)
/games/*/js/*.js
  Cache-Control: no-cache
/games/*/js/**/*.js
  Cache-Control: no-cache
/games/*/css/*.css
  Cache-Control: no-cache
/css/*.css
  Cache-Control: no-cache

# Fonts - immutable, cache forever
/games/*/fonts/*
  Cache-Control: public, max-age=31536000, immutable

# Images - cache 1 week
/games/*/*.webp
  Cache-Control: public, max-age=604800
/games/*/icons/*
  Cache-Control: public, max-age=604800
