/* 羞羞漫画 - 温馨治愈的纯真漫画世界样式 */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Liu+Jian+Mao+Cao&display=swap');

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comfortaa', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
    font-size: 16px;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 心形粒子动画 */
.heart-particle {
    position: absolute;
    font-size: 1.5rem;
    animation: heartFloat 6s ease-in-out infinite;
    opacity: 0.7;
}

.heart-particle:nth-child(1) {
    left: 20%;
    top: 25%;
    animation-delay: 0s;
}

.heart-particle:nth-child(2) {
    left: 70%;
    top: 35%;
    animation-delay: 2s;
}

.heart-particle:nth-child(3) {
    left: 30%;
    top: 65%;
    animation-delay: 4s;
}

@keyframes heartFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(45deg) scale(1.1);
    }
    50% {
        transform: translateY(-10px) rotate(90deg) scale(0.9);
    }
    75% {
        transform: translateY(-30px) rotate(135deg) scale(1.2);
    }
}

/* 卡片悬停效果 */
.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* 按钮特效 */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s;
}

.btn-glow:hover::before {
    left: 100%;
}

/* 输入框样式 */
.input-glow {
    transition: all 0.4s ease;
}

.input-glow:focus {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
    border-color: #ec4899;
}

/* 导航栏特效 */
.nav-blur {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* 页面过渡动画 */
.page-transition {
    animation: xiuxiuSlideIn 1s ease-out;
}

@keyframes xiuxiuSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 排行榜选项卡样式 */
.ranking-tab {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ranking-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.ranking-tab:hover::before {
    left: 100%;
}

.ranking-tab.active {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
}

/* 排行榜项目动画 */
.ranking-item {
    transition: all 0.4s ease;
    position: relative;
}

.ranking-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.ranking-item:hover::before {
    opacity: 1;
}

/* 计数器动画 */
.counter {
    display: inline-block;
}

/* 返回顶部按钮 */
#back-to-top {
    transition: all 0.4s ease;
}

#back-to-top.show {
    transform: translateY(0);
    opacity: 1;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ec4899, #db2777);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #db2777, #be185d);
}

/* 响应式设计 */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    .ranking-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .ranking-item > * {
        margin-bottom: 0.75rem;
    }
}

/* 加载动画 */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(236, 72, 153, 0.3);
    border-top: 5px solid #ec4899;
    border-radius: 50%;
    animation: xiuxiuSpin 1.2s linear infinite;
}

