/* Cubic-11 像素字体 (俐方體11號) */
@font-face {
  font-family: 'Cubic11';
  src: url('./Cubic_11.woff2') format('woff2'),
       url('./Cubic_11.woff') format('woff'),
       url('./Cubic_11.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* 定义像素渲染特性 */
.font-pixel {
  /* 设置字体平滑特性以增强像素效果 */
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  
  /* 确保字体保持像素清晰 */
  text-rendering: optimizeSpeed;
  
  /* 设置字母间距以改善像素风格字体的可读性 */
  letter-spacing: 0.05em;
} 