/* 图片轮播和图片容器样式 */
.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 250px;
    margin: 0 auto;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
}

.dark .image-container {
    background-color: #1f2937;
}

.contained-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 提示词卡片样式 */
.prompt-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    border-left: 3px solid rgba(124, 58, 237, 0.5);
}

.copy-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: rgba(124, 58, 237, 0.2);
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.copy-button:hover {
    background-color: rgba(124, 58, 237, 0.4);
}

/* 场景标题样式 */
.scene-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #7c3aed, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 场景容器样式 */
.scene-container {
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    background: linear-gradient(to bottom right, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.2));
    border: 1px solid rgba(124, 58, 237, 0.1);
}

/* 任务清单样式 */
.checkbox-custom {
    position: relative;
}

.checkbox-custom i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
}

/* 任务完成动画效果 */
.peer:checked + .checkbox-custom {
    border-color: transparent;
    animation: checkmark 0.3s ease-in-out;
}

@keyframes checkmark {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* 任务项悬停效果 */
.task-item {
    transition: transform 0.2s, box-shadow 0.2s;
}

.task-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 56, 202, 0.15);
} 