/* assets/css/task.css - V8.1 */
body {
    background-color: #FFF0F5;
    background-image: linear-gradient(180deg, #FFF 0%, #FFF0F5 100%);
    --nav-active: #D46A86;
}
.large-title { color: #D46A86; }
.btn-primary { background: #D46A86; }
.tag.active { background: #D46A86; color: #fff; box-shadow: 0 2px 6px rgba(212,106,134,0.3); }

/* 老虎机 - 柔和化 */
.tiger-machine { width: 280px; margin: 20px auto; position: relative; perspective: 800px; }

.tiger-head { 
    background: #FFC0CB; border-radius: 30px; padding: 20px; z-index: 2; position: relative; 
    /* 替换黑色边框为柔和阴影 */
    box-shadow: 0 10px 20px rgba(212,106,134,0.3), inset 0 -5px 0 rgba(0,0,0,0.1);
    border: 4px solid #FFF;
}

.tiger-ears { display: flex; justify-content: space-between; padding: 0 20px; margin-bottom: -20px; }
.ear { 
    width: 40px; height: 40px; background: #FFC0CB; border-radius: 50% 50% 0 0; 
    border: 4px solid #FFF; border-bottom: none;
}

.tiger-screen { 
    background: #FFF; border-radius: 15px; height: 140px; overflow: hidden; position: relative; 
    border: 4px solid #D46A86; /* 改为深粉色边框 */
}

.tiger-reel { list-style: none; padding: 0; margin: 0; transform: translateY(0); }
.t-item { 
    height: 140px; display: flex; flex-direction: column; align-items: center; justify-content: center; 
    border-bottom: 1px dashed #eee; box-sizing: border-box; 
    /* 强制居中 */
    text-align: center; width: 100%;
}
.t-title { font-size: 20px; font-weight: 900; color: #D46A86; }
.t-desc { font-size: 12px; color: #999; margin-top: 5px; }

.tiger-btn { 
    margin-top: 20px; width: 100%; background: #FF5E86; color: white; 
    padding: 14px; border-radius: 30px; font-size: 18px; font-weight: 800; 
    cursor: pointer; transition: transform 0.1s; position:relative; z-index:20;
    border: none; box-shadow: 0 6px 20px rgba(255, 94, 134, 0.4);
}
.tiger-btn:active { transform: translateY(2px); box-shadow: 0 3px 10px rgba(255, 94, 134, 0.4); }

.blur-motion { filter: blur(3px); opacity: 0.7; }
.tiger-face { display: flex; justify-content: space-between; margin-top: 15px; padding: 0 10px; }
.cheek { width: 30px; height: 30px; background: rgba(255,255,255,0.6); border-radius: 50%; }