/* 1. 常规体（400）- 基础通用 */
@font-face {
    font-family: 'Orbitron'; /* 字体名称，调用时用这个 */
    font-style: normal;      /* 无斜体（Orbitron无斜体版本） */
    font-weight: 400;        /* 对应Regular */
    src: url('./static/Orbitron-Regular.ttf') format('truetype'); /* 本地字体路径 */
    font-display: swap;      /* 避免字体加载时页面闪烁/偏移 */
}

/* 2. 中等粗体（500）- Medium */
@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 500;
    src: url('./static/Orbitron-Medium.ttf') format('truetype');
    font-display: swap;
}

/* 3. 半粗体（600）- SemiBold */
@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 600;
    src: url('./static/Orbitron-SemiBold.ttf') format('truetype');
    font-display: swap;
}

/* 4. 粗体（700）- Bold */
@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 700;
    src: url('./static/Orbitron-Bold.ttf') format('truetype');
    font-display: swap;
}

/*!* 5. 特粗体（800）- ExtraBold *!*/
/*@font-face {*/
/*    font-family: 'Orbitron';*/
/*    font-style: normal;*/
/*    font-weight: 800;*/
/*    src: url('./static/Orbitron-ExtraBold.ttf') format('truetype');*/
/*    font-display: swap;*/
/*}*/

/*!* 6. 黑体（900）- Black *!*/
/*@font-face {*/
/*    font-family: 'Orbitron';*/
/*    font-style: normal;*/
/*    font-weight: 900;*/
/*    src: url('./static/Orbitron-Black.ttf') format('truetype');*/
/*    font-display: swap;*/
/*}*/
