/* ========== 删除确认弹窗样式 (所有类以 story-del- 为前缀) ========== */

/* 遮罩层 */
.story-del-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* 弹窗容器 */
.story-del-container {
    width: 90%;
    max-width: 400px;
    background: rgba(28, 28, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 0.5px rgba(255, 255, 255, 0.08);
    padding: 36px 28px 28px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.story-del-overlay.show .story-del-container {
    transform: scale(1);
}

/* 关闭按钮（右上角） */
.story-del-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    color: rgba(255, 255, 255, 0.5);
}

.story-del-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
}

.story-del-close i {
    font-size: 16px;
}

/* 图标区域 */
.story-del-icon-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.story-del-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(231, 98, 98, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.story-del-icon i {
    font-size: 28px;
    color: var(--danger-color);
}

/* 标题 */
.story-del-title {
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

/* 副标题/描述 */
.story-del-desc {
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 28px;
    letter-spacing: -0.2px;
}

.story-del-desc strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* 按钮组 */
.story-del-actions {
    display: flex;
    gap: 12px;
}

.story-del-btn {
    flex: 1;
    padding: 13px 0;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: -0.2px;
}

/* 取消按钮 */
.story-del-btn-cancel {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

.story-del-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* 删除按钮（危险） */
.story-del-btn-danger {
    background: #e76262;
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(231, 98, 98, 0.3);
}

.story-del-btn-danger:hover {
    background: #f07373;
    transform: scale(0.98);
}

/* 移动端适配 */
@media (max-width: 480px) {
    .story-del-container {
        padding: 28px 20px 24px;
        border-radius: 28px;
    }

    .story-del-title {
        font-size: 17px;
    }

    .story-del-desc {
        font-size: 14px;
    }

    .story-del-btn {
        font-size: 15px;
        padding: 12px 0;
    }

    .story-del-actions {
        gap: 10px;
    }

    .story-del-icon {
        width: 48px;
        height: 48px;
    }

    .story-del-icon i {
        font-size: 24px;
    }
}