/* Invincible Title Card Generator Fonts */

/* 主字体: Wood Block CG */
@font-face {
    font-family: "Wood Block CG";
    src: url("WoodBlockCG.otf") format("opentype"),
         url("WoodBlockCG.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* 备用字体选项 */

/* 备选1: Bangers (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

/* 备选2: Anton (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* 标题字体类 */
.invincible-title-font {
    /* 首选字体为Wood Block CG，备选为Bangers和Anton */
    font-family: "Wood Block CG", "Bangers", "Anton", sans-serif;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-weight: normal;
    font-style: normal;
    color: rgb(252, 236, 1);
    text-rendering: geometricPrecision;
    -webkit-text-stroke: 0.5px #000;
}

/* 
使用说明：
1. 将此文件保存为fonts/fonts.css
2. 在HTML头部添加：<link rel="stylesheet" href="fonts/fonts.css">
3. 在需要使用Invincible字体的元素上添加class="invincible-title-font"
4. 如果您有Wood Block CG字体，请将其放入fonts目录并命名为WoodBlockCG.ttf
5. 如果没有Wood Block CG字体，将自动使用Bangers或Anton作为备选
*/ 