/* =========================================================
   1. 全局字体引入
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Klee+One:wght@600&display=swap');

/* =========================================================
   2. 顶部标题 & Logo 定制
   ========================================================= */
.site-name { display: none !important; }
.nav-site-title::after {
    content: 'LWOUL2' !important;
    display: inline-block !important;
    vertical-align: middle !important;
    font-weight: bold !important;
    font-size: 1.3rem !important;
    color: white !important;
    margin-left: 8px !important;
    font-family: 'Klee One', cursive !important;
}

#site-title {
    font-family: 'Klee One', cursive !important;
    font-weight: bold !important;
    font-size: 3.5rem !important;
    letter-spacing: 5px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
}

/* =========================================================
   3. 公告栏优化 (小鱼 + 猫猫颜文字)
   ========================================================= */
.card-announcement .item-headline span { font-size: 0 !important; }
.card-announcement .item-headline span::before {
    content: " ฅ(º﹃ºฅ)  ﾉｼ" !important; 
    font-size: 1.1rem !important;
    visibility: visible !important;
}
.card-announcement .item-headline i::before {
    content: "\f578" !important; 
    color: #4ea1db !important;
    margin-right: 5px !important;
}
.card-announcement .announcement_content {
    font-size: 0.85rem !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.6 !important;
    padding: 10px 5px !important;
}

/* =========================================================
   4. 画廊/动画展示墙 (my-grid)
   ========================================================= */
.my-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 30px !important;
}
.art-item {
    display: block !important;
    width: 100% !important;
}
.art-item img {
    width: 100% !important;
    height: auto !important;
    border-radius: 5px !important;
    cursor: default !important;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
.art-item:hover img {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2) !important;
}
.art-info {
    display: block !important;
    margin-top: 15px !important;
    text-align: center !important;
}
.art-info h4 {
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
    color: #999 !important;
    text-transform: uppercase !important;
    margin: 0 !important;
}

/* =========================================================
   5. 看板娘 (Waifu) 互动版
   ========================================================= */
.waifu {
    position: fixed;
    bottom: -100px;
    left: 20px;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); 
}
.waifu.waifu-show {
    bottom: -5px;
    opacity: 1;
    visibility: visible;
}
.waifu img {
    width: 55px !important;
    height: auto !important;
    transition: all 0.3s ease;
}
.waifu:hover img { transform: translateY(-8px); }

/* 漫画气泡 */
.manga-bubble {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transform-origin: bottom center;
    opacity: 0;
    background: #ffffff;
    color: #222;
    font-weight: 900;
    padding: 6px 14px;
    border: 2px solid #222;
    border-radius: 12px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 3;
    box-shadow: 2px 2px 0px rgba(0,0,0,0.5);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 
}
.manga-bubble::after, .manga-bubble::before { content: ''; position: absolute; }
.manga-bubble::after { bottom: -8px; left: 50%; transform: translateX(-50%); border-width: 8px 7px 0; border-style: solid; border-color: #222 transparent transparent transparent; }
.waifu:hover .manga-bubble { opacity: 0.85 !important; transform: translateX(-50%) scale(1) translateY(-15px); }

@media screen and (max-width: 768px) { .waifu { display: none !important; } }