/* --- CSS 变量定义 --- */
        :root {
            --primary: #ffb7c5; /* 樱花粉 */
            --primary-dark: #ff9eb0;
            --bg-color: #fcfcfc;
            --card-bg: #ffffff;
            --text-main: #555555;
            --text-light: #999999;
            --shadow: 0 10px 30px -10px rgba(255, 183, 197, 0.3);
            --radius: 16px;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        /* --- 全局样式 --- */
        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'M PLUS Rounded 1c', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        a:hover { color: var(--primary); }

        /* 自定义滚动条 */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #fff; }
        ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

        /* --- 布局容器 --- */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: 3fr 1fr; /* 左侧内容，右侧侧边栏 */
            gap: 40px;
        }

        /* --- 头部 --- */
        header {
            text-align: center;
            padding: 60px 0;
            position: relative;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-main);
            position: relative;
            display: inline-block;
        }

        .logo::after {
            content: '🌸';
            position: absolute;
            top: -10px;
            right: -20px;
            font-size: 1.5rem;
            animation: float 3s ease-in-out infinite;
        }

        nav ul {
            display: flex;
            justify-content: center;
            gap: 30px;
            list-style: none;
            margin-top: 20px;
        }

        nav li a {
            font-weight: 700;
            position: relative;
        }

        nav li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: var(--transition);
            border-radius: 2px;
        }

        nav li a:hover::after { width: 100%; }

        /* --- 主内容区 (左侧) --- */
        .post-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            margin-bottom: 30px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .post-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--primary);
        }

        .post-image {
            width: 100%;
            height: 240px;
            background-color: #eee;
            object-fit: cover;
            position: relative;
        }

        /* 图片占位符 */
        .post-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #ffdde1, #ee9ca7);
            color: white;
            font-size: 3rem;
        }

        .post-content { padding: 25px; }

        .post-meta {
            font-size: 0.85rem;
            color: var(--primary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .post-title { font-size: 1.5rem; margin-bottom: 15px; }
        .post-excerpt { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }

        .read-more-btn {
            display: inline-block;
            padding: 8px 20px;
            background: var(--bg-color);
            color: var(--text-main);
            border: 1px solid #eee;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .read-more-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        /* --- 侧边栏 (右侧) --- */
        .widget {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }

        .widget-title {
            font-size: 1.1rem;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary);
            padding-left: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* 1. 个人资料卡片 */
        .profile-widget { text-align: center; }
        .avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 auto 15px;
            border: 4px solid #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .avatar img { width: 100%; height: 100%; object-fit: cover; }
        .social-links { margin-top: 15px; display: flex; justify-content: center; gap: 15px; }
        .social-links i { color: var(--text-light); transition: var(--transition); cursor: pointer; }
        .social-links i:hover { color: var(--primary); transform: scale(1.2); }

        /* 2. 迷你音乐播放器 (核心创意) */
        .music-player {
            position: relative;
            background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
        }

        .disk-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .disk {
            width: 60px;
            height: 60px;
            background: #333;
            border-radius: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: rotate 5s linear infinite;
            animation-play-state: paused;
        }

        .disk::after { content: ''; width: 15px; height: 15px; background: #fff; border-radius: 50%; position: absolute; }
        .disk.playing { animation-play-state: running; }

        .music-info h4 { font-size: 0.9rem; margin-bottom: 5px; }
        .music-info p { font-size: 0.75rem; color: var(--text-light); }

        .controls { margin-top: 15px; display: flex; justify-content: space-around; align-items: center; }
        .play-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(255, 183, 197, 0.5);
            transition: var(--transition);
        }
        .play-btn:hover { transform: scale(1.1); background: var(--primary-dark); }

        /* 3. 番剧更新表 (Tag样式) */
        .anime-tags { display: flex; flex-wrap: wrap; gap: 8px; }
        .anime-tag {
            font-size: 0.8rem;
            padding: 4px 12px;
            border-radius: 12px;
            background: #f0f0f0;
            color: #666;
            transition: var(--transition);
        }
        .anime-tag:hover { background: var(--primary); color: white; cursor: pointer; }

        /* --- 固定组件 (看板娘 & 返回顶部) --- */
        .mascot-placeholder {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 100px;
            height: 120px;
            pointer-events: none; /* 让鼠标穿透 */
            z-index: 100;
        }
        /* 简单的CSS动画模拟看板娘呼吸 */
        .mascot-body {
            font-size: 4rem;
            position: absolute;
            bottom: 0;
            animation: bounce 3s infinite ease-in-out;
            pointer-events: auto;
            cursor: grab;
        }
        .mascot-dialog {
            background: #fff;
            padding: 8px 12px;
            border-radius: 10px;
            position: absolute;
            top: 0;
            left: 50px;
            font-size: 0.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            opacity: 0;
            transition: opacity 0.3s;
            white-space: nowrap;
        }
        .mascot-body:hover + .mascot-dialog { opacity: 1; }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
            z-index: 99;
            color: var(--primary);
        }
        .back-to-top.visible { opacity: 1; transform: translateY(0); }
        .back-to-top:hover { background: var(--primary); color: #fff; }

        /* --- 动画关键帧 --- */
        @keyframes rotate { 100% { transform: rotate(360deg); } }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
        @keyframes bounce { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(1.05) translateY(-2px); } }

        /* --- 响应式 --- */
        @media (max-width: 768px) {
            .container { grid-template-columns: 1fr; }
            header { padding: 40px 0; }
            .mascot-placeholder { display: none; } /* 移动端隐藏看板娘防止遮挡 */
        }