@keyframes xiuxiuSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 文本渐变效果 */
.text-gradient {
    background: linear-gradient(135deg, #ec4899, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 数据可视化效果 */
.data-bar {
    height: 6px;
    background: linear-gradient(90deg, #ec4899, #db2777);
    border-radius: 3px;
    animation: xiuxiuDataFlow 2.5s ease-in-out infinite;
}

@keyframes xiuxiuDataFlow {
    0%, 100% {
        transform: scaleX(0.8);
    }
    50% {
        transform: scaleX(1);
    }
}

/* 全屏加载遮罩 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .card-hover:hover {
        transform: none;
        box-shadow: none;
    }
    
    .ranking-item:hover::before {
        opacity: 0;
    }
    
    .btn-glow:hover::before {
        left: -100%;
    }
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
    .text-gradient {
        background: #000;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* 减少动画偏好支持 */
@media (prefers-reduced-motion: reduce) {
    .page-transition,
    .card-hover,
    .ranking-item,
    .ranking-tab {
        animation: none;
        transition: none;
    }
}

/* 焦点可见性 */
.focus-visible:focus {
    outline: 2px solid #ec4899;
    outline-offset: 2px;
}

/* 无障碍支持 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 打印样式 */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* 自定义动画 */
@keyframes xiuxiuFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: xiuxiuFloat 3s ease-in-out infinite;
}

/* 渐变边框效果 */
.gradient-border {
    position: relative;
    background: linear-gradient(45deg, #ec4899, #db2777);
    padding: 2px;
    border-radius: 16px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: white;
    border-radius: 14px;
    z-index: -1;
}

/* 脉冲效果 */
.pulse-effect {
    animation: xiuxiuPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes xiuxiuPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .6;
    }
}

/* 旋转效果 */
.rotate-effect {
    transition: transform 0.6s ease;
}

.rotate-effect:hover {
    transform: rotate(360deg);
}

/* 缩放效果 */
.scale-effect {
    transition: transform 0.3s ease;
}

.scale-effect:hover {
    transform: scale(1.1);
}

/* 阴影效果 */
.shadow-glow {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.shadow-glow:hover {
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.5);
}

/* 特殊边框效果 */
.border-b-3 {
    border-bottom-width: 3px;
}

.border-b-2 {
    border-bottom-width: 2px;
}

/* 自定义渐变背景 */
.bg-xiuxiu-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

/* 星空背景效果 */
.xiuxiu-starry-bg {
    background: radial-gradient(ellipse at bottom, #ec4899 0%, #db2777 100%);
    position: relative;
}

.xiuxiu-starry-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 15px 25px, #fff, transparent),
        radial-gradient(1px 1px at 35px 60px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 80px 35px, #fff, transparent),
        radial-gradient(1px 1px at 120px 70px, rgba(255,255,255,0.5), transparent);
    background-repeat: repeat;
    background-size: 150px 80px;
    animation: xiuxiuSparkle 15s linear infinite;
}

@keyframes xiuxiuSparkle {
    from { transform: translateX(0); }
    to { transform: translateX(150px); }
}

/* 霓虹灯效果 */
.neon-text {
    text-shadow: 
        0 0 3px currentColor,
        0 0 6px currentColor,
        0 0 9px currentColor,
        0 0 12px #ec4899,
        0 0 18px #ec4899,
        0 0 24px #ec4899;
}

/* 波浪动画 */
@keyframes xiuxiuWave {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.wave-animation {
    animation: xiuxiuWave 3s ease-in-out infinite;
}

/* 呼吸效果 */
@keyframes xiuxiuBreathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.breathe-animation {
    animation: xiuxiuBreathe 3.5s ease-in-out infinite;
}

/* 彩虹边框 */
.rainbow-border {
    background: linear-gradient(45deg, #ec4899, #db2777, #be185d, #fbbf24, #34d399, #60a5fa, #a78bfa);
    background-size: 300% 300%;
    animation: xiuxiuRainbow 2.5s ease infinite;
    padding: 2px;
    border-radius: 16px;
}

@keyframes xiuxiuRainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 磁性效果 */
.magnetic-effect {
    transition: all 0.25s ease;
}

.magnetic-effect:hover {
    transform: scale(1.08) rotate(3deg);
    filter: brightness(1.1);
}

/* 液体效果 */
.liquid-effect {
    border-radius: 50% 40% 30% 60% / 50% 30% 60% 40%;
    animation: xiuxiuMorph 6s ease-in-out infinite;
}

@keyframes xiuxiuMorph {
    0% { border-radius: 50% 40% 30% 60% / 50% 30% 60% 40%; }
    50% { border-radius: 30% 50% 60% 40% / 40% 50% 30% 50%; }
    100% { border-radius: 50% 40% 30% 60% / 50% 30% 60% 40%; }
}

/* 3D翻转效果 */
.flip-3d {
    perspective: 800px;
}

.flip-3d-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-3d:hover .flip-3d-inner {
    transform: rotateY(180deg);
}

/* 粒子效果背景 */
.particle-bg {
    position: relative;
    overflow: hidden;
}

.particle-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(236, 72, 153, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(219, 39, 119, 0.15) 0%, transparent 40%);
    animation: xiuxiuParticleMove 12s ease-in-out infinite;
}

@keyframes xiuxiuParticleMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(120deg); }
    66% { transform: translate(-15px, 15px) rotate(240deg); }
}

/* 玻璃态效果 */
.glass-effect {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* 渐变文字动画 */
.gradient-text-animation {
    background: linear-gradient(-45deg, #ec4899, #db2777, #be185d, #fbbf24);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: xiuxiuGradientShift 3s ease-in-out infinite;
}

@keyframes xiuxiuGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 互动效果 */
.xiuxiu-interactive {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.xiuxiu-interactive:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.2);
}

/* 背景装饰 */
.xiuxiu-decoration {
    position: relative;
}

.xiuxiu-decoration::after {
    content: '💕';
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 16px;
    opacity: 0.15;
    animation: xiuxiuFloat 3s ease-in-out infinite;
}

/* 悬浮阴影效果 */
.floating-shadow {
    box-shadow: 
        0 8px 25px rgba(236, 72, 153, 0.25),
        0 15px 50px rgba(219, 39, 119, 0.15);
    transition: all 0.3s ease;
}

.floating-shadow:hover {
    box-shadow: 
        0 15px 35px rgba(236, 72, 153, 0.35),
        0 25px 70px rgba(219, 39, 119, 0.25);
    transform: translateY(-4px);
}

/* 打字机效果 */
.typewriter {
    overflow: hidden;
    border-right: 2px solid #ec4899;
    white-space: nowrap;
    animation: xiuxiuTyping 2.5s steps(30, end), xiuxiuBlinkCaret 0.6s step-end infinite;
}

@keyframes xiuxiuTyping {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes xiuxiuBlinkCaret {
    from, to { border-color: transparent; }
    50% { border-color: #ec4899; }
}

/* 能量波效果 */
.energy-wave {
    position: relative;
    overflow: hidden;
}

.energy-wave::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3), transparent);
    animation: xiuxiuEnergyWave 1.8s infinite;
}

@keyframes xiuxiuEnergyWave {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 多层阴影效果 */
.multi-shadow {
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.1),
        0 1px 1px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(236, 72, 153, 0.08),
        0 16px 32px rgba(219, 39, 119, 0.08);
}

/* 弹性动画 */
.bounce-in {
    animation: xiuxiuBounceIn 0.8s ease-out;
}

@keyframes xiuxiuBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 滑入效果 */
.slide-in-left {
    animation: xiuxiuSlideInLeft 0.8s ease-out;
}

@keyframes xiuxiuSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: xiuxiuSlideInRight 0.8s ease-out;
}

@keyframes xiuxiuSlideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 淡入效果 */
.fade-in {
    animation: xiuxiuFadeIn 1.2s ease-out;
}

@keyframes xiuxiuFadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 缩放淡入效果 */
.scale-fade-in {
    animation: xiuxiuScaleFadeIn 0.8s ease-out;
}

@keyframes xiuxiuScaleFadeIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 圆角样式 */
.rounded-2xl {
    border-radius: 1rem;
}

/* 阴影样式 */
.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* 边框样式 */
.border {
    border-width: 1px;
}

/* 容器样式 */
.max-w-7xl {
    max-width: 1280px;
}

/* 特殊动画效果 */
.xiuxiu-special-effect {
    position: relative;
    overflow: hidden;
}

.xiuxiu-special-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(236, 72, 153, 0.15), transparent);
    animation: xiuxiuRotate 4s linear infinite;
}

