/* 1. 设置高级底色：淡雅樱花粉渐变 */
body {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe4e8 100%) !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #855d67 !important; /* 灰粉色文字，比纯黑高级 */
}

/* 2. 容器：毛玻璃质感（银行APP常用透明层） */
#main, .container, .post {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px); /* 模糊背景 */
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px !important;
    border: 1px solid rgba(255, 182, 193, 0.4) !important;
    padding: 40px !important;
    margin-top: 30px !important;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.2) !important;
}

/* 3. 标题调优 */
h1, h2, h3, .post-title {
    color: #d63384 !important;
    font-weight: 300 !important; /* 细体更优雅 */
    letter-spacing: 1px;
}

/* 4. 隐藏多余的杂乱边框 */
#header, #footer {
    background: transparent !important;
    border: none !important;
}

/* 5. 棒棒糖鼠标优化（确保大小合适） */
html, body {
    cursor: url('https://cdn-icons-png.flaticon.com/512/869/869840.png') 16 16, auto !important;
}

/* Telegram 悬浮球样式 */
    .tg-float {
        position: fixed;
        bottom: 40px;
        right: 40px;
        width: 60px;
        height: 60px;
        background: #fff;
        border: 2px solid #ff85a1; /* 统一樱花粉边框 */
        border-radius: 50px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(255, 133, 161, 0.3);
        z-index: 9999;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none !important;
    }

    .tg-float:hover {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 6px 20px rgba(255, 133, 161, 0.5);
        background: #fff0f3;
    }

    .tg-icon {
        width: 35px;
        height: 35px;
    }

    /* 适配移动端 */
    @media screen and (max-width: 767px) {
        .tg-float {
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
        }
    }