/* orbitron-mixed.css - 英文用Orbitron，中文用微软雅黑 */
@font-face {
    font-family: 'Orbitron';
    src: url('orbitron-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* 混合字体设置：英文用 Orbitron，中文用微软雅黑 */
* {
    font-family: 'Orbitron', 'Microsoft YaHei', '微软雅黑', sans-serif !important;
}

/* 强制英文使用 Orbitron，中文使用微软雅黑 */
body {
    font-family: 'Orbitron', 'Microsoft YaHei', '微软雅黑', sans-serif !important;
}

/* 确保所有文本元素都使用混合字体 */
h1, h2, h3, h4, h5, h6, p, span, div, button, td, th, input, textarea, select {
    font-family: 'Orbitron', 'Microsoft YaHei', '微软雅黑', sans-serif !important;
}

/* 特定元素的字体粗细调整 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

button, .tab-button, .copy-btn, .connect-btn {
    font-weight: 600;
}

/* 覆盖 Tailwind 的字体设置 */
.font-steam {
    font-family: 'Orbitron', 'Microsoft YaHei', '微软雅黑', sans-serif !important;
}