@keyframes xiuxiuRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 文字效果 */
.xiuxiu-text-effect {
    background: linear-gradient(45deg, #ec4899, #db2777, #be185d, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: xiuxiuTextShimmer 2s ease-in-out infinite;
}

@keyframes xiuxiuTextShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
}

/* 心跳效果 */
.heartbeat-animation {
    animation: xiuxiuHeartbeat 1.5s ease-in-out infinite;
}

@keyframes xiuxiuHeartbeat {
    0%, 100% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.1);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1);
    }
}

/* 温馨光晕效果 */
.warm-glow {
    position: relative;
}

.warm-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ec4899, #db2777, #be185d);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.warm-glow:hover::before {
    opacity: 0.3;
}

/* 柔和过渡 */
.soft-transition {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 温馨色彩动画 */
.warm-color-shift {
    animation: xiuxiuWarmColorShift 4s ease-in-out infinite;
}

@keyframes xiuxiuWarmColorShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(15deg); }
}

/* 纯真边框动画 */
.innocent-border {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #ec4899, #db2777) border-box;
    animation: xiuxiuInnocentBorder 3s ease-in-out infinite;
}

@keyframes xiuxiuInnocentBorder {
    0%, 100% { 
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(45deg, #ec4899, #db2777) border-box;
    }
    50% { 
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(45deg, #db2777, #be185d) border-box;
    }
}

/* 治愈系动画 */
.healing-animation {
    animation: xiuxiuHealing 5s ease-in-out infinite;
}

@keyframes xiuxiuHealing {
    0%, 100% {
        transform: translateY(0px) scale(1);
        filter: brightness(1);
    }
    25% {
        transform: translateY(-5px) scale(1.02);
        filter: brightness(1.05);
    }
    50% {
        transform: translateY(0px) scale(1);
        filter: brightness(1);
    }
    75% {
        transform: translateY(-3px) scale(1.01);
        filter: brightness(1.03);
    }
}

/* 温馨渐变背景 */
.warm-gradient-bg {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.1) 0%, 
        rgba(219, 39, 119, 0.1) 50%, 
        rgba(190, 24, 93, 0.1) 100%);
}

/* 纯真光效 */
.innocent-glow {
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.05),
        0 0 20px rgba(236, 72, 153, 0.1);
}

/* 青春活力动画 */
.youthful-energy {
    animation: xiuxiuYouthfulEnergy 2s ease-in-out infinite alternate;
}

@keyframes xiuxiuYouthfulEnergy {
    from {
        transform: translateY(0px);
        box-shadow: 0 5px 15px rgba(236, 72, 153, 0.2);
    }
    to {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
    }
}

/* 温馨提示框 */
.warm-tooltip {
    position: relative;
}

.warm-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(236, 72, 153, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.warm-tooltip:hover::after {
    opacity: 1;
}

/* 纯真卡片效果 */
.innocent-card {
    background: linear-gradient(145deg, #ffffff 0%, #fef7f7 100%);
    border: 1px solid rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
}

.innocent-card:hover {
    background: linear-gradient(145deg, #fef7f7 0%, #fdeaea 100%);
    border-color: rgba(236, 72, 153, 0.2);
    transform: translateY(-2px);
}

/* 治愈系按钮 */
.healing-button {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.healing-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.healing-button:hover::before {
    left: 100%;
}

.healing-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}

/* 温馨标签 */
.warm-tag {
    background: rgba(236, 72, 153, 0.1);
    color: #be185d;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

/* 纯真图标动画 */
.innocent-icon {
    animation: xiuxiuInnocentIcon 3s ease-in-out infinite;
}

@keyframes xiuxiuInnocentIcon {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(5deg) scale(1.05);
    }
    50% {
        transform: rotate(0deg) scale(1);
    }
    75% {
        transform: rotate(-5deg) scale(1.05);
    }
}

/* 温馨渐变文字 */
.warm-gradient-text {
    background: linear-gradient(45deg, #ec4899, #f472b6, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 治愈系卡片边框 */
.healing-card-border {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #ec4899, #db2777, #be185d) border-box;
    border-radius: 16px;
}

/* 青春活力指示器 */
.youth-indicator {
    width: 4px;
    height: 20px;
    background: linear-gradient(to top, #ec4899, #f472b6);
    border-radius: 2px;
    animation: xiuxiuYouthIndicator 2s ease-in-out infinite;
}

@keyframes xiuxiuYouthIndicator {
    0%, 100% { height: 20px; }
    50% { height: 30px; }
}

/* 纯真星光效果 */
.innocent-starlight {
    position: relative;
}

.innocent-starlight::before {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 14px;
    animation: xiuxiuStarlight 2s ease-in-out infinite;
}

@keyframes xiuxiuStarlight {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* 温馨波纹效果 */
.warm-ripple {
    position: relative;
    overflow: hidden;
}

.warm-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.warm-ripple:hover::after {
    width: 300px;
    height: 300px;